diff options
| author | Richard M. Stallman | 1998-04-07 03:21:19 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-04-07 03:21:19 +0000 |
| commit | 69927a6cec053674035c48b247ae303e23d0ec89 (patch) | |
| tree | cf9bee17e052ec5301c03b685645f50235e230aa /src | |
| parent | 8dd455e101a55a6eab029e9099dbf5dad517beb2 (diff) | |
| download | emacs-69927a6cec053674035c48b247ae303e23d0ec89.tar.gz emacs-69927a6cec053674035c48b247ae303e23d0ec89.zip | |
Don't include <string.h> when configuring.
Diffstat (limited to 'src')
| -rw-r--r-- | src/config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/config.in b/src/config.in index 17162ca37e0..a1bb4c7a007 100644 --- a/src/config.in +++ b/src/config.in | |||
| @@ -405,6 +405,9 @@ extern char *getenv (); | |||
| 405 | #define BITS_PER_LONG 32 | 405 | #define BITS_PER_LONG 32 |
| 406 | #endif | 406 | #endif |
| 407 | 407 | ||
| 408 | /* Don't include <string.h> during configure. */ | ||
| 409 | #ifndef NOT_C_CODE | ||
| 408 | #ifdef HAVE_STRING_H | 410 | #ifdef HAVE_STRING_H |
| 409 | #include "string.h" | 411 | #include "string.h" |
| 410 | #endif | 412 | #endif |
| 413 | #endif | ||