summaryrefslogtreecommitdiff
path: root/dso
diff options
context:
space:
mode:
authorBradley Nicholes <bnicholes@apache.org>2001-11-13 21:15:33 +0000
committerBradley Nicholes <bnicholes@apache.org>2001-11-13 21:15:33 +0000
commit3e17c9e1bb10c0f7c48450183c53bcdfc3597534 (patch)
treebae045184d1d23cf97764ad5f44720c1ff6bbbe0 /dso
parent6fac6ecbc1bba446b217c5e51cb976611a90e40f (diff)
downloadapr-3e17c9e1bb10c0f7c48450183c53bcdfc3597534.tar.gz
Removed NetWare from the DSO #ifdef confusion
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@62514 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso')
-rw-r--r--dso/unix/dso.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/dso/unix/dso.c b/dso/unix/dso.c
index ab8fdc55d..50d3bbe7b 100644
--- a/dso/unix/dso.c
+++ b/dso/unix/dso.c
@@ -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_DECLARE(apr_status_t) apr_dso_load(apr_dso_handle_t **res_handle,
apr_pool_cleanup_register(pool, *res_handle, dso_cleanup, apr_pool_cleanup_null);
-#ifdef NETWARE
- setautounloadflag(path);
-#endif
-
return APR_SUCCESS;
}
@@ -256,14 +245,4 @@ APR_DECLARE(const char *) apr_dso_error(apr_dso_handle_t *dso, char *buffer,
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