From 26003cc0ac025cee891deb27a7b6ecce7250ea88 Mon Sep 17 00:00:00 2001 From: Keith Vetter Date: Wed, 22 Mar 1995 22:38:05 +0000 Subject: [PATCH] Fixed problem in com_err.c due to the fact that the PC doesn't use autoconf and com_err.c doesn't include k5-config.h. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5199 dc483132-0cff-0310-8789-dd5450dbe970 --- src/util/et/ChangeLog | 6 ++++++ src/util/et/com_err.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/util/et/ChangeLog b/src/util/et/ChangeLog index 6a514a2fa..bf6bfa038 100644 --- a/src/util/et/ChangeLog +++ b/src/util/et/ChangeLog @@ -1,3 +1,9 @@ +Wed Mar 22 11:34:09 1995 Keith Vetter (keithv@fusion.com) + + * com_err.c: added _WINDOWS equivalent condition to HAVE_STDARG_H + since windows fakes autoconf by defining such constants in + k5-config.h which isn't included for this file. + Thu Mar 16 19:57:20 1995 Keith Vetter (keithv@fusion.com) * com_err.c: added missing INTERFACE on a prototype. diff --git a/src/util/et/com_err.c b/src/util/et/com_err.c index b4487ab4f..4ed2472a6 100644 --- a/src/util/et/com_err.c +++ b/src/util/et/com_err.c @@ -8,7 +8,7 @@ #include #include "mit-sipb-copyright.h" -#ifdef HAVE_STDARG_H +#if defined(HAVE_STDARG_H) || defined(_WINDOWS) #include #else #include -- 2.26.2