From 374d65fa455af7b635928d7a27c61196b63e577c Mon Sep 17 00:00:00 2001 From: markus <> Date: Tue, 3 Sep 2002 18:59:56 +0000 Subject: build OpenSSL without symlink trees: * manpage related things moved to src/libssl/man/Makefile * there are now 3 obj directories src/libssl/{crypto,ssl,man}/ instead of one single src/libssl/obj * instead of running Configure (with generates lots of symlinks, and opensslconf.h) this patch stores pre-computed opensslconf.h files in src/libssl/crypto/arch * requires a make includes before the library can be built * libssl and libcrypto can be build separately (e.g. cd src/libssl/ssl && make obj && make) * make depend is now supported * no more symlink trees tested by miod@ and fries@ --- src/lib/libssl/ssl/Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/lib/libssl/ssl') diff --git a/src/lib/libssl/ssl/Makefile b/src/lib/libssl/ssl/Makefile index 8f687b5cef..7282f43793 100644 --- a/src/lib/libssl/ssl/Makefile +++ b/src/lib/libssl/ssl/Makefile @@ -1,10 +1,10 @@ +# $OpenBSD: Makefile,v 1.15 2002/09/03 18:59:56 markus Exp $ LIB= ssl SSLEAYDIST= src LSSL_SRC= ${.CURDIR}/../${SSLEAYDIST}/ssl -LCRYPTO_SRC= ${.CURDIR}/../${SSLEAYDIST}/crypto .if ${MACHINE_ARCH} == "i386" CFLAGS+= -DL_ENDIAN -DBN_ASM @@ -26,8 +26,6 @@ CFLAGS+= -DB_ENDIAN CFLAGS+= -DOPENSSL_NO_IDEA -DTERMIOS -DANSI_SOURCE -DNO_ERR CFLAGS+= -DOPENSSL_NO_RC5 -DOPENSSL_NO_KRB5 -DSO_DLFCN -DHAVE_DLFCN_H -CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST}/include -CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST}/crypto CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST} SRCS= bio_ssl.c s2_clnt.c s3_both.c s3_srvr.c ssl_err2.c ssl_txt.c \ -- cgit v1.2.3-55-g6feb