aboutsummaryrefslogtreecommitdiff
path: root/secure
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2000-02-25 09:47:17 +0000
committerPeter Wemm <peter@FreeBSD.org>2000-02-25 09:47:17 +0000
commit66812860228396c870c13fb3c9977ea8a6b16df4 (patch)
tree92d50a2552ff66ee362efc7ecfb24e35128aef88 /secure
parent8df7a1fa297795e48ec8e70d0e003d580ec64b65 (diff)
Notes
Diffstat (limited to 'secure')
-rw-r--r--secure/lib/Makefile2
-rw-r--r--secure/lib/librsaglue/Makefile42
2 files changed, 6 insertions, 38 deletions
diff --git a/secure/lib/Makefile b/secure/lib/Makefile
index a3aa74cf17dd..8608de214ba3 100644
--- a/secure/lib/Makefile
+++ b/secure/lib/Makefile
@@ -5,7 +5,7 @@ SUBDIR= libcipher
SUBDIR+=libtelnet
.endif
.if !defined(NO_OPENSSL)
-SUBDIR+=libcrypto libssl
+SUBDIR+=libcrypto librsaglue libssl
.endif
.if !defined(NO_OPENSSH)
SUBDIR+=libssh
diff --git a/secure/lib/librsaglue/Makefile b/secure/lib/librsaglue/Makefile
index e077208cb066..43da83d4d65a 100644
--- a/secure/lib/librsaglue/Makefile
+++ b/secure/lib/librsaglue/Makefile
@@ -1,44 +1,12 @@
# $FreeBSD$
-.include "../libcrypto/Makefile.inc"
-
-MAINTAINER= kris
-
LIB= RSAglue
SHLIB_MAJOR= 1
+SRCS= stub.c
+NOPIC= .a only
-CFLAGS+= -I${.OBJDIR}
-
-# rsaref
-SRCS+= rsar_err.c rsaref.c rsaref_stubs.c
-
-HDRS= asn1/asn1.h asn1/asn1_mac.h bio/bio.h bf/blowfish.h bn/bn.h \
- buffer/buffer.h cast/cast.h comp/comp.h conf/conf.h crypto.h \
- des/des.h dh/dh.h dsa/dsa.h ../e_os.h ../e_os2.h ebcdic.h \
- err/err.h evp/evp.h hmac/hmac.h lhash/lhash.h md2/md2.h \
- md5/md5.h mdc2/mdc2.h objects/objects.h opensslv.h pem/pem.h \
- pem/pem2.h pkcs12/pkcs12.h pkcs7/pkcs7.h rand/rand.h rc2/rc2.h \
- rc4/rc4.h rc5/rc5.h ripemd/ripemd.h rsa/rsa.h ../rsaref/rsaref.h \
- stack/safestack.h sha/sha.h stack/stack.h tmdiff.h txt_db/txt_db.h \
- x509/x509.h x509/x509_vfy.h x509v3/x509v3.h
-
-beforedepend: headers ${.OBJDIR}/openssl/opensslconf.h
-
-DPADD+= ${.OBJDIR}/openssl/opensslconf.h
-
-CLEANDIRS+= ${.OBJDIR}/openssl
-
-${.OBJDIR}/openssl/opensslconf.h: ../libcrypto/opensslconf-${MACHINE_ARCH}.h
- @test -d ${.OBJDIR}/openssl || mkdir -p ${.OBJDIR}/openssl; \
- cp ${.OODATE} ${.TARGET}
-
-headers:
- @test -d ${.OBJDIR}/openssl || mkdir -p ${.OBJDIR}/openssl; \
- for i in ${HDRS}; do \
- ${INSTALL} ${COPY} -m 444 ${LCRYPTO_SRC}/$$i \
- ${.OBJDIR}/openssl; \
- done
-
-.PATH: ${LCRYPTO_SRC}/../rsaref
+CLEANFILES+= stub.c
+stub.c:
+ touch stub.c
.include <bsd.lib.mk>