dtrt.
* configure.in: added missing tests for string.h and stdlib.h
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6099
dc483132-0cff-0310-8789-
dd5450dbe970
+Tue Jun 20 13:09:51 1995 Tom Yu (tlyu@dragons-lair)
+
+ * movemail.c: USE_STRING_H -> HAVE_STRING_H; fix HAVE_STLIB_H to
+ dtrt.
+ * configure.in: added missing tests for string.h and stdlib.h
Thu Jun 15 17:37:08 EDT 1995 Paul Park (pjpark@mit.edu)
* Makefile.in - Change explicit library names to -l<lib> form, and
CONFIG_RULES
AC_PROG_INSTALL
CHECK_FCNTL
-AC_HAVE_HEADERS(unistd.h)
+AC_HAVE_HEADERS(stdlib.h string.h unistd.h)
V5_USE_SHARED_LIB
V5_AC_OUTPUT_MAKEFILE
#include <sys/locking.h>
#endif
-#ifdef HAS_STDLIB_H
+#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#else
-#ifdef __STDC__
-#ifdef NO_STDLIB_H
-#include <fake-stdlib.h>
-#else
-#include <stdlib.h>
-#endif /* NO_STDLIB_H */
#else
extern char *malloc(), *realloc(), *calloc();
extern char *getenv();
-#endif /* ! __STDC__ */
-#endif /* HAS_STDLIB_H */
+#endif /* HAVE_STDLIB_H */
-#ifdef USE_STRING_H
+#ifdef HAVE_STRING_H
#include <string.h>
#else
#include <strings.h>