mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-09 02:52:04 +08:00
really commit the sizeof(int) < 4 warning
This commit is contained in:
parent
5555cc26b9
commit
2c4a3c8442
2
configure
vendored
2
configure
vendored
@ -10944,7 +10944,7 @@ EOF
|
||||
|
||||
|
||||
if test "$ac_cv_sizeof_int" -lt 4 ; then
|
||||
{ echo "configure: error: OpenLDAP requires 'int' to be 32 bits or greater." 1>&2; exit 1; }
|
||||
echo "configure: warning: OpenLDAP requires 'int' to be 32 bits or greater." 1>&2
|
||||
fi
|
||||
fi
|
||||
|
||||
|
@ -1616,6 +1616,10 @@ else
|
||||
AC_CHECK_SIZEOF(short)
|
||||
AC_CHECK_SIZEOF(int)
|
||||
AC_CHECK_SIZEOF(long)
|
||||
|
||||
if test "$ac_cv_sizeof_int" -lt 4 ; then
|
||||
AC_MSG_WARN([OpenLDAP requires 'int' to be 32 bits or greater.])
|
||||
fi
|
||||
fi
|
||||
|
||||
dnl ----------------------------------------------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user