* externs.h: NO_STRING_H -> HAVE_STRING_H
authorTom Yu <tlyu@mit.edu>
Tue, 20 Jun 1995 19:07:24 +0000 (19:07 +0000)
committerTom Yu <tlyu@mit.edu>
Tue, 20 Jun 1995 19:07:24 +0000 (19:07 +0000)
* configure.in: add test for string.h

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6102 dc483132-0cff-0310-8789-dd5450dbe970

src/appl/telnet/telnet/ChangeLog
src/appl/telnet/telnet/configure.in
src/appl/telnet/telnet/externs.h

index d2ed26b244eedb52a9067fa43c9a8c9584b05d14..589c388b9dd391845d24ce17aafb408fc6ef2608 100644 (file)
@@ -1,3 +1,9 @@
+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
index 3bfbe660f5f76f4c03c283eacf9669d11d0daf22..e3ba0cc5278cbe5edd8a4e7a8310a9ac30c02891 100644 (file)
@@ -2,6 +2,7 @@ AC_INIT(telnet.c)
 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")
index 8e66fdf6e0336843906d995d4bc3460f9bed5790..3ebf1dd160d470920266829df036e1fb9fc1dc25 100644 (file)
@@ -92,10 +92,10 @@ typedef unsigned char cc_t;
 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