bnicholes 01/11/13 13:15:33
Modified: dso/unix dso.c
Log:
Removed NetWare from the DSO #ifdef confusion
Revision Changes Path
1.44 +0 -21 apr/dso/unix/dso.c
Index: dso.c
===================================================================
RCS file: /home/cvs/apr/dso/unix/dso.c,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- dso.c 2001/11/12 17:42:56 1.43
+++ dso.c 2001/11/13 21:15:33 1.44
@@ -72,13 +72,6 @@
#include <string.h> /* for strerror() on HP-UX */
#endif
-#ifdef NETWARE
-#include <library.h>
-#include <unistd.h>
-
-static int setautounloadflag (const char *path);
-#endif
-
APR_DECLARE(apr_status_t) apr_os_dso_handle_put(apr_dso_handle_t **aprdso,
apr_os_dso_handle_t osdso,
apr_pool_t *pool)
@@ -171,10 +164,6 @@
apr_pool_cleanup_register(pool, *res_handle, dso_cleanup,
apr_pool_cleanup_null);
-#ifdef NETWARE
- setautounloadflag(path);
-#endif
-
return APR_SUCCESS;
}
@@ -255,15 +244,5 @@
}
return "No Error";
}
-
-#ifdef NETWARE
-static int setautounloadflag (const char *path)
-{
- char name[256];
-
- deconstruct(path, NULL, NULL, NULL, name, NULL, NULL, PATH_UNDEF);
- SetAutoUnloadFlag(findnlmhandle(name, getaddressspace()));
-}
-#endif
#endif