You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by co...@apache.org on 2010/01/04 02:35:08 UTC

svn commit: r895523 - /apr/apr/branches/1.5.x/test/testdso.c

Author: covener
Date: Mon Jan  4 01:35:07 2010
New Revision: 895523

URL: http://svn.apache.org/viewvc?rev=895523&view=rev
Log:
backport r888669 from trunk:

let HP-UX on IA64 fall through to the default unix case, using .so instead of .sl.
  http://docs.hp.com/en/B2355-90968/linkerdifferencesiapa.htm


Modified:
    apr/apr/branches/1.5.x/test/testdso.c

Modified: apr/apr/branches/1.5.x/test/testdso.c
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.5.x/test/testdso.c?rev=895523&r1=895522&r2=895523&view=diff
==============================================================================
--- apr/apr/branches/1.5.x/test/testdso.c (original)
+++ apr/apr/branches/1.5.x/test/testdso.c Mon Jan  4 01:35:07 2010
@@ -38,7 +38,7 @@
 #elif defined(DARWIN)
 # define MOD_NAME ".libs/mod_test.so" 
 # define LIB_NAME ".libs/libmod_test.dylib" 
-#elif defined(__hpux__) || defined(__hpux)
+#elif (defined(__hpux__) || defined(__hpux)) && !defined(__ia64)
 # define MOD_NAME ".libs/mod_test.sl"
 # define LIB_NAME ".libs/libmod_test.sl"
 #elif defined(_AIX) || defined(__bsdi__)