[Plib-cvs] plib/src/util ul.h,1.62,1.63
Brought to you by:
sjbaker
From: Steve B. <sj...@us...> - 2004-02-25 15:46:51
|
Update of /cvsroot/plib/plib/src/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13982/plib/src/util Modified Files: ul.h Log Message: Fixed some compilation problems for AIX (and added UL_AIX). Fixed some warnings in ssgLoadMDL.cxx Index: ul.h =================================================================== RCS file: /cvsroot/plib/plib/src/util/ul.h,v retrieving revision 1.62 retrieving revision 1.63 diff -u -d -r1.62 -r1.63 --- ul.h 16 Feb 2004 02:26:29 -0000 1.62 +++ ul.h 25 Feb 2004 15:39:34 -0000 1.63 @@ -80,6 +80,10 @@ #define UL_IRIX 1 +#elif defined(_AIX) + +#define UL_AIX 1 + #elif defined(SOLARIS) || defined(sun) #define UL_SOLARIS 1 @@ -126,7 +130,7 @@ #define UL_CGL 1 #endif -#if defined(UL_LINUX) || defined(UL_BSD) || defined(UL_IRIX) || defined(UL_SOLARIS) +#if defined(UL_LINUX) || defined(UL_BSD) || defined(UL_IRIX) || defined(UL_SOLARIS) || defined(UL_AIX) #include <unistd.h> #include <dlfcn.h> #include <fcntl.h> |