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

rewrite ALLOCA related code as multiple lines so

it doesn't break with current autoconf substitutions.
This commit is contained in:
Rob Browning 2003-11-17 19:14:44 +00:00
parent 5a76d4dc05
commit fb2de91a2c

View file

@ -773,7 +773,10 @@ AC_CHECK_FUNCS(asinh acosh atanh copysign finite isinf isnan sincos trunc)
# explicitly to LIBOBJS to make sure that it is translated to # explicitly to LIBOBJS to make sure that it is translated to
# `alloca.lo' for libtool later on. This can and should be done more cleanly. # `alloca.lo' for libtool later on. This can and should be done more cleanly.
AC_FUNC_ALLOCA AC_FUNC_ALLOCA
if test "$ALLOCA" = "alloca.o"; then AC_LIBOBJ([alloca]); fi if test "$ALLOCA" = "alloca.o"
then
AC_LIBOBJ([alloca])
fi
AC_CHECK_MEMBERS([struct stat.st_rdev]) AC_CHECK_MEMBERS([struct stat.st_rdev])
AC_CHECK_MEMBERS([struct stat.st_blksize]) AC_CHECK_MEMBERS([struct stat.st_blksize])