Author: metze Date: 2006-07-26 13:06:01 +0000 (Wed, 26 Jul 2006) New Revision: 17257
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=17257 Log: make the size_t is to small error more verbose (hopefully nobody will ever see this:-) metze Modified: branches/SAMBA_4_0/source/lib/talloc/config.m4 Changeset: Modified: branches/SAMBA_4_0/source/lib/talloc/config.m4 =================================================================== --- branches/SAMBA_4_0/source/lib/talloc/config.m4 2006-07-26 12:25:16 UTC (rev 17256) +++ branches/SAMBA_4_0/source/lib/talloc/config.m4 2006-07-26 13:06:01 UTC (rev 17257) @@ -12,5 +12,9 @@ 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 <[EMAIL PROTECTED]>]) + 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
