diff options
author | Eduardo Chappa <chappa@washington.edu> | 2019-01-26 09:16:38 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2019-01-26 09:16:38 -0700 |
commit | b21e2fe446ea9400c8184d6509cf67418857ab09 (patch) | |
tree | f75393999c03c936f03da99dc0f833af1587a937 /configure | |
parent | 7959dcd9075d7c9369a0c0843927a489780319bb (diff) | |
download | alpine-b21e2fe446ea9400c8184d6509cf67418857ab09.tar.xz |
* Add --with-tcl-lib-dir=PATH option to the configure script, in
case the TCL libraries are not located in a standard path. Also
add ca-root-nss.crt to the list of bundles to test for existence
of certificates. Based on a report in comp.mail.pine by Roderick.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 19 |
1 files changed, 17 insertions, 2 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 |