svn rev #25491: trunk/src/
hartmans@MIT.EDU
hartmans at MIT.EDU
Tue Nov 29 16:22:21 EST 2011
http://src.mit.edu/fisheye/changelog/krb5/?cs=25491
Commit By: hartmans
Log Message:
ticket: new Subject: LIBS should not include PKINIT_CRYPTO_IMPL_LIBS tags: pullup target_version: 1.10
AC_CHECK_LIB should put -lcrypto in PKINIT_CRYPTO_IMPL_LIBS not LIBS
for pkinit. A similar problem exists for crypto_impl and is not
addressed by this patch.
Changed Files:
U trunk/src/configure.in
Modified: trunk/src/configure.in
===================================================================
--- trunk/src/configure.in 2011-11-23 16:17:25 UTC (rev 25490)
+++ trunk/src/configure.in 2011-11-29 21:22:21 UTC (rev 25491)
@@ -202,7 +202,7 @@
], withval=$PKINIT_CRYPTO_IMPL)
case "$withval" in
builtin|openssl)
- AC_CHECK_LIB(crypto, PKCS7_get_signer_info)
+ AC_CHECK_LIB(crypto, PKCS7_get_signer_info, PKINIT_CRYPTO_IMPL_LIBS=-lcrypto)
PKINIT_CRYPTO_IMPL=openssl
;;
nss)
More information about the cvs-krb5
mailing list