diff options
| author | Paul Eggert | 1996-09-03 18:00:34 +0000 |
|---|---|---|
| committer | Paul Eggert | 1996-09-03 18:00:34 +0000 |
| commit | fbd40e3256508963912b8b868a28591a66a85eda (patch) | |
| tree | d821ccbbc0ab3e86ca1986d4122b3925c16e2494 /src | |
| parent | 0d554bae8bc14814de65f6164c278d6036223b52 (diff) | |
| download | emacs-fbd40e3256508963912b8b868a28591a66a85eda.tar.gz emacs-fbd40e3256508963912b8b868a28591a66a85eda.zip | |
(mktime): Define to emacs_mktime if HAVE_MKTIME && ! defined (_NEXT_SOURCE),
so that we don't attempt to redefine the libc mktime.
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/config.in b/src/config.in index 54379cb96bd..d91b36e5e11 100644 --- a/src/config.in +++ b/src/config.in | |||
| @@ -180,7 +180,6 @@ Boston, MA 02111-1307, USA. */ | |||
| 180 | #undef HAVE_SETSID | 180 | #undef HAVE_SETSID |
| 181 | #undef HAVE_FPATHCONF | 181 | #undef HAVE_FPATHCONF |
| 182 | #undef HAVE_SELECT | 182 | #undef HAVE_SELECT |
| 183 | #undef HAVE_MKTIME | ||
| 184 | #undef HAVE_EUIDACCESS | 183 | #undef HAVE_EUIDACCESS |
| 185 | #undef HAVE_GETPAGESIZE | 184 | #undef HAVE_GETPAGESIZE |
| 186 | #undef HAVE_TZSET | 185 | #undef HAVE_TZSET |
| @@ -193,6 +192,11 @@ Boston, MA 02111-1307, USA. */ | |||
| 193 | 192 | ||
| 194 | #undef HAVE_AIX_SMT_EXP | 193 | #undef HAVE_AIX_SMT_EXP |
| 195 | 194 | ||
| 195 | #undef HAVE_MKTIME | ||
| 196 | #if HAVE_MKTIME && ! defined (_NEXT_SOURCE) | ||
| 197 | #define mktime emacs_mktime | ||
| 198 | #endif | ||
| 199 | |||
| 196 | /* Define if you have the ANSI `strerror' function. | 200 | /* Define if you have the ANSI `strerror' function. |
| 197 | Otherwise you must have the variable `char *sys_errlist[]'. */ | 201 | Otherwise you must have the variable `char *sys_errlist[]'. */ |
| 198 | #undef HAVE_STRERROR | 202 | #undef HAVE_STRERROR |