diff options
| author | Richard M. Stallman | 1997-12-26 10:41:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-12-26 10:41:25 +0000 |
| commit | d2e9bfae622a0e2411632a8fbec4ddc49c5812eb (patch) | |
| tree | 070587aaa2deaf7bc5e56a90a6df832b2c8ae65f | |
| parent | dd9cda060f2186a86728ef59909aa7f368e5be34 (diff) | |
| download | emacs-d2e9bfae622a0e2411632a8fbec4ddc49c5812eb.tar.gz emacs-d2e9bfae622a0e2411632a8fbec4ddc49c5812eb.zip | |
(HAVE_STRING_H): Add #undef.
[HAVE_STRING_H]: Include string.h.
| -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 bb6a2c57603..007f24ead5b 100644 --- a/src/config.in +++ b/src/config.in | |||
| @@ -25,7 +25,6 @@ Boston, MA 02111-1307, USA. */ | |||
| 25 | #ifndef EMACS_CONFIG_H | 25 | #ifndef EMACS_CONFIG_H |
| 26 | #define EMACS_CONFIG_H | 26 | #define EMACS_CONFIG_H |
| 27 | 27 | ||
| 28 | |||
| 29 | /* These are all defined in the top-level Makefile by configure. | 28 | /* These are all defined in the top-level Makefile by configure. |
| 30 | They're here only for reference. */ | 29 | They're here only for reference. */ |
| 31 | 30 | ||
| @@ -131,6 +130,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 131 | #undef HAVE_SYS_SYSTEMINFO_H | 130 | #undef HAVE_SYS_SYSTEMINFO_H |
| 132 | #undef HAVE_TERMIOS_H | 131 | #undef HAVE_TERMIOS_H |
| 133 | #undef HAVE_LIMITS_H | 132 | #undef HAVE_LIMITS_H |
| 133 | #undef HAVE_STRING_H | ||
| 134 | #undef STDC_HEADERS | 134 | #undef STDC_HEADERS |
| 135 | #undef TIME_WITH_SYS_TIME | 135 | #undef TIME_WITH_SYS_TIME |
| 136 | 136 | ||
| @@ -404,3 +404,7 @@ extern char *getenv (); | |||
| 404 | #ifndef BITS_PER_LONG | 404 | #ifndef BITS_PER_LONG |
| 405 | #define BITS_PER_LONG 32 | 405 | #define BITS_PER_LONG 32 |
| 406 | #endif | 406 | #endif |
| 407 | |||
| 408 | #ifdef HAVE_STRING_H | ||
| 409 | #include "string.h" | ||
| 410 | #endif | ||