summaryrefslogtreecommitdiffstats
path: root/engines/Makefile.ssl
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2003-01-30 15:43:07 +0000
committerGeoff Thorpe <geoff@openssl.org>2003-01-30 15:43:07 +0000
commita85bef18995496a5f503350d921b2c98686cd12e (patch)
treefc3a2a42e41800ea6f8b95fa77d137e465485b0f /engines/Makefile.ssl
parentbb3e67f3157cc44f20c1d3b96611126d4660d225 (diff)
Commit a slightly modified version of an old experiment to do RSA private
key operations using the GMP library. The default is not to build (or use) this code unless OPENSSL_USE_GMP is defined (because it will impose header and linker dependencies that might need specifying too).
Diffstat (limited to 'engines/Makefile.ssl')
-rw-r--r--engines/Makefile.ssl5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/Makefile.ssl b/engines/Makefile.ssl
index d20f2bdab0..15d92844ee 100644
--- a/engines/Makefile.ssl
+++ b/engines/Makefile.ssl
@@ -27,12 +27,13 @@ TEST=
APPS=
LIB=$(TOP)/libcrypto.a
-LIBNAMES= 4758_cca aep atalla cswift ncipher nuron sureware ubsec
+LIBNAMES= 4758_cca aep atalla cswift gmp ncipher nuron sureware ubsec
LIBSRC= e_4758_cca.c \
e_aep.c \
e_atalla.c \
e_cswift.c \
+ e_gmp.c \
e_ncipher.c \
e_nuron.c \
e_sureware.c \
@@ -41,6 +42,7 @@ LIBOBJ= e_4758_cca.o \
e_aep.o \
e_atalla.o \
e_cswift.o \
+ e_gmp.o \
e_ncipher.o \
e_nuron.o \
e_sureware.o \
@@ -53,6 +55,7 @@ HEADER= e_4758_cca_err.c e_4758_cca_err.h \
e_aep_err.c e_aep_err.h \
e_atalla_err.c e_atalla_err.h \
e_cswift_err.c e_cswift_err.h \
+ e_gmp_err.c e_gmp_err.h \
e_ncipher_err.c e_ncipher_err.h \
e_nuron_err.c e_nuron_err.h \
e_sureware_err.c e_sureware_err.h \