* configure.in: Change AC_CONST to AC_C_CONST, AC_HEADER_EGREP to
authorEzra Peisach <epeisach@mit.edu>
Wed, 1 Nov 2000 14:39:30 +0000 (14:39 +0000)
committerEzra Peisach <epeisach@mit.edu>
Wed, 1 Nov 2000 14:39:30 +0000 (14:39 +0000)
        AC_EGREP_HEADER, AC_HAVE_HEADERS to AC_CHECK_HEADERS. Updates to
        autoconf 2 namespace.

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

src/util/et/ChangeLog
src/util/et/configure.in

index 16ed99267c80d067204c67e2a43ea31fdf121cee..9fa415fb6486df80c95305a0919ebff0bc3329ca 100644 (file)
@@ -1,3 +1,9 @@
+2000-11-01  Ezra Peisach  <epeisach@mit.edu>
+
+       * configure.in: Change AC_CONST to AC_C_CONST, AC_HEADER_EGREP to
+       AC_EGREP_HEADER, AC_HAVE_HEADERS to AC_CHECK_HEADERS. Updates to
+       autoconf 2 namespace.
+
 2000-07-24  Ezra Peisach  <epeisach@mit.edu>
 
        * et_c.awk: Actually define NOARGS as needed. Add prototype for
index 43c679ffdc91d9795339c73202e198955650746e..036f55f88acf3d14cea1b0e7153636ff4f287d3a 100644 (file)
@@ -1,6 +1,6 @@
 AC_INIT(error_table.y)
 CONFIG_RULES
-AC_CONST
+AC_C_CONST
 AC_PROG_LEX
 AC_PROG_YACC
 AC_PROG_AWK
@@ -13,7 +13,7 @@ dnl
 dnl Fancy caching of perror result...
 AC_MSG_CHECKING(for perror declaration)
 AC_CACHE_VAL(krb5_cv_decl_perror,
-[AC_HEADER_EGREP(perror, errno.h, 
+[AC_EGREP_HEADER(perror, errno.h, 
   krb5_cv_decl_perror=yes, krb5_cv_decl_perror=no)])dnl
 AC_MSG_RESULT($krb5_cv_decl_perror)
 if test $krb5_cv_decl_perror = yes; then
@@ -22,7 +22,7 @@ fi
 dnl
 AC_CHECK_FUNCS(strerror)
 AC_HEADER_STDARG
-AC_HAVE_HEADERS(stdlib.h)
+AC_CHECK_HEADERS(stdlib.h)
 KRB5_BUILD_LIBOBJS
 KRB5_BUILD_LIBRARY
 V5_AC_OUTPUT_MAKEFILE