bnicholes 01/08/28 07:37:14
Modified: test testdso.c
Log:
Added an #ifdef for NetWare to rename to loadable module to MOD_TEST.NLM.
This is only because NetWare expects the general purpose executibles to
be named with a .NLM extension.
Revision Changes Path
1.16 +4 -0 apr/test/testdso.c
Index: testdso.c
===================================================================
RCS file: /home/cvs/apr/test/testdso.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- testdso.c 2001/06/08 04:49:46 1.15
+++ testdso.c 2001/08/28 14:37:14 1.16
@@ -9,7 +9,11 @@
#include <unistd.h>
#endif
+#ifdef NETWARE
+#define LIB_NAME "mod_test.nlm"
+#else
#define LIB_NAME "mod_test.so"
+#endif
int main (int argc, char ** argv)
{