diff options
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2009-07-30 19:43:16 +0000 |
---|---|---|
committer | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | 2009-07-30 19:43:16 +0000 |
commit | 2ef2cd7a852c69f63c777929d6f56f9df59d2ac8 (patch) | |
tree | 332c3abf47d91374d8d308870e85fcdf659b39f2 /config/extensions.m4 | |
parent | 900f20710fb10a9d02248f1a2d442c324d1fa659 (diff) | |
download | cygnal-2ef2cd7a852c69f63c777929d6f56f9df59d2ac8.tar.gz cygnal-2ef2cd7a852c69f63c777929d6f56f9df59d2ac8.tar.bz2 cygnal-2ef2cd7a852c69f63c777929d6f56f9df59d2ac8.zip |
config/
* extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Do not expand
for Autoconf 2.62 or newer.
* tls.m4 (GCC_CHECK_TLS): Fix m4 quotation.
* no-executables.m4 (_AC_COMPILER_EXEEXT): Fix m4 quotation.
* override.m4 (m4_copy_force, m4_rename_force): Provide
macros if not defined.
(AC_PREREQ): Use m4_copy_force.
readline/examples/rlfe/
* configure.in: Correctly quote AC_PROGRAM_SOURCE definition.
Diffstat (limited to 'config/extensions.m4')
-rw-r--r-- | config/extensions.m4 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/config/extensions.m4 b/config/extensions.m4 index 8ae4a675e..eb59f2721 100644 --- a/config/extensions.m4 +++ b/config/extensions.m4 @@ -1,7 +1,7 @@ -# serial 5 -*- Autoconf -*- +# serial 6 -*- Autoconf -*- # Enable extensions on systems that normally disable them. -# Copyright (C) 2003, 2006, 2007 Free Software Foundation, Inc. +# Copyright (C) 2003, 2006, 2007, 2009 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -12,6 +12,8 @@ # enough in this area it's likely we'll need to redefine # AC_USE_SYSTEM_EXTENSIONS for quite some time. +m4_version_prereq([2.62],, [ + # AC_USE_SYSTEM_EXTENSIONS # ------------------------ # Enable extensions on systems that normally disable them, @@ -74,3 +76,4 @@ AC_BEFORE([$0], [AC_RUN_IFELSE])dnl AC_DEFINE([_TANDEM_SOURCE]) ])# AC_USE_SYSTEM_EXTENSIONS +]) |