You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@apr.apache.org by David Jones <os...@gmail.com> on 2007/10/03 14:43:35 UTC

PATCH: apr/test/testdso.c needs change to MOD_NAME define

The MOD_NAME define in testdso.c needs to be changed to support zOS. We need
to follow the same naming as BEOS (i.e. mod_test.so) instead of
the default unix name (.libs/mod_test.so)



Index: test/testdso.c
===================================================================
--- test/testdso.c      (revision 579232)
+++ test/testdso.c      (working copy)
@@ -31,7 +31,7 @@

 #ifdef NETWARE
 # define MOD_NAME "mod_test.nlm"
-#elif defined(BEOS)
+#elif defined(BEOS) || defined(__MVS__)
 # define MOD_NAME "mod_test.so"
 #elif defined(WIN32)
 # define MOD_NAME "mod_test.dll"

Re: PATCH: apr/test/testdso.c needs change to MOD_NAME define

Posted by Jeff Trawick <tr...@gmail.com>.
On 10/3/07, David Jones <os...@gmail.com> wrote:
> The MOD_NAME define in testdso.c needs to be changed to support zOS.

committed, thanks, etc.