From 2a5776995a96c5700c6ee6bda628f1f05d7f019f Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Fri, 19 Mar 1999 19:43:28 +0000 Subject: [PATCH] only include strings.h if there is no string.h --- config.h.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.h.in b/config.h.in index f9f3f2403..922ccd9b5 100644 --- a/config.h.in +++ b/config.h.in @@ -281,10 +281,10 @@ /* Define if you have the header file. */ #undef HAVE_STRING_H -/* Define if you have the header file. */ -#if !defined(__convex__) && !defined(convex) +/* Define if you have the header file but no . */ +#ifndef HAVE_STRING_H #undef HAVE_STRINGS_H -#endif /* convex */ +#endif /* !HAVE_STRING_H */ /* Define your flavor of dir entry header file. */ #undef HAVE_DIRENT_H -- 2.50.1