diff options
-rwxr-xr-x | configure | 19 | ||||
-rw-r--r-- | configure.ac | 14 |
2 files changed, 29 insertions, 4 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.ac Rev:26 by chappa@washington.edu. +# From configure.ac Rev:27 by chappa@washington.edu. # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for alpine 2.21.9999. # @@ -924,6 +924,7 @@ with_ldap_include_dir with_ldap_lib_dir with_smime with_tcl +with_tcl_lib_dir with_tcl_lib with_tcl_include with_supplied_regex @@ -1767,6 +1768,7 @@ Optional Packages: --with-ldap-lib-dir=DIR LDAP library path --without-smime Disable S/MIME --without-tcl Disable TCL, thus Web Alpine support + --with-tcl-lib-dir=PATH Specific TCL Librar dir, like \"/usr/opt/tcl86/lib\" --with-tcl-lib=LIBRARY Specific TCL Library, like \"tcl8.6\" --with-tcl-include=DIR Directory containing TCL include files --with-supplied-regex Use regex library supplied with alpine @@ -18345,6 +18347,19 @@ if test "x$with_tcl" = "xno" ; then $as_echo "$as_me: Excluding TCL Support, and thus Web Alpine Support" >&6;} else +# Check whether --with-tcl-lib-dir was given. +if test "${with_tcl_lib_dir+set}" = set; then : + withval=$with_tcl_lib_dir; + if test "x$withval" != "xno" ; then + alpine_TCLLIBDIR=$withval + if test -n "$alpine_TCLLIBDIR" ; then + LDFLAGS="-L$alpine_TCLLIBDIR $LDFLAGS" + fi + fi + +fi + + # Check whether --with-tcl-lib was given. if test "${with_tcl_lib+set}" = set; then : withval=$with_tcl_lib; @@ -22279,7 +22294,7 @@ _ACEOF SSL_CERT_LINK="no" if test -z "`ls ${certdir} | $EGREP '^[0-9A-Fa-f]{8}\.[0-9]'`" ; then SSL_BUNDLE_EXISTS="no" - SSL_PEM="factory.pem ca-bundle.pem ca-bundle.crt" + SSL_PEM="factory.pem ca-bundle.pem ca-bundle.crt ca-root-nss.crt" for SSL_BUNDLE in $SSL_PEM do if test -f ${certdir}/${SSL_BUNDLE} ; then diff --git a/configure.ac b/configure.ac index e9f1e855..f9e149c4 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ dnl */ AC_PREREQ([2.69]) -AC_REVISION([Rev:26 by chappa@washington.edu]) +AC_REVISION([Rev:27 by chappa@washington.edu]) dnl Alpine Version Number is in $srcdir/VERSION AC_INIT([alpine],[m4_esyscmd(tr -d \\n < VERSION)],[chappa@washington.edu]) @@ -1058,6 +1058,16 @@ if test "x$with_tcl" = "xno" ; then WEB_BUILD= AC_MSG_NOTICE([Excluding TCL Support, and thus Web Alpine Support]) else + AC_ARG_WITH(tcl-lib-dir, + AS_HELP_STRING([--with-tcl-lib-dir=PATH],[Specific TCL Librar dir, like \"/usr/opt/tcl86/lib\"]), + [ + if test "x$withval" != "xno" ; then + alpine_TCLLIBDIR=$withval + if test -n "$alpine_TCLLIBDIR" ; then + LDFLAGS="-L$alpine_TCLLIBDIR $LDFLAGS" + fi + fi + ]) AC_ARG_WITH(tcl-lib, AS_HELP_STRING([--with-tcl-lib=LIBRARY],[Specific TCL Library, like \"tcl8.6\"]), [ @@ -1986,7 +1996,7 @@ else SSL_CERT_LINK="no" if test -z "`ls ${certdir} | $EGREP '^@<:@0-9A-Fa-f@:>@{8}\.@<:@0-9@:>@'`" ; then SSL_BUNDLE_EXISTS="no" - SSL_PEM="factory.pem ca-bundle.pem ca-bundle.crt" + SSL_PEM="factory.pem ca-bundle.pem ca-bundle.crt ca-root-nss.crt" for SSL_BUNDLE in $SSL_PEM do if test -f ${certdir}/${SSL_BUNDLE} ; then |