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

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

src/appl/telnet/telnetd/ChangeLog
src/appl/telnet/telnetd/configure.in
src/appl/telnet/telnetd/defs.h

index b873243b3e9bc0dee073b95d57c9899a3cfe7537..9203e16fe152989b8a6abbee24493607608f06bd 100644 (file)
@@ -1,3 +1,9 @@
+Tue Jun 20 14:25:01 1995  Tom Yu  (tlyu@dragons-lair)
+
+       * defs.h: NO_STRING_H -> HAVE_STRING_H
+
+       * configure.in: add test for string.h
+
 Thu Jun 15 17:43:21 EDT 1995   Paul Park       (pjpark@mit.edu)
        * Makefile.in - Change explicit library names to -l<lib> form, and
                change target link line to use $(LD) and associated flags.
index 498f12f6b0c358d3b86cc379dacdee9391d00aee..83a111927835acf295eb8f4449b1b6e66ca7aca4 100644 (file)
@@ -19,6 +19,7 @@ if test -z "$ac_sysv_termio"; then
 fi
 fi
 AC_HEADER_TIME
+AC_CHECK_HEADERS(string.h)
 AC_CHECK_HEADERS(sys/time.h sys/tty.h)
 AC_HAVE_FUNCS(vhangup)
 AC_FUNC_CHECK(grantpt,AC_DEFINE(STREAMSPTY))
index 8c47427fc6436057c50d1a62c377f7e792bb32d6..b876269f76edc457efa860cb96ae29955c851aa6 100644 (file)
 #define        LOG_ODELAY      0
 #endif
 #include <ctype.h>
-#ifndef NO_STRING_H
-#include <string.h>
-#else
+#ifndef HAVE_STRING_H
 #include <strings.h>
+#else
+#include <string.h>
 #endif
 
 #ifndef        USE_TERMIO