diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2002-06-07 03:45:35 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2002-06-07 03:45:35 +0000 |
commit | ff121e423efd3c611e74f00bc681230532d543d7 (patch) | |
tree | b699b77cb7d8375af148ae64ef32410f3fa82e93 /lib/libcrypto/dso | |
parent | d638bbbd4d30397af50fadfd5f2bb4bb609f04f0 (diff) |
Merge OpenSSL 0.9.7-stable-20020605,
correctly autogenerate obj_mac.h
Diffstat (limited to 'lib/libcrypto/dso')
-rw-r--r-- | lib/libcrypto/dso/dso_dlfcn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libcrypto/dso/dso_dlfcn.c b/lib/libcrypto/dso/dso_dlfcn.c index 1a19164d3b1..906b4703de7 100644 --- a/lib/libcrypto/dso/dso_dlfcn.c +++ b/lib/libcrypto/dso/dso_dlfcn.c @@ -114,7 +114,7 @@ DSO_METHOD *DSO_METHOD_dlfcn(void) * as we don't have autoconf yet, I'm implementing a hack that could * be hacked further relatively easily to deal with cases as we find * them. Initially this is to cope with OpenBSD. */ -#ifdef __OpenBSD__ +#if defined(__OpenBSD__) || defined(__NetBSD__) # ifdef DL_LAZY # define DLOPEN_FLAG DL_LAZY # else |