1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 05:50:26 +02:00

* configure.in: Added AC_CHECK_SIZEOF(long), AC:CHECK_SIZEOF(int);

Added check for long longs.
This commit is contained in:
Mikael Djurfeldt 1999-01-10 07:41:25 +00:00
parent f872b8222c
commit 9dec9737a4

View file

@ -61,6 +61,16 @@ AM_PROG_CC_STDC
AC_C_CONST
AC_C_INLINE
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)
AC_CACHE_CHECK([for long longs], scm_cv_long_longs,
AC_TRY_COMPILE(,
[long long a],
scm_cv_long_longs=yes,
scm_cv_long_longs=no))
if test "$scm_cv_long_longs" = yes; then
AC_DEFINE(HAVE_LONG_LONGS)
fi
AC_HEADER_STDC
AC_HEADER_DIRENT