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

* acconfig.h (HAVE_INLINE): Added template.

* configure.in (HAVE_INLINE): Define it when the compiler supports
inline functions.
This commit is contained in:
Marius Vollmer 2001-11-25 14:44:10 +00:00
parent 2e203f2d11
commit 5bd732c952
2 changed files with 6 additions and 0 deletions

View file

@ -167,3 +167,5 @@
/* Define if the compiler supports long longs. */
#undef HAVE_LONG_LONGS
/* Define if the compiler supports inline functions. */
#undef HAVE_INLINE

View file

@ -176,6 +176,10 @@ AC_C_CONST
AC_C_INLINE
AC_C_BIGENDIAN
if test "$ac_cv_c_inline" != no; then
AC_DEFINE(HAVE_INLINE)
fi
AC_CHECK_SIZEOF(short)
AC_CHECK_SIZEOF(int)
AC_CHECK_SIZEOF(long)