Dear cvs developers,

for cvs 1.11.19 and earlier, lib/xtime.h is included twice, which breaks
compiling on IRIX 5.3.
The following patch prevents this:

--- lib/xtime.h.orig    2005-03-01 15:53:11.000000000 +0100
+++ lib/xtime.h 2005-03-01 15:54:20.000000000 +0100
@@ -12,6 +12,9 @@
  * functions
  */
 
+#ifndef _XTIME_H_
+#define _XTIME_H_
+
 #ifdef vms
 # include <time.h>
 #else /* vms */
@@ -55,3 +58,5 @@
 # endif /* !defined(HAVE_FTIME) && !defined(HAVE_TIMEZONE) */
 
 #endif /* !vms */
+
+#endif /* !_XTIME_H_ */



-- 
Georg Schwarz    http://home.pages.de/~schwarz/
 [EMAIL PROTECTED]     +49 178 8545053


_______________________________________________
Bug-cvs mailing list
Bug-cvs@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-cvs

Reply via email to