svn commit: samba r18432 - in branches/SAMBA_4_0/source/lib/replace: .

tridge at samba.org tridge at samba.org
Tue Sep 12 18:45:06 GMT 2006


Author: tridge
Date: 2006-09-12 18:45:05 +0000 (Tue, 12 Sep 2006)
New Revision: 18432

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

Log:

ensure roken doesn't try to include both inttypes.h and stdint.h. The
two conflict on irix.

Modified:
   branches/SAMBA_4_0/source/lib/replace/replace.h


Changeset:
Modified: branches/SAMBA_4_0/source/lib/replace/replace.h
===================================================================
--- branches/SAMBA_4_0/source/lib/replace/replace.h	2006-09-12 18:38:12 UTC (rev 18431)
+++ branches/SAMBA_4_0/source/lib/replace/replace.h	2006-09-12 18:45:05 UTC (rev 18432)
@@ -53,6 +53,9 @@
 
 #ifdef HAVE_STDINT_H
 #include <stdint.h>
+/* force off HAVE_INTTYPES_H so that roken doesn't try to include both,
+   which causes a warning storm on irix */
+#undef HAVE_INTTYPES_H
 #elif HAVE_INTTYPES_H
 #include <inttypes.h>
 #endif



More information about the samba-cvs mailing list