diff options
author | Bob Beck <beck@cvs.openbsd.org> | 1998-10-06 17:55:43 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 1998-10-06 17:55:43 +0000 |
commit | 9de437a6a935e4a6bbebf1255a9b66143a4b2f96 (patch) | |
tree | 975a969c52691926b497e8f01bc70fbb07f219f4 /lib/libssl/crypto | |
parent | f79e14406e81aaccd445cdd6413778edce85c7cc (diff) |
Fix makefile problems - Don't use SSLeay style include link farm to
build - get includes from where they really live.
Diffstat (limited to 'lib/libssl/crypto')
-rw-r--r-- | lib/libssl/crypto/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libssl/crypto/Makefile b/lib/libssl/crypto/Makefile index ec9e75dd4dc..516609d8d15 100644 --- a/lib/libssl/crypto/Makefile +++ b/lib/libssl/crypto/Makefile @@ -4,7 +4,6 @@ LIB= crypto SSLEAYDIST= src LCRYPTO_SRC= ${.CURDIR}/../${SSLEAYDIST}/crypto -SSLEAY_INC= ${.CURDIR}/../${SSLEAYDIST}/include .if ${MACHINE_ARCH} == "i386" CFLAGS+= -DL_ENDIAN -DBN_ASM @@ -17,7 +16,7 @@ CFLAGS+= -DB_ENDIAN .endif CFLAGS+= -DNO_IDEA -DTERMIOS -DANSI_SOURCE -CFLAGS+= -I${SSLEAY_INC} +CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST} CFLAGS+= -I${LCRYPTO_SRC} SRCS+= cryptlib.c mem.c cversion.c ex_data.c cpt_err.c CFLAGS+= -I${LCRYPTO_SRC}/md2 @@ -143,7 +142,7 @@ HDRS= asn1/asn1.h asn1/asn1_mac.h bf/blowfish.h bio/bio.h \ md2/md2.h md5/md5.h mdc2/mdc2.h objects/objects.h pem/pem.h \ pkcs7/pkcs7.h rand/rand.h rc2/rc2.h rc4/rc4.h rc5/rc5.h \ ripemd/ripemd.h rsa/rsa.h sha/sha.h stack/stack.h txt_db/txt_db.h \ - x509/x509.h x509/x509_vfy.h crypto.h cryptall.h ../include/e_os.h + x509/x509.h x509/x509_vfy.h crypto.h cryptall.h ../e_os.h .PATH: ${LCRYPTO_SRC}/md2 ${LCRYPTO_SRC}/md5 ${LCRYPTO_SRC}/sha ${LCRYPTO_SRC}/mdc2 \ ${LCRYPTO_SRC}/hmac ${LCRYPTO_SRC}/ripemd ${LCRYPTO_SRC}/des ${LCRYPTO_SRC}/rc2 \ |