diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-10-10 14:29:53 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-10-10 14:29:53 -0700 |
commit | 38a1b8ae9f042cdfe6e024ea08b5257673b16e1f (patch) | |
tree | 9f8638d3553161cf6585829b75e82fa593474c43 /configure.in | |
parent | fd7dd1134501551409c4d7a07a15dddc32abbfef (diff) | |
download | nasm-38a1b8ae9f042cdfe6e024ea08b5257673b16e1f.tar.gz nasm-38a1b8ae9f042cdfe6e024ea08b5257673b16e1f.tar.bz2 nasm-38a1b8ae9f042cdfe6e024ea08b5257673b16e1f.zip |
configure.in: looks like we need autoconf 2.61 :(
AC_USE_SYSTEM_EXTENSIONS is really, *really* useful, but apparently
requires autoconf 2.61...
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index c43d39c..c996976 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ -dnl Process this file with autoconf 2.59 or later to produce +dnl Process this file with autoconf 2.61 or later to produce dnl a configure script. -AC_PREREQ(2.59) +AC_PREREQ(2.61) AC_INIT(config.h.in) AC_CONFIG_HEADERS(config.h) |