Mercurial > hg > xemacs-beta
comparison configure.in @ 1800:6c853dd06f0d
[xemacs-hg @ 2003-11-20 16:06:00 by james]
And one more commit because our broken archive won't take toplevel stuff
the first time.
author | james |
---|---|
date | Thu, 20 Nov 2003 16:06:05 +0000 |
parents | b5db5c9230b1 |
children | b37a2b08a901 |
comparison
equal
deleted
inserted
replaced
1799:19c89a2e24b6 | 1800:6c853dd06f0d |
---|---|
4194 | 4194 |
4195 | 4195 |
4196 AC_C_INLINE | 4196 AC_C_INLINE |
4197 test "$ac_cv_c_inline" != "no" -a "$GCC" = "yes" && XE_ADD_OBJS(inline.o) | 4197 test "$ac_cv_c_inline" != "no" -a "$GCC" = "yes" && XE_ADD_OBJS(inline.o) |
4198 | 4198 |
4199 dnl check for the typeof extension | |
4200 AC_MSG_CHECKING(for typeof) | |
4201 AC_TRY_COMPILE(, [int i; __typeof__(i) j;], typeofname="__typeof__", | |
4202 [AC_TRY_COMPILE(, [int i; typeof(i) j;], typeofname="typeof", | |
4203 typeofname=no)]) | |
4204 AC_MSG_RESULT($typeofname) | |
4205 if test "$typeofname" != "no"; then | |
4206 AC_DEFINE_UNQUOTED(TYPEOF, $typeofname) | |
4207 fi | |
4208 | |
4199 dnl HP-UX has a working alloca in libPW. | 4209 dnl HP-UX has a working alloca in libPW. |
4200 dnl case "${GCC}${opsys}" in hpux* ) | 4210 dnl case "${GCC}${opsys}" in hpux* ) |
4201 dnl AC_CHECK_FUNC(alloca, [:], [AC_CHECK_LIB(PW, alloca)]) | 4211 dnl AC_CHECK_FUNC(alloca, [:], [AC_CHECK_LIB(PW, alloca)]) |
4202 dnl esac | 4212 dnl esac |
4203 | 4213 |