Update of /cvsroot/monetdb/MonetDB5/src/mal
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv15872/MonetDB5/src/mal

Modified Files:
      Tag: MonetDB_5-4
        mal_profiler.mx 
Log Message:

on Solaris, macro OSVER is most probably system defined;
hence, we should not (have) rename(d) it to SYSTVER;
switching back to OSVER
(and extending "#if ... OSVER < 560" to "#if ... defined(OSVER) && OSVER < 560")


Index: mal_profiler.mx
===================================================================
RCS file: /cvsroot/monetdb/MonetDB5/src/mal/mal_profiler.mx,v
retrieving revision 1.102.2.4
retrieving revision 1.102.2.5
diff -u -d -r1.102.2.4 -r1.102.2.5
--- mal_profiler.mx     11 Feb 2008 11:25:33 -0000      1.102.2.4
+++ mal_profiler.mx     11 Feb 2008 12:00:18 -0000      1.102.2.5
@@ -169,7 +169,7 @@
 # include <sys/times.h>
 #endif
 
-#if defined(SOLARIS) && SYSTVER < 560
+#if defined(SOLARIS) && defined(OSVER) && OSVER < 560
 #include "/usr/ucbinclude/sys/rusage.h"
 #include "/usr/ucbinclude/sys/resource.h"
 #endif


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to