From 00dbe99f3f1783359446ba98beea021871a53476 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Tue, 18 Sep 2018 11:02:51 -0400 Subject: Add code signing for macOS Mojave. --- configure | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'configure') diff --git a/configure b/configure index d6a39069d..ecba9c9a0 100755 --- a/configure +++ b/configure @@ -740,6 +740,7 @@ LIBPAPER LIBMALLOC PKGCONFIG INSTALLSTATIC +CODE_SIGN INSTALL CUPS_HTMLVIEW XDGOPEN @@ -4251,6 +4252,16 @@ if test "x$CC" = x; then as_fn_error $? "Unable to find required C compiler command." "$LINENO" 5 fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for codesign utility" >&5 +$as_echo_n "checking for codesign utility... " >&6; } +CODE_SIGN="/usr/bin/true" + +if test $uname = Darwin; then + CODE_SIGN="/usr/bin/codesign" +fi +{ $as_echo "$as_me:${as_lineno-$LINENO}: result: using $CODE_SIGN" >&5 +$as_echo "using $CODE_SIGN" >&6; } + INSTALLSTATIC="" # Check whether --enable-static was given. if test "${enable_static+set}" = set; then : -- cgit v1.2.3