Ticket #50421: patch-configure.ac.diff
File patch-configure.ac.diff, 1.0 KB (added by akkornel (A. Karl Kornel), 8 years ago) |
---|
-
configure.ac
old new AC_ARG_WITH([wallet-port], 45 45 [AC_DEFINE_UNQUOTED([WALLET_PORT], [$withval], 46 46 [Define to the default server port.])])]) 47 47 48 dnl Determine the path to the Perl binary. 49 AC_ARG_VAR([PERL], [Path to the Perl binary]) 50 AC_PATH_PROG([PERL], [perl]) 51 AS_IF([test -z "$PERL"], 52 [AC_MSG_ERROR([Could not find Perl binary (set PERL to the full path)])]) 53 AS_IF(["$PERL" -e 'require 5.008'], [:], 54 [AC_MSG_ERROR([Perl 5.8 or better is required])]) 55 48 56 dnl Probe for required libraries. 49 57 RRA_LIB_REMCTL 50 58 RRA_LIB_KRB5 … … AC_CONFIG_FILES([tests/client/basic-t], [chmod +x tests/client/basic-t]) 90 98 AC_CONFIG_FILES([tests/client/full-t], [chmod +x tests/client/full-t]) 91 99 AC_CONFIG_FILES([tests/client/prompt-t], [chmod +x tests/client/prompt-t]) 92 100 AC_CONFIG_FILES([tests/client/rekey-t], [chmod +x tests/client/rekey-t]) 101 AC_CONFIG_COMMANDS([server], [test -d server || mkdir server]) 93 102 AC_CONFIG_COMMANDS([tests/config], 94 103 [test -d tests/config || mkdir tests/config]) 95 104 AC_OUTPUT