* configure.in: Use AC_HAVE_HEADER rather than AC_HEADER_CHECK.
authorJohn Gilmore <gnu@toad.com>
Fri, 17 Feb 1995 04:13:43 +0000 (04:13 +0000)
committerJohn Gilmore <gnu@toad.com>
Fri, 17 Feb 1995 04:13:43 +0000 (04:13 +0000)
(Fixes resulting #define names to HAVE_XXX rather than HAS_XXX,
which is not only consistent but also matches what's in sysincl.h.)

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

src/include/krb5/ChangeLog
src/include/krb5/configure.in

index 3665bda5cdbb92ffa2a1f7a613e967799ea35285..3579eecd12bfdb3d0370b315e3f08b7a6743c7f7 100644 (file)
@@ -1,3 +1,9 @@
+Thu Feb 16 20:12:23 1995  John Gilmore  (gnu at toad.com)
+
+       * configure.in:  Use AC_HAVE_HEADER rather than AC_HEADER_CHECK.
+       (Fixes resulting #define names to HAVE_XXX rather than HAS_XXX,
+       which is not only consistent but also matches what's in sysincl.h.)
+
 Mon Feb 6 19:42:7 1995 Keith Vetter (keithv@fusion.com)
 
         * configure.in: added header checks for sys/param.h and sys/file.h.
index 2ae961c7116ee1b19ff36b12a3f5c21df5f2d4c9..a119f9ee561ebaae303a93db79e8ffdb54bd2685 100644 (file)
@@ -42,8 +42,8 @@ dnl
 dnl
 AC_HEADER_CHECK(string.h,AC_DEFINE(USE_STRING_H))
 AC_HEADER_CHECK(stdlib.h,AC_DEFINE(HAS_STDLIB_H),AC_DEFINE(NO_STDLIB_H))
-AC_HEADER_CHECK(sys/file.h,AC_DEFINE(HAS_SYS_FILE_H))
-AC_HEADER_CHECK(sys/param.h,AC_DEFINE(HAS_SYS_PARAM_H))
+AC_HAVE_HEADERS(sys/file.h)
+AC_HAVE_HEADERS(sys/param.h)
 CHECK_STDARG
 
 AC_FUNC_CHECK([setvbuf],AC_DEFINE(HAS_SETVBUF))