aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/engine/Makefile.ssl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-11-02 20:33:04 +0000
committerRichard Levitte <levitte@openssl.org>2000-11-02 20:33:04 +0000
commit11c0f1201c2b26fc056fcb189b7d375d7163ffd0 (patch)
tree3407f64ca5b5f8b7d4d07ef2893b6ba98f7f3035 /crypto/engine/Makefile.ssl
parent69e7805f54e6bcb665668b4c61e3da344c53278a (diff)
downloadopenssl-11c0f1201c2b26fc056fcb189b7d375d7163ffd0.tar.gz
Change the engine library so the application writer has to explicitely
load the "external" built-in engines (those that require DSO). This makes linking with libdl or other dso libraries non-mandatory. Change 'openssl engine' accordingly. Change the engine header files so some declarations (that differed at that!) aren't duplicated, and make sure engine_int.h includes engine.h. That way, there should be no way of missing the needed info.
Diffstat (limited to 'crypto/engine/Makefile.ssl')
-rw-r--r--crypto/engine/Makefile.ssl4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/engine/Makefile.ssl b/crypto/engine/Makefile.ssl
index 8974ecd9c5..2823cd9583 100644
--- a/crypto/engine/Makefile.ssl
+++ b/crypto/engine/Makefile.ssl
@@ -22,9 +22,9 @@ TEST= enginetest.c
APPS=
LIB=$(TOP)/libcrypto.a
-LIBSRC= engine_err.c engine_lib.c engine_list.c engine_openssl.c \
+LIBSRC= engine_err.c engine_lib.c engine_list.c engine_all.c engine_openssl.c \
hw_atalla.c hw_cswift.c hw_ncipher.c hw_nuron.c
-LIBOBJ= engine_err.o engine_lib.o engine_list.o engine_openssl.o \
+LIBOBJ= engine_err.o engine_lib.o engine_list.o engine_all.o engine_openssl.o \
hw_atalla.o hw_cswift.o hw_ncipher.o hw_nuron.o
SRC= $(LIBSRC)