diff options
author | foobar <sniper@php.net> | 2005-01-22 20:28:17 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-01-22 20:28:17 +0000 |
commit | af1f60e601398343bc8e94c430d0833de936c373 (patch) | |
tree | 4619c06d1d5ee0c547a5b7667761220b33a520e5 /Zend/configure.in | |
parent | 1d5c13bdad8416d96f22ce1e0da9b3dfba7c8fe5 (diff) | |
download | php-git-af1f60e601398343bc8e94c430d0833de936c373.tar.gz |
- Compile fix for systems without uint32_t typedef
Diffstat (limited to 'Zend/configure.in')
-rw-r--r-- | Zend/configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Zend/configure.in b/Zend/configure.in index 67d3598663..9cbd1e11ce 100644 --- a/Zend/configure.in +++ b/Zend/configure.in @@ -15,6 +15,9 @@ AC_ZEND_C_BIGENDIAN dnl We want this one before the checks, so the checks can modify CFLAGS. test -z "$CFLAGS" && auto_cflags=1 +AC_CHECK_SIZEOF(long, 8) +AC_CHECK_SIZEOF(int, 4) + sinclude(Zend.m4) LIBZEND_BASIC_CHECKS |