Peter Eisentraut wrote: > Patrick Hartling writes: > > >>I am trying to track down a problem with configure scripts generated by >>Autoconf 2.52 and 2.53 using configure.in's written for Autoconf 2.13. > > > You need to run autoupdate when upgrading from 2.13 to >=2.50, and you > should quote your macro arguments correctly. >
autoupdate is interesting, but I don't necessarily want to require the use of versions >=2.50 just yet. Even so, running autoupdate and adding []'s liberally does not fix the syntax errors in the generated 'configure'. I've attached the resulting configure.in. -Patrick -- Patrick L. Hartling | Research Assistant, VRAC [EMAIL PROTECTED] | 2624 Howe Hall -- (515)294-4916 http://www.137.org/patrick/ | http://www.vrac.iastate.edu/
AC_INIT AC_CONFIG_SRCDIR([some-file]) AC_PROG_CC AC_CHECK_LIB([m], AC_CHECK_HEADER([math.h], [echo "Hello"], AC_MSG_ERROR([*** Header not found (oops) ***])))