xref: /OK3568_Linux_fs/buildroot/package/openldap/0002-fix-bignum.patch (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1configure: correctly detect bignum
2
3Building with bignum is currently not possible, since we're checking
4ol_with_tls against a value it is never assigned in any case.
5
6Since bignum is from openssl, and openssl is the preferred TLS
7implementation, if the bignum headers are found, it means we do have
8TLS and it is opensl.
9
10So, keep the check for the bignum header, but check against ol_link_tls
11which means that openssl is enabled when we find the bignum headers.
12
13Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
14
15diff -durN openldap-2.4.40.orig/configure openldap-2.4.40/configure
16--- openldap-2.4.40.orig/configure	2014-09-19 03:48:49.000000000 +0200
17+++ openldap-2.4.40/configure	2015-01-25 18:44:54.216879362 +0100
18@@ -23431,7 +23431,7 @@
19
20 	if test "$ac_cv_header_openssl_bn_h" = "yes" &&
21 		test "$ac_cv_header_openssl_crypto_h" = "yes" &&
22-		test "$ol_with_tls" = "found" ; then
23+		test "$ol_link_tls" = "yes" ; then
24 		ol_with_mp=bignum
25
26 $as_echo "#define USE_MP_BIGNUM 1" >>confdefs.h
27diff -durN openldap-2.4.40.orig/configure.in openldap-2.4.40/configure.in
28--- openldap-2.4.40.orig/configure.in	2014-09-19 03:48:49.000000000 +0200
29+++ openldap-2.4.40/configure.in	2015-01-25 18:44:37.628676446 +0100
30@@ -2383,7 +2383,7 @@
31 	AC_CHECK_HEADERS(openssl/crypto.h)
32 	if test "$ac_cv_header_openssl_bn_h" = "yes" &&
33 		test "$ac_cv_header_openssl_crypto_h" = "yes" &&
34-		test "$ol_with_tls" = "found" ; then
35+		test "$ol_link_tls" = "yes" ; then
36 		ol_with_mp=bignum
37 		AC_DEFINE(USE_MP_BIGNUM,1,[define to use OpenSSL BIGNUM for MP])
38 	elif test $ol_with_mp = bignum ; then
39