Skip to content
Snippets Groups Projects
Commit 6fd59da5 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Fix typo in prev commit

parent d2d1eb78
No related branches found
No related tags found
No related merge requests found
#! /bin/sh
# From configure.in OpenLDAP: pkg/ldap/configure.in,v 1.625 2006/02/06 03:51:55 hyc Exp .
# From configure.in OpenLDAP: pkg/ldap/configure.in,v 1.626 2006/02/10 07:21:09 kurt Exp .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.59.
#
......@@ -42614,7 +42614,7 @@ fi
if test $ac_cv_header_gmp_h = yes && test $ac_cv_lib_gmp = yes ; then
 
cat >>confdefs.h <<\_ACEOF
#define USE_MP_LONG_LONG 1
#define USE_MP_GMP 1
_ACEOF
 
ol_with_mp=gmp
......@@ -2456,7 +2456,7 @@ if test $ol_with_mp = gmp || test $ol_with_mp = auto ; then
AC_CHECK_HEADERS(gmp.h)
AC_CHECK_LIB(gmp, __gmpz_add_ui)
if test $ac_cv_header_gmp_h = yes && test $ac_cv_lib_gmp = yes ; then
AC_DEFINE(USE_MP_LONG_LONG,1,[define to use GMP for MP])
AC_DEFINE(USE_MP_GMP,1,[define to use GMP for MP])
ol_with_mp=gmp
elif test $ol_with_mp = gmp ; then
AC_MSG_ERROR([gmp not available])
......
......@@ -1062,10 +1062,13 @@
/* define to use OpenSSL BIGNUM for MP */
#undef USE_MP_BIGNUM
/* define to use GMP for MP */
#undef USE_MP_GMP
/* define to use 'long' for MP */
#undef USE_MP_LONG
/* define to use GMP for MP */
/* define to use 'long long' for MP */
#undef USE_MP_LONG_LONG
/* Define to 1 if your processor stores words with the most significant byte
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment