trawick 2003/05/28 11:24:13
Modified: test testdso.c Log: get testdso to work with the vendor's compiler on HP-UX, which defines a different symbol than gcc Revision Changes Path 1.39 +1 -1 apr/test/testdso.c Index: testdso.c =================================================================== RCS file: /home/cvs/apr/test/testdso.c,v retrieving revision 1.38 retrieving revision 1.39 diff -u -r1.38 -r1.39 --- testdso.c 16 Apr 2003 15:59:01 -0000 1.38 +++ testdso.c 28 May 2003 18:24:13 -0000 1.39 @@ -71,7 +71,7 @@ #elif defined(DARWIN) # define MOD_NAME ".libs/mod_test.so" # define LIB_NAME ".libs/libmod_test.dylib" -#elif defined(__hpux__) +#elif defined(__hpux__) || defined(__hpux) # define MOD_NAME ".libs/mod_test.sl" # define LIB_NAME ".libs/libmod_test.sl" #elif defined(_AIX) || defined(__bsdi__)
