diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-09-03 18:59:57 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-09-03 18:59:57 +0000 |
commit | 080e71570c49ceaa641148eb0ccf1fad75727b00 (patch) | |
tree | f20ae30ea32a8cecdc1a7394c2d755310dab4063 /lib/libssl/ssl | |
parent | 46722ebad90ee0336a151a69406ed327c2fb5ac1 (diff) |
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@
Diffstat (limited to 'lib/libssl/ssl')
-rw-r--r-- | lib/libssl/ssl/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libssl/ssl/Makefile b/lib/libssl/ssl/Makefile index 8f687b5cefd..7282f437939 100644 --- a/lib/libssl/ssl/Makefile +++ b/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 \ |