summaryrefslogtreecommitdiff
path: root/src/config.in
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-12-26 10:41:25 +0000
committerRichard M. Stallman <rms@gnu.org>1997-12-26 10:41:25 +0000
commitd2e9bfae622a0e2411632a8fbec4ddc49c5812eb (patch)
tree070587aaa2deaf7bc5e56a90a6df832b2c8ae65f /src/config.in
parentdd9cda060f2186a86728ef59909aa7f368e5be34 (diff)
downloademacs-d2e9bfae622a0e2411632a8fbec4ddc49c5812eb.tar.gz
(HAVE_STRING_H): Add #undef.
[HAVE_STRING_H]: Include string.h.
Diffstat (limited to 'src/config.in')
-rw-r--r--src/config.in6
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. */
#ifndef EMACS_CONFIG_H
#define EMACS_CONFIG_H
-
/* These are all defined in the top-level Makefile by configure.
They're here only for reference. */
@@ -131,6 +130,7 @@ Boston, MA 02111-1307, USA. */
#undef HAVE_SYS_SYSTEMINFO_H
#undef HAVE_TERMIOS_H
#undef HAVE_LIMITS_H
+#undef HAVE_STRING_H
#undef STDC_HEADERS
#undef TIME_WITH_SYS_TIME
@@ -404,3 +404,7 @@ extern char *getenv ();
#ifndef BITS_PER_LONG
#define BITS_PER_LONG 32
#endif
+
+#ifdef HAVE_STRING_H
+#include "string.h"
+#endif