svn commit: samba r8312 - in branches/SAMBA_4_0/source/heimdal_build: .

tridge at samba.org tridge at samba.org
Mon Jul 11 04:10:32 GMT 2005


Author: tridge
Date: 2005-07-11 04:10:32 +0000 (Mon, 11 Jul 2005)
New Revision: 8312

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=8312

Log:
fixed some heimdal header checks from watching the build farm failures

when we added heimdal we dropped from 10 passing builds to 1, but hopefully
that will go up with a bit of effort

Modified:
   branches/SAMBA_4_0/source/heimdal_build/config.m4
   branches/SAMBA_4_0/source/heimdal_build/krb5-types.h


Changeset:
Modified: branches/SAMBA_4_0/source/heimdal_build/config.m4
===================================================================
--- branches/SAMBA_4_0/source/heimdal_build/config.m4	2005-07-11 04:01:22 UTC (rev 8311)
+++ branches/SAMBA_4_0/source/heimdal_build/config.m4	2005-07-11 04:10:32 UTC (rev 8312)
@@ -1,5 +1,5 @@
-AC_CHECK_HEADERS(sys/file.h signal.h errno.h crypt.h curses.h sys/bittypes.h)
-AC_CHECK_HEADERS(sys/stropts.h sys/timeb.h sys/times.h sys/uio.h sys/un.h)
+AC_CHECK_HEADERS(sys/file.h signal.h errno.h crypt.h curses.h sys/bitypes.h)
+AC_CHECK_HEADERS(sys/stropts.h sys/timeb.h sys/times.h sys/uio.h sys/un.h inttypes.h)
 AC_CHECK_HEADERS(sys/utsname.h termcap.h term.h timezone.h time.h ttyname.h netdb.h)
 
 AC_CHECK_FUNCS(setitimer uname umask unsetenv socket sendmsg putenv atexit strsep)

Modified: branches/SAMBA_4_0/source/heimdal_build/krb5-types.h
===================================================================
--- branches/SAMBA_4_0/source/heimdal_build/krb5-types.h	2005-07-11 04:01:22 UTC (rev 8311)
+++ branches/SAMBA_4_0/source/heimdal_build/krb5-types.h	2005-07-11 04:10:32 UTC (rev 8312)
@@ -4,9 +4,15 @@
 #ifndef __krb5_types_h__
 #define __krb5_types_h__
 
+#if HAVE_INTTYPES_H
 #include <inttypes.h>
+#endif
+#if HAVE_SYS_TYPES_H
 #include <sys/types.h>
+#endif
+#if HAVE_SYS_BITYPES_H
 #include <sys/bitypes.h>
+#endif
 #include <sys/socket.h>
 
 



More information about the samba-cvs mailing list