* com_err.c, com_err.h: Use HAVE_STDARG_H, not STDARG_PROTOTYPES.
authorJohn Gilmore <gnu@toad.com>
Sun, 19 Mar 1995 02:48:33 +0000 (02:48 +0000)
committerJohn Gilmore <gnu@toad.com>
Sun, 19 Mar 1995 02:48:33 +0000 (02:48 +0000)
* configure.in:  Use AC_CHECK_HEADERS(stdarg.h), not CHECK_STDARG.

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

src/util/et/ChangeLog
src/util/et/com_err.c
src/util/et/com_err.h
src/util/et/configure.in

index 7815a0ef25ac9f98e603f561be63672e7943a07d..4c4966ff5124a9e47de7460dec044e729d597c0b 100644 (file)
@@ -1,3 +1,8 @@
+Sat Mar 18 18:44:03 1995  John Gilmore  (gnu at toad.com)
+
+       * com_err.c, com_err.h:  Use HAVE_STDARG_H, not STDARG_PROTOTYPES.
+       * configure.in:  Use AC_CHECK_HEADERS(stdarg.h), not CHECK_STDARG.
+
 Wed Mar 16 17:30:00 1995 Keith Vetter (keithv@fusion.com)
 
        * com_err.h: problem with this file needing k5-config for windows
index 01c7cc5f15d67cf8ec5174fd69304536c7229d53..b36efe3ab87c3796d83cd915068222b450dea2db 100644 (file)
@@ -8,7 +8,7 @@
 #include <string.h>
 #include "mit-sipb-copyright.h"
 
-#if defined(__STDC__) || defined(STDARG_PROTOTYPES)
+#ifdef HAVE_STDARG_H
 #include <stdarg.h>
 #else
 #include <varargs.h>
index 0ff858034a7a6fbd5600f26937b006fd9155c5e0..9d5a92d15a628b4ee934e2125d70fff257fff1e4 100644 (file)
@@ -4,20 +4,22 @@
  * Copyright 1988, Student Information Processing Board of the
  * Massachusetts Institute of Technology.
  *
+ * Copyright 1995 by Cygnus Support.
+ *
  * For copyright and distribution info, see the documentation supplied
  * with this package.
  */
 
 #ifndef __COM_ERR_H
 
-#ifndef STDARG_PROTOTYPES
-/* Imake needs this -- oh well */
+#ifndef HAVE_STDARG_H
+/* End-user programs may need this -- oh well */
 #ifdef __STDC__
-#define STDARG_PROTOTYPES
+#define HAVE_STDARG_H 1
 #endif
 #endif
 
-#ifdef STDARG_PROTOTYPES
+#ifdef HAVE_STDARG_H
 #include <stdarg.h>
 #else
 #include <varargs.h>
index c74139a035869a3a009917b001f8ecf0b76f5335..04a72e0aa1af7b493fcac08725216c19aefda04c 100644 (file)
@@ -21,7 +21,7 @@ if test $krb5_cv_decl_perror = yes; then
        AC_DEFINE(HDR_HAS_PERROR)
 fi
 dnl
-CHECK_STDARG
+AC_CHECK_HEADERS(stdarg.h)
 AC_HAVE_HEADERS(stdlib.h)
 CopySrcHeader(com_err.h,$(BUILDTOP)/include)
 V5_AC_OUTPUT_MAKEFILE