summaryrefslogtreecommitdiff
path: root/dso
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2003-02-16 10:00:08 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2003-02-16 10:00:08 +0000
commita656805790173a2749f0e55d12f7a5b2544e0c3a (patch)
treeaecc72c82b039a3ff253f1e28c6669dc56ae36db /dso
parentf99813376508df05b3692939fa60761a1c18af63 (diff)
downloadapr-a656805790173a2749f0e55d12f7a5b2544e0c3a.tar.gz
After some less than considerable discussion on-list, it seems like there
are no compelling arguments to retain the 'BIND_NOSTART' option on HP/UX, and several compelling reasons to drop it, including c++ static creators and possibly even some cases of c static initialization. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64357 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso')
-rw-r--r--dso/unix/dso.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dso/unix/dso.c b/dso/unix/dso.c
index 69875f46a..f78fcf639 100644
--- a/dso/unix/dso.c
+++ b/dso/unix/dso.c
@@ -119,7 +119,7 @@ APR_DECLARE(apr_status_t) apr_dso_load(apr_dso_handle_t **res_handle,
const char *path, apr_pool_t *pool)
{
#if defined(DSO_USE_SHL)
- shl_t os_handle = shl_load(path, BIND_IMMEDIATE|BIND_NOSTART, 0L);
+ shl_t os_handle = shl_load(path, BIND_IMMEDIATE, 0L);
#elif defined(DSO_USE_DYLD)
NSObjectFileImage image;