diff options
author | Dave Love <fx@gnu.org> | 2000-06-23 15:39:33 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-06-23 15:39:33 +0000 |
commit | 6a4657567b792e4ed67b9ea8ae4a4fa5c4c6b8fd (patch) | |
tree | 53cebd0d0cca57c73485c5f2ba97b312ed96fd68 /aclocal.m4 | |
parent | 3cb3ace0891706f1c80be89ae8ea7ab609853ee6 (diff) | |
download | emacs-6a4657567b792e4ed67b9ea8ae4a4fa5c4c6b8fd.tar.gz |
Define the post-2.13 stuff conditionally on autoconf version.
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index e5bc43cdbc1..f10d11c5500 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,6 +1,7 @@ dnl The following are from prerelease autoconf 2.14a. When 2.14 is dnl released, we should be able to zap them and just use AC_PREREQ(2.14). +ifelse(_AC_VERSION_COMPARE(AC_ACVERSION, [2.14]), -1, # AC_PROG_CC_STDC # --------------- @@ -278,8 +279,8 @@ else fi ])# AC_C_PROTOTYPES -dnl The following isn't in the prerelease autoconf at this time, but -dnl eggert expects it to go in eventually. +dnl The following is a bit different from the prerelease autoconf at +dnl this time since that requires extra definitions. dnl By default, many hosts won't let programs access large files; dnl one must use special compiler options to get large-file access to work. @@ -353,3 +354,5 @@ AC_DEFUN(AC_SYS_LARGEFILE, [#include <stdio.h>], [return !ftello;]) fi ]) + +) dnl ifelse |