|
1 | 1 | /*-------------------------------------------------------------------------
|
2 | 2 | *
|
3 |
| - * port_protos.h |
4 |
| - * port-specific prototypes for NetBSD 1.0 |
5 |
| - * |
| 3 | + * Dynamic loader for OpenBSD |
6 | 4 | *
|
7 | 5 | * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
|
8 | 6 | * Portions Copyright (c) 1994, Regents of the University of California
|
9 | 7 | *
|
10 |
| - * $Id: openbsd.h,v 1.5 2001/05/15 16:55:27 petere Exp $ |
| 8 | + * $Id: openbsd.h,v 1.6 2001/06/20 18:33:31 petere Exp $ |
11 | 9 | *
|
12 | 10 | *-------------------------------------------------------------------------
|
13 | 11 | */
|
|
34 | 32 | * begin with an underscore is fairly tricky, and some versions of
|
35 | 33 | * NetBSD (like 1.0, and 1.0A pre June 1995) have no dlerror.)
|
36 | 34 | */
|
37 |
| -#definepg_dlopen(f) BSD44_derived_dlopen((f), RTLD_LAZY | RTLD_GLOBAL) |
| 35 | +#definepg_dlopen(f) BSD44_derived_dlopen((f), RTLD_LAZY) |
38 | 36 | #definepg_dlsym BSD44_derived_dlsym
|
39 | 37 | #definepg_dlclose BSD44_derived_dlclose
|
40 | 38 | #definepg_dlerror BSD44_derived_dlerror
|
|