diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-10-13 23:12:46 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-10-13 23:12:46 -0700 |
commit | 70a5d14b8945b40d984cb5fa076fea868a45ba84 (patch) | |
tree | ab0d216b5a8253be5561729ae848bd2897d27275 /configure.in | |
parent | a5fc6467ab3bdd538a4731fdb0fc281bb599dc9e (diff) | |
download | nasm-70a5d14b8945b40d984cb5fa076fea868a45ba84.tar.gz nasm-70a5d14b8945b40d984cb5fa076fea868a45ba84.tar.bz2 nasm-70a5d14b8945b40d984cb5fa076fea868a45ba84.zip |
autoconf: drop AC_USE_SYSTEM_EXTENSIONS to support autoconf 2.59
AC_USE_SYSTEM_EXTENSIONS requires autoconf 2.61, which is still a
little too new, apparently. Unless we have a specific reason to
include it, don't.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 3087707..93759fd 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ -dnl Process this file with autoconf 2.61 or later to produce +dnl Process this file with autoconf 2.59 or later to produce dnl a configure script. -AC_PREREQ(2.61) +AC_PREREQ(2.59) AC_INIT(config.h.in) AC_CONFIG_HEADERS(config.h) @@ -47,8 +47,10 @@ fi AC_PREFIX_PROGRAM(nasm) dnl Checks for programs. -AC_USE_SYSTEM_EXTENSIONS +dnl Consider AC_USE_SYSTEM_EXTENSIONS if autoconf 2.61 is OK in the future +AC_GNU_SOURCE AC_ISC_POSIX +AC_MINIX AC_PROG_CC AC_PROG_LN_S AC_PROG_MAKE_SET |