diff options
author | Rob Austein <sra@hactrn.net> | 2013-01-08 03:15:48 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2013-01-08 03:15:48 +0000 |
commit | c224ba7a2f2e662ec3e6d7e22a62ee0cfb3c549f (patch) | |
tree | 5367ee4f8d6c518dd3879013f1442adb473a873d /configure | |
parent | bdc8bca9fd5b2f8be2a729d3d7392c2806fbc3d7 (diff) |
Start work on separate RP and CA ports for FreeBSD.
svn path=/branches/tk377/; revision=4954
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 47 |
1 files changed, 47 insertions, 0 deletions
@@ -629,6 +629,8 @@ OPENSSL_SO_GLOB OPENSSL_CONFIG_COMMAND TOP_LEVEL_SUBDIRS PYTHON +RCYNIC_JAIL_DIRECTORY +USE_RCYNIC_JAIL TRANG RRDTOOL SORT @@ -699,6 +701,7 @@ ac_subst_files='' ac_user_opts=' enable_option_checking with_system_openssl +with_rcynic_jail enable_openssl_asm enable_ca_tools enable_rpki_rtr @@ -1337,6 +1340,7 @@ Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-system-openssl Link against system copy of OpenSSL + --with-rcynic-jail Set location of rcynic jail directory Some influential environment variables: CC C compiler command @@ -2370,6 +2374,14 @@ else with_system_openssl=auto fi + +# Check whether --with-rcynic-jail was given. +if test "${with_rcynic_jail+set}" = set; then : + withval=$with_rcynic_jail; +else + with_rcynic_jail=auto +fi + # Check whether --enable-openssl_asm was given. if test "${enable_openssl_asm+set}" = set; then : enableval=$enable_openssl_asm; @@ -4240,6 +4252,41 @@ case $enable_openssl_asm in ;; esac +# Figure out where to put rcynic jail. In the long run I suspect we +# will want to use autoconf file substitution here to let us include +# different chunks of Makefile code depending on whether we're +# building a jail or not, but for today all I really care about is +# being able to set the jail directory so I can write a FreeBSD port. + +{ $as_echo "$as_me:${as_lineno-$LINENO}: checking where to put rcynic jail" >&5 +$as_echo_n "checking where to put rcynic jail... " >&6; } + +case $with_rcynic_jail in + yes|auto) + RCYNIC_JAIL_DIRECTORY=/var/rcynic + ;; + no) + RCYNIC_JAIL_DIRECTORY='' + ;; + *) + RCYNIC_JAIL_DIRECTORY="$with_rcynic_jail" + ;; +esac + +if test "X$RCYNIC_JAIL_DIRECTORY" = "X" +then + USE_RCYNIC_JAIL=no + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no rcynic jail" >&5 +$as_echo "no rcynic jail" >&6; } +else + USE_RCYNIC_JAIL=yes + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RCYNIC_JAIL_DIRECTORY" >&5 +$as_echo "$RCYNIC_JAIL_DIRECTORY" >&6; } +fi + + + + # Now a bunch of checks to figure out what we can do with Python. If # we don't have Python at all, none of the rest of this matters. If # we do have Python, we need to check for required packages and |