summaryrefslogtreecommitdiffstats
path: root/secure/lib/libcrypto/Makefile.inc
diff options
context:
space:
mode:
authorkris <kris@FreeBSD.org>2000-09-17 06:45:27 +0000
committerkris <kris@FreeBSD.org>2000-09-17 06:45:27 +0000
commite785331769023a37dd8b665cd89d2937f9b417f6 (patch)
tree3c846b20e317d1723a0357c7e83be8e22a274d4d /secure/lib/libcrypto/Makefile.inc
parent1f7ac54fbd544b90729437bc61f76addab082c01 (diff)
downloadFreeBSD-src-e785331769023a37dd8b665cd89d2937f9b417f6.zip
FreeBSD-src-e785331769023a37dd8b665cd89d2937f9b417f6.tar.gz
Overhaul of the build-time include file generation. Don't break in evp.h
if bootstrapping from a system on which the openssl headers are not already present.
Diffstat (limited to 'secure/lib/libcrypto/Makefile.inc')
-rw-r--r--secure/lib/libcrypto/Makefile.inc30
1 files changed, 26 insertions, 4 deletions
diff --git a/secure/lib/libcrypto/Makefile.inc b/secure/lib/libcrypto/Makefile.inc
index 71a078a..df8adee 100644
--- a/secure/lib/libcrypto/Makefile.inc
+++ b/secure/lib/libcrypto/Makefile.inc
@@ -15,8 +15,26 @@ CFLAGS+= -DL_ENDIAN
WITH_RSA?= YES
-SRCS+= buildinf.h openssl/opensslconf.h openssl/_evp.h
-CLEANFILES+= buildinf.h openssl/opensslconf.h openssl/_evp.h
+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 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 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
+
+.if defined(MAKE_IDEA) && ${MAKE_IDEA} == YES
+HDRS+= idea/idea.h
+.endif
+
+.for h in ${HDRS}
+CRYPTO_HDRS+= ${LCRYPTO_SRC}/${h}
+.endfor
+
+SRCS+= buildinf.h openssl/opensslconf.h openssl/evp.h
+CLEANFILES+= buildinf.h openssl/opensslconf.h openssl/evp.h
CLEANDIRS+= openssl
buildinf.h:
@@ -31,12 +49,16 @@ buildinf.h:
# any of ${CRYPTO_HDRS} ${EXTRA_HDRS} will no repopulate openssl/.
# This deficiency will be fixed in a later commit.
-.ORDER: openssl/opensslconf.h openssl/_evp.h
+.ORDER: openssl/opensslconf.h openssl/evp.h
openssl/opensslconf.h: ../libcrypto/opensslconf-${MACHINE_ARCH}.h
mkdir -p openssl
cp ${.OODATE} ${.TARGET}
${INSTALL} ${COPY} -m 444 ${CRYPTO_HDRS} ${EXTRA_HDRS} openssl
-openssl/_evp.h: ${LCRYPTO_SRC}/evp/evp.h
+openssl/evp.h: ${LCRYPTO_SRC}/evp/evp.h
+.if !defined(MAKE_IDEA) || ${MAKE_IDEA} != YES
sed '/^#ifndef NO_IDEA$$/,/^#endif$$/d' ${.OODATE} > ${.TARGET}
+.else
+ ${INSTALL} ${COPY} -m 444 ${.OODATE} ${.TARGET}
+.endif
OpenPOWER on IntegriCloud