Diff for /configure.in between versions 1.629 and 1.630

version 1.629, 2006/02/17 21:46:30 version 1.630, 2006/02/22 03:47:41
Line 1 Line 1
 dnl $OpenLDAP: pkg/ldap/configure.in,v 1.628 2006/02/13 01:24:33 lukeh Exp $  dnl $OpenLDAP: pkg/ldap/configure.in,v 1.629 2006/02/17 21:46:30 kurt Exp $
 dnl This work is part of OpenLDAP Software <http://www.openldap.org/>.  dnl This work is part of OpenLDAP Software <http://www.openldap.org/>.
 dnl  dnl
 dnl Copyright 1998-2006 The OpenLDAP Foundation.  dnl Copyright 1998-2006 The OpenLDAP Foundation.
Line 25  dnl ==================================== Line 25  dnl ====================================
 dnl Configure.in for OpenLDAP  dnl Configure.in for OpenLDAP
 AC_COPYRIGHT([[Copyright 1998-2006 The OpenLDAP Foundation. All rights reserved.  AC_COPYRIGHT([[Copyright 1998-2006 The OpenLDAP Foundation. All rights reserved.
 Restrictions apply, see COPYRIGHT and LICENSE files.]])  Restrictions apply, see COPYRIGHT and LICENSE files.]])
 AC_REVISION([$OpenLDAP: pkg/ldap/configure.in,v 1.628 2006/02/13 01:24:33 lukeh Exp $])  AC_REVISION([$OpenLDAP: pkg/ldap/configure.in,v 1.629 2006/02/17 21:46:30 kurt Exp $])
 AC_INIT([OpenLDAP],,[http://www.openldap.org/its/])  AC_INIT([OpenLDAP],,[http://www.openldap.org/its/])
 m4_define([AC_PACKAGE_BUGREPORT],[<http://www.openldap.org/its/>])  m4_define([AC_PACKAGE_BUGREPORT],[<http://www.openldap.org/its/>])
 AC_CONFIG_SRCDIR(build/version.sh)dnl  AC_CONFIG_SRCDIR(build/version.sh)dnl
Line 2429  AC_DEFINE(LBER_TAG_T,long,[define to lar Line 2429  AC_DEFINE(LBER_TAG_T,long,[define to lar
 dnl ----------------------------------------------------------------  dnl ----------------------------------------------------------------
 dnl Check for multiple precision support  dnl Check for multiple precision support
 if test $ol_with_mp = longlong || test $ol_with_mp = auto ; then  if test $ol_with_mp = longlong || test $ol_with_mp = auto ; then
         if test $ac_cv_sizeof_long_long > 4 ; then          if test $ac_cv_sizeof_long_long -gt 4 ; then
                 ol_with_mp=longlong                  ol_with_mp=longlong
                 AC_DEFINE(USE_MP_LONG_LONG,1,[define to use 'long long' for MP])                  AC_DEFINE(USE_MP_LONG_LONG,1,[define to use 'long long' for MP])
         elif test $ol_with_mp = longlong ; then          elif test $ol_with_mp = longlong ; then
Line 2437  if test $ol_with_mp = longlong || test $ Line 2437  if test $ol_with_mp = longlong || test $
         fi          fi
 fi  fi
 if test $ol_with_mp = long || test $ol_with_mp = auto ; then  if test $ol_with_mp = long || test $ol_with_mp = auto ; then
         if test $ac_cv_sizeof_long > 4 ; then          if test $ac_cv_sizeof_long -gt 4 ; then
                 ol_with_mp=long                  ol_with_mp=long
                 AC_DEFINE(USE_MP_LONG,1,[define to use 'long' for MP])                  AC_DEFINE(USE_MP_LONG,1,[define to use 'long' for MP])
         elif test $ol_with_mp = long ; then          elif test $ol_with_mp = long ; then

Removed from v.1.629  
changed lines
  Added in v.1.630


______________
© Copyright 1998-2020, OpenLDAP Foundation, info@OpenLDAP.org