wrowe 2003/02/16 02:00:08
Modified: dso/unix dso.c
Log:
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.
Revision Changes Path
1.61 +1 -1 apr/dso/unix/dso.c
Index: dso.c
===================================================================
RCS file: /home/cvs/apr/dso/unix/dso.c,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- dso.c 6 Jan 2003 23:44:16 -0000 1.60
+++ dso.c 16 Feb 2003 10:00:08 -0000 1.61
@@ -119,7 +119,7 @@
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;