* configure.in: add test for string.h
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6102
dc483132-0cff-0310-8789-
dd5450dbe970
+Tue Jun 20 14:10:26 1995 Tom Yu (tlyu@dragons-lair)
+
+ * externs.h: NO_STRING_H -> HAVE_STRING_H
+
+ * configure.in: add test for string.h
+
Fri Jun 16 09:18:42 1995 Tom Yu (tlyu@dragons-lair)
* Makefile.in: "install::" to shut up gmake
CONFIG_RULES
AC_PROG_INSTALL
AC_VFORK
+AC_CHECK_HEADERS(string.h)
AC_HAVE_HEADERS(unistd.h sys/select.h stdlib.h)
AC_CHECK_LIB(termcap,main,AC_DEFINE(TERMCAP)
LIBS="$LIBS -ltermcap")
extern char *malloc(), *calloc(), *realloc();
#endif
-#ifndef NO_STRING_H
-#include <string.h>
-#else
+#ifndef HAVE_STRING_H
#include <strings.h>
+#else
+#include <string.h>
#endif
#ifndef _POSIX_VDISABLE