bug-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

lib/xtime.h is included twice


From: Georg Schwarz
Subject: lib/xtime.h is included twice
Date: Tue, 1 Mar 2005 16:02:09 +0100
User-agent: MacSOUP/D-2.7 (Mac OS 8.1)

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/
 georg.schwarz@freenet.de     +49 178 8545053




reply via email to

[Prev in Thread] Current Thread [Next in Thread]