From: Jeffrey Altman Date: Sat, 22 Sep 2007 04:54:13 +0000 (+0000) Subject: stdint.h should only be accessed if HAVE_STDINT_H defined X-Git-Tag: krb5-1.7-alpha1~867 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=74072b43797b81269ce2b4e4f8f86d07a0312052;p=krb5.git stdint.h should only be accessed if HAVE_STDINT_H defined stdint.h does not exist on Windows. Conditionally include it based upon HAVE_STDINT_H ticket: new git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19965 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/util/t_array.pm b/src/util/t_array.pm index 19b4c1863..ed319d60d 100644 --- a/src/util/t_array.pm +++ b/src/util/t_array.pm @@ -41,7 +41,9 @@ __DATA__ #include #include #include -#include +#ifdef HAVE_STDINT_H +# include +#endif struct __header { size_t allocated;