diff options
| author | Dave Love | 2000-06-23 15:39:33 +0000 |
|---|---|---|
| committer | Dave Love | 2000-06-23 15:39:33 +0000 |
| commit | 6a4657567b792e4ed67b9ea8ae4a4fa5c4c6b8fd (patch) | |
| tree | 53cebd0d0cca57c73485c5f2ba97b312ed96fd68 | |
| parent | 3cb3ace0891706f1c80be89ae8ea7ab609853ee6 (diff) | |
| download | emacs-6a4657567b792e4ed67b9ea8ae4a4fa5c4c6b8fd.tar.gz emacs-6a4657567b792e4ed67b9ea8ae4a4fa5c4c6b8fd.zip | |
Define the post-2.13 stuff conditionally on autoconf version.
| -rw-r--r-- | ChangeLog | 9 | ||||
| -rw-r--r-- | aclocal.m4 | 7 |
2 files changed, 14 insertions, 2 deletions
| @@ -1,3 +1,12 @@ | |||
| 1 | 2000-06-23 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * configure.in [HAVE_TIMEVAL]: Move gettimeofday test here, test | ||
| 4 | for struct timezone and test how we can call gettimeofday. | ||
| 5 | Check for OSF 5+. | ||
| 6 | |||
| 7 | * aclocal.m4: Define the post-2.13 stuff conditionally on autoconf | ||
| 8 | version. | ||
| 9 | |||
| 1 | 2000-06-23 Gerd Moellmann <gerd@gnu.org> | 10 | 2000-06-23 Gerd Moellmann <gerd@gnu.org> |
| 2 | 11 | ||
| 3 | * configure.in (HAVE_LIBXP): Change test for libXp. | 12 | * configure.in (HAVE_LIBXP): Change test for libXp. |
diff --git a/aclocal.m4 b/aclocal.m4 index e5bc43cdbc1..f10d11c5500 100644 --- a/aclocal.m4 +++ b/aclocal.m4 | |||
| @@ -1,6 +1,7 @@ | |||
| 1 | dnl The following are from prerelease autoconf 2.14a. When 2.14 is | 1 | dnl The following are from prerelease autoconf 2.14a. When 2.14 is |
| 2 | dnl released, we should be able to zap them and just use AC_PREREQ(2.14). | 2 | dnl released, we should be able to zap them and just use AC_PREREQ(2.14). |
| 3 | 3 | ||
| 4 | ifelse(_AC_VERSION_COMPARE(AC_ACVERSION, [2.14]), -1, | ||
| 4 | 5 | ||
| 5 | # AC_PROG_CC_STDC | 6 | # AC_PROG_CC_STDC |
| 6 | # --------------- | 7 | # --------------- |
| @@ -278,8 +279,8 @@ else | |||
| 278 | fi | 279 | fi |
| 279 | ])# AC_C_PROTOTYPES | 280 | ])# AC_C_PROTOTYPES |
| 280 | 281 | ||
| 281 | dnl The following isn't in the prerelease autoconf at this time, but | 282 | dnl The following is a bit different from the prerelease autoconf at |
| 282 | dnl eggert expects it to go in eventually. | 283 | dnl this time since that requires extra definitions. |
| 283 | 284 | ||
| 284 | dnl By default, many hosts won't let programs access large files; | 285 | dnl By default, many hosts won't let programs access large files; |
| 285 | dnl one must use special compiler options to get large-file access to work. | 286 | dnl one must use special compiler options to get large-file access to work. |
| @@ -353,3 +354,5 @@ AC_DEFUN(AC_SYS_LARGEFILE, | |||
| 353 | [#include <stdio.h>], [return !ftello;]) | 354 | [#include <stdio.h>], [return !ftello;]) |
| 354 | fi | 355 | fi |
| 355 | ]) | 356 | ]) |
| 357 | |||
| 358 | ) dnl ifelse | ||