summaryrefslogtreecommitdiffstats
path: root/crypto/dso/Makefile.in
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2016-03-22 13:35:03 -0400
committerRich Salz <rsalz@openssl.org>2016-03-22 13:35:03 -0400
commit38186bfd4e5be7f212d8e460420e081e0ad852e7 (patch)
tree136ce20d32a4ee06cb692bada686d8cad80f41dd /crypto/dso/Makefile.in
parent73decf5975ff1249c51baa0cb3956bb67fbd64dc (diff)
Have only one DSO_METHOD_openssl
Instead of have every DSO_METHOD_xxx in all platforms, ensure that only one DSO_METHOD_openssl is available on all platforms. Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/dso/Makefile.in')
-rw-r--r--crypto/dso/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/dso/Makefile.in b/crypto/dso/Makefile.in
index 8c517febce..e2fec28d4b 100644
--- a/crypto/dso/Makefile.in
+++ b/crypto/dso/Makefile.in
@@ -15,9 +15,9 @@ CFLAGS= $(INCLUDES) $(CFLAG) $(SHARED_CFLAG)
GENERAL=Makefile
LIB=$(TOP)/libcrypto.a
-LIBSRC= dso_dl.c dso_dlfcn.c dso_err.c dso_lib.c dso_null.c \
+LIBSRC= dso_dl.c dso_dlfcn.c dso_err.c dso_lib.c \
dso_openssl.c dso_win32.c dso_vms.c
-LIBOBJ= dso_dl.o dso_dlfcn.o dso_err.o dso_lib.o dso_null.o \
+LIBOBJ= dso_dl.o dso_dlfcn.o dso_err.o dso_lib.o \
dso_openssl.o dso_win32.o dso_vms.o
SRC= $(LIBSRC)