]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't include <string.h> when configuring.
authorRichard M. Stallman <rms@gnu.org>
Tue, 7 Apr 1998 03:21:19 +0000 (03:21 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 7 Apr 1998 03:21:19 +0000 (03:21 +0000)
src/config.in

index 17162ca37e057dfbe4d1b042e573de32190785cf..a1bb4c7a007fc1f6b9fa6ca51d0c793fb786f5b3 100644 (file)
@@ -405,6 +405,9 @@ extern char *getenv ();
 #define BITS_PER_LONG 32
 #endif
 
+/* Don't include <string.h> during configure.  */
+#ifndef NOT_C_CODE
 #ifdef HAVE_STRING_H
 #include "string.h"
 #endif
+#endif