diff options
author | Eduardo Chappa <chappa@washington.edu> | 2018-04-27 20:47:42 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2018-04-27 20:47:42 -0600 |
commit | c1b6c3ea38d9c61bca1085aaee6f2c153357ccdb (patch) | |
tree | 7f4a60b0750fa2d14516d4f4c281cfb4625176f6 | |
parent | 3d69487e36e25aad64778ac2a91572f3fe3a3218 (diff) | |
download | alpine-c1b6c3ea38d9c61bca1085aaee6f2c153357ccdb.tar.xz |
* Add test for ca-bundle.crt for systems that provide it.
* Add %libresslflags% to the set of extracflagsnq in the kerberos build
of PC-Alpine. This adds S/MIME support to that build. Fixed by
Ulf-Dietrich Braumann.
-rw-r--r-- | build.bat | 2 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -88,7 +88,7 @@ echo including LDAP functionality set ldapflags=-I\"%ALPINE_LDAP%\"\inckit -DENABLE_LDAP set ldaplibes=\"%ALPINE_LDAP%\"\binaries\release\ldap32.lib :noldapw2k -set extracflagsnq=/DWINVER=0x0501 /Zi -Od %ldapflags% -D_USE_32BIT_TIME_T -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DSPCFC_WINVER=\"\\\" 2000\\\"\" -DSPCL_REMARKS=\"\\\" with krb5\\\"\" +set extracflagsnq=/DWINVER=0x0501 /Zi -Od %ldapflags% %libresslflags% -D_USE_32BIT_TIME_T -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE -DSPCFC_WINVER=\"\\\" 2000\\\"\" -DSPCL_REMARKS=\"\\\" with krb5\\\"\" set extralibes="secur32.lib %libresslextralibes%" set extralibesalpine="secur32.lib crypt32.lib %ldaplibes% %libressllibes%" set extrarcflags="/D_PCP_W2K" @@ -21818,7 +21818,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" + SSL_PEM="factory.pem ca-bundle.pem ca-bundle.crt" for SSL_BUNDLE in $SSL_PEM do if test -f ${certdir}/${SSL_BUNDLE} ; then diff --git a/configure.ac b/configure.ac index 4c3d3ef1..92a584d3 100644 --- a/configure.ac +++ b/configure.ac @@ -2002,7 +2002,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" + SSL_PEM="factory.pem ca-bundle.pem ca-bundle.crt" for SSL_BUNDLE in $SSL_PEM do if test -f ${certdir}/${SSL_BUNDLE} ; then |