Update of /cvsroot/plib/plib/src/util
In directory sc8-pr-cvs1:/tmp/cvs-serv26460/util
Modified Files:
ul.h
Log Message:
Patches by Martin Spott <Mar...@un...> to fix compilation on Solaris systems.
Index: ul.h
===================================================================
RCS file: /cvsroot/plib/plib/src/util/ul.h,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- ul.h 4 Jan 2003 02:55:56 -0000 1.60
+++ ul.h 4 Jul 2003 13:50:56 -0000 1.61
@@ -80,7 +80,7 @@
#define UL_IRIX 1
-#elif defined(SOLARIS)
+#elif defined(SOLARIS) || defined(sun)
#define UL_SOLARIS 1
@@ -121,7 +121,7 @@
#include <unistd.h>
#endif
-#if defined(UL_LINUX) || defined(UL_BSD) || defined(UL_IRIX)
+#if defined(UL_LINUX) || defined(UL_BSD) || defined(UL_IRIX) || defined(UL_SOLARIS)
#include <unistd.h>
#include <dlfcn.h>
#include <fcntl.h>
|