aboutsummaryrefslogtreecommitdiff
path: root/crypto/ocsp/Makefile.ssl
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2000-12-14 18:42:28 +0000
committerDr. Stephen Henson <steve@openssl.org>2000-12-14 18:42:28 +0000
commit2c15d426b927444652cb53f39bc8463a1e6b91a6 (patch)
tree9850785e8806f5b6ff8dd633e35c603ed333d235 /crypto/ocsp/Makefile.ssl
parentbdcfe1d165b46d9263d3395535631305c3e27bd6 (diff)
downloadopenssl-2c15d426b927444652cb53f39bc8463a1e6b91a6.zip
openssl-2c15d426b927444652cb53f39bc8463a1e6b91a6.tar.gz
openssl-2c15d426b927444652cb53f39bc8463a1e6b91a6.tar.bz2
New function X509V3_extensions_print() this removes extension duplication
from the print routines. Reorganisation of OCSP code: initial print routines in ocsp_prn.c. Doesn't work fully because OCSP extensions aren't reimplemented yet. Implement some ASN1 functions needed to compile OCSP code.
Diffstat (limited to 'crypto/ocsp/Makefile.ssl')
-rw-r--r--crypto/ocsp/Makefile.ssl8
1 files changed, 4 insertions, 4 deletions
diff --git a/crypto/ocsp/Makefile.ssl b/crypto/ocsp/Makefile.ssl
index cadaeba..9387f34 100644
--- a/crypto/ocsp/Makefile.ssl
+++ b/crypto/ocsp/Makefile.ssl
@@ -22,11 +22,11 @@ TEST=
APPS=
LIB=$(TOP)/libcrypto.a
-LIBSRC= ocsp_asn.c ocsp_req.c ocsp_res.c ocsp_sig.c ocsp_cid.c ocsp_ext.c \
- ocsp_lib.c ocsp_err.c
+LIBSRC= ocsp_asn.c ocsp_ext.c ocsp_res.c ocsp_sig.c ocsp_cid.c \
+ ocsp_lib.c ocsp_prn.c ocsp_err.c
#ocsp_v3.c
-LIBOBJ= ocsp_asn.o ocsp_req.o ocsp_res.o ocsp_sig.o ocsp_cid.o ocsp_ext.o \
- ocsp_lib.o ocsp_err.o
+LIBOBJ= ocsp_asn.o ocsp_ext.o ocsp_res.o ocsp_sig.o ocsp_cid.o \
+ ocsp_lib.o ocsp_prn.o ocsp_err.o
#ocsp_v3.o
SRC= $(LIBSRC)