really commit the sizeof(int) < 4 warning

This commit is contained in:
Kurt Zeilenga 1999-06-10 00:54:47 +00:00
parent 5555cc26b9
commit 2c4a3c8442
2 changed files with 5 additions and 1 deletions

2
configure vendored
View File

@ -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

View File

@ -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 ----------------------------------------------------------------