diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-06-10 21:32:47 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-06-10 21:32:47 +0000 |
commit | 566cab9427e5d6ce8bdff82d911ec76662ca7927 (patch) | |
tree | a107c37aa4c60975d11b29c0fc6687910947985b /configure.in | |
parent | 36f3a7296943022abe94ded17a0cae82614f35ab (diff) | |
download | fetchmail-566cab9427e5d6ce8bdff82d911ec76662ca7927.tar.gz fetchmail-566cab9427e5d6ce8bdff82d911ec76662ca7927.tar.bz2 fetchmail-566cab9427e5d6ce8bdff82d911ec76662ca7927.zip |
Guarantee that we can deduce a 32-bit type.
svn path=/trunk/; revision=1079
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 46e6214c..4398fa4c 100644 --- a/configure.in +++ b/configure.in @@ -127,6 +127,10 @@ AC_TRY_LINK([#include <signal.h> [AC_DEFINE(SYS_SIGLIST_DECLARED) AC_MSG_RESULT(yes)], AC_MSG_RESULT(no)) +AC_CHECK_SIZEOF(short) +AC_CHECK_SIZEOF(int) +AC_CHECK_SIZEOF(long) + AC_OUTPUT(Makefile, [ # Makefile uses this timestamp file to know when to remake Makefile, # build.sh, and glob/Makefile. |