[Plib-cvs] plib/src/util ul.h,1.56,1.57 ulList.cxx,1.6,1.7
Brought to you by:
sjbaker
From: Steve B. <sj...@us...> - 2002-11-30 00:41:53
|
Update of /cvsroot/plib/plib/src/util In directory sc8-pr-cvs1:/tmp/cvs-serv1232/plib/src/util Modified Files: ul.h ulList.cxx Log Message: Cleared up some compile errors...replaced more ad-hoc ifdef's with UL_whatever tokens. Index: ul.h =================================================================== RCS file: /cvsroot/plib/plib/src/util/ul.h,v retrieving revision 1.56 retrieving revision 1.57 diff -u -d -r1.56 -r1.57 --- ul.h 29 Nov 2002 19:39:48 -0000 1.56 +++ ul.h 30 Nov 2002 00:41:50 -0000 1.57 @@ -70,11 +70,19 @@ #elif defined(__APPLE__) -#define UL_MAX_OSX 1 +#define UL_MAC_OSX 1 #elif defined(__linux__) #define UL_LINUX 1 + +#elif defined(__sgi) + +#define UL_IRIX 1 + +#elif defined(SOLARIS) + +#define UL_SOLARIS 1 #elif (defined(__unix__) || defined(unix)) && !defined(USG) Index: ulList.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/util/ulList.cxx,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- ulList.cxx 26 Oct 2002 13:52:13 -0000 1.6 +++ ulList.cxx 30 Nov 2002 00:41:50 -0000 1.7 @@ -22,14 +22,8 @@ */ -#include <stdio.h> -#include <stdlib.h> -#if defined(WIN32) -#include <windows.h> -#include <mmsystem.h> -#endif - #include "ul.h" + ulList::ulList ( int init ) { |