1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

r17257: make the size_t is to small error more verbose

(hopefully nobody will ever see this:-)

metze
(This used to be commit 196803a6c6)
This commit is contained in:
Stefan Metzmacher 2006-07-26 13:06:01 +00:00 committed by Gerald (Jerry) Carter
parent e72786ec24
commit 8194dfd289

View File

@ -12,5 +12,9 @@ AC_CHECK_SIZEOF(size_t,cross)
AC_CHECK_SIZEOF(void *,cross)
if test $ac_cv_sizeof_size_t -lt $ac_cv_sizeof_void_p; then
AC_WARN([size_t cannot represent the amount of used memory of a process])
AC_WARN([please report this to <samba-technical@samba.org>])
AC_WARN([sizeof(size_t) = $ac_cv_sizeof_size_t])
AC_WARN([sizeof(void *) = $ac_cv_sizeof_void_p])
AC_ERROR([sizeof(size_t) < sizeof(void *)])
fi