Moin,

distcc CVS does not compile on FreeBSD 4-STABLE since the stdint.h header is 
not available on that platform.

The attached patch fixes this problem.

- Frerich

-- 
"If you fail to adjust your notion of fairness to the reality of the Universe, 
you will probably not be happy." - Paratima, of http://free-dc.org fame
Index: src/state.h
===================================================================
RCS file: /cvsroot/distcc/src/state.h,v
retrieving revision 1.10
diff -u -3 -p -r1.10 state.h
--- src/state.h	27 Sep 2003 13:13:48 -0000	1.10
+++ src/state.h	29 Sep 2003 06:10:13 -0000
@@ -23,7 +23,9 @@
 #ifndef _DISTCC_STATE_H
 #define _DISTCC_STATE_H
 
-#include <stdint.h>
+#ifdef HAVE_STDINT_H
+#  include <stdint.h>
+#endif
 
 #ifdef __cplusplus
 extern "C" {
__ 
distcc mailing list            http://distcc.samba.org/
To unsubscribe or change options: 
http://lists.samba.org/cgi-bin/mailman/listinfo/distcc

Reply via email to