* internal.h: #ifdef NEED_SYS_ERRLIST -> #ifdef
authorTom Yu <tlyu@mit.edu>
Sat, 31 Aug 1996 03:35:09 +0000 (03:35 +0000)
committerTom Yu <tlyu@mit.edu>
Sat, 31 Aug 1996 03:35:09 +0000 (03:35 +0000)
SYS_ERRLIST_DECLARED for sanity's sake.

* error_message.c: cpp symbol police: HAS_FOO -> HAVE_FOO

* configure.in: Fix up check for strerror; use autoconf
conventions

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

src/util/et/ChangeLog
src/util/et/configure.in
src/util/et/error_message.c
src/util/et/internal.h

index 233b5b9d7ae397b74d832f4c80ddd8b5a18961e5..a08671018ced6d36a44d00415bfe60caf92e0ff9 100644 (file)
@@ -1,3 +1,13 @@
+Fri Aug 30 22:55:14 1996  Tom Yu  <tlyu@mit.edu>
+
+       * internal.h: #ifdef NEED_SYS_ERRLIST -> #ifdef
+               SYS_ERRLIST_DECLARED for sanity's sake.
+
+       * error_message.c: cpp symbol police: HAS_FOO -> HAVE_FOO
+
+       * configure.in: Fix up check for strerror; use autoconf
+               conventions
+
 Wed Jun 12 12:10:59 1996  Theodore Ts'o  <tytso@rsts-11.mit.edu>
 
        * error_table.h: For Win32, define away FAR and NEAR.
index 090956566e519ba1508755ef8b4316feb2a85f73..7b0cf00f7000bee040d426cabf8262e6e08ddbc5 100644 (file)
@@ -20,7 +20,7 @@ if test $krb5_cv_decl_perror = yes; then
        AC_DEFINE(HDR_HAS_PERROR)
 fi
 dnl
-AC_FUNC_CHECK(strerror,AC_DEFINE(HAS_STRERROR))
+AC_CHECK_FUNCS(strerror)
 AC_HEADER_STDARG
 AC_HAVE_HEADERS(stdlib.h)
 CopySrcHeader(com_err.h,$(BUILDTOP)/include)
index 88997b91a7741d2c44f2cbb371ac91dab5be458a..a3c0578247113e014e36989136c5a25926e552dc 100644 (file)
@@ -39,7 +39,7 @@ long code;
     char *cp;
 
 #if defined(_MSDOS) || defined(_WIN32)
-#define HAS_STRERROR 1
+#define HAVE_STRERROR 1
 /*
 ** Winsock defines errors in the range 10000-10100. These are equivalent
 ** to 10000 plus the Berkeley error numbers.
@@ -58,21 +58,21 @@ long code;
     offset = (int) l_offset;
     table_num = code - l_offset;
     if (!table_num) {
-#ifdef HAS_STRERROR
+#ifdef HAVE_STRERROR
        cp = strerror(offset);
        if (cp)
            return cp;
        goto oops;
 #else
-#ifdef HAS_SYSERRLIST
+#ifdef HAVE_SYS_ERRLIST
         if (offset < sys_nerr)
            return(sys_errlist[offset]);
        else
            goto oops;
 #else
                goto oops;
-#endif /* HAS_SYSERRLIST */
-#endif /* HAS_STRERROR */
+#endif /* HAVE_SYS_ERRLIST */
+#endif /* HAVE_STRERROR */
     }
     for (et = _et_list; et; et = et->next) {
        if (et->table->base == table_num) {
index f0c0e572343f5da5a393bed9b041e857f413083d..c786a33a58404bc90b67e74ffbc36e9bb294db4c 100644 (file)
@@ -5,7 +5,7 @@
 
 #include <errno.h>
 
-#ifdef NEED_SYS_ERRLIST
+#ifndef SYS_ERRLIST_DECLARED
 extern char const * const sys_errlist[];
 extern const int sys_nerr;
 #endif