m4-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch-1_4 depends on autoconf 2.60


From: Eric Blake
Subject: branch-1_4 depends on autoconf 2.60
Date: Sat, 24 Jun 2006 16:53:01 -0600
User-agent: Thunderbird 1.5.0.4 (Windows/20060516)

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Now that Ralf got the first release of autoconf out in a couple of years,
we can finally use its new features.  This 3-line change resulted in an
8k reduction to configure between two runs of autoconf 2.60.

2006-06-24  Eric Blake  <address@hidden>

        * configure.ac (AC_PREREQ): Autoconf 2.60 is now released.
        (AC_CHECK_HEADERS_ONCE): Use this new feature.
        (AC_CHECK_FUNCS_ONCE): Likewise.

- --
Life is short - so eat dessert first!

Eric Blake             address@hidden
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2.1 (Cygwin)
Comment: Public key at home.comcast.net/~ericblake/eblake.gpg
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFEncJN84KuGfSFAYARAiK6AJ96cLULeTcIV7Ji8ipTc8BenzfHnQCg0I5E
mNoQgf0AyXdTCi5OoP0FHL8=
=OULj
-----END PGP SIGNATURE-----
Index: configure.ac
===================================================================
RCS file: /sources/m4/m4/configure.ac,v
retrieving revision 1.36.2.16
diff -u -p -r1.36.2.16 configure.ac
--- configure.ac        22 Jun 2006 14:55:48 -0000      1.36.2.16
+++ configure.ac        24 Jun 2006 22:46:25 -0000
@@ -17,7 +17,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 # 02110-1301  USA
 
-AC_PREREQ([2.59])
+AC_PREREQ([2.60])
 AC_INIT([GNU M4], [1.4.4c], address@hidden)
 AM_INIT_AUTOMAKE([1.9.6 dist-bzip2 gnu])
 PACKAGE=$PACKAGE_TARNAME; AC_SUBST([PACKAGE])
@@ -32,7 +32,7 @@ AC_CONFIG_HEADERS([config.h:config-h.in]
 AC_PROG_CC
 M4_EARLY
 
-AC_CHECK_HEADERS([limits.h siginfo.h])
+AC_CHECK_HEADERS_ONCE([limits.h siginfo.h])
 AC_CHECK_TYPES([siginfo_t], [], [],
 [[#include <signal.h>
 #if HAVE_SIGINFO_H
@@ -46,7 +46,7 @@ AC_CHECK_MEMBERS([struct sigaction.sa_si
 AC_TYPE_SIGNAL
 AC_TYPE_SIZE_T
 
-AC_CHECK_FUNCS([sigaction sigaltstack sigstack sigvec strerror tmpfile])
+AC_CHECK_FUNCS_ONCE([sigaction sigaltstack sigstack sigvec strerror tmpfile])
 
 M4_INIT
 

reply via email to

[Prev in Thread] Current Thread [Next in Thread]