diff options
author | miod <> | 2016-11-04 13:57:38 +0000 |
---|---|---|
committer | miod <> | 2016-11-04 13:57:38 +0000 |
commit | cc2b73e7f33aa109d4920aaf5a4130f56285ec86 (patch) | |
tree | ff23a196c1fb99025b1012623dee79c6ced98ef8 /src | |
parent | d69d10da5510517830f98435b4984052c2d21825 (diff) | |
download | openbsd-cc2b73e7f33aa109d4920aaf5a4130f56285ec86.tar.gz openbsd-cc2b73e7f33aa109d4920aaf5a4130f56285ec86.tar.bz2 openbsd-cc2b73e7f33aa109d4920aaf5a4130f56285ec86.zip |
No need to reach libssl private headers and to define TERMIOS anymore.
ok bcook@
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile index 173198dbab..c85d72bdaf 100644 --- a/src/lib/libcrypto/Makefile +++ b/src/lib/libcrypto/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.8 2016/10/16 19:28:44 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.9 2016/11/04 13:57:38 miod Exp $ |
2 | 2 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | 4 | ||
@@ -7,7 +7,6 @@ PC_FILES=libcrypto.pc | |||
7 | 7 | ||
8 | CLEANFILES=${PC_FILES} | 8 | CLEANFILES=${PC_FILES} |
9 | 9 | ||
10 | SSL_SRC= ${.CURDIR}/../libssl | ||
11 | LCRYPTO_SRC= ${.CURDIR} | 10 | LCRYPTO_SRC= ${.CURDIR} |
12 | 11 | ||
13 | CFLAGS+= -Wall -Wundef -Werror | 12 | CFLAGS+= -Wall -Wundef -Werror |
@@ -18,11 +17,9 @@ CFLAGS+= -DDSO_DLFCN -DHAVE_DLFCN_H -DHAVE_FUNOPEN | |||
18 | .endif | 17 | .endif |
19 | 18 | ||
20 | CFLAGS+= -DLIBRESSL_INTERNAL | 19 | CFLAGS+= -DLIBRESSL_INTERNAL |
21 | CFLAGS+= -DTERMIOS | ||
22 | # Hardware engines | 20 | # Hardware engines |
23 | CFLAGS+= -DOPENSSL_NO_HW_PADLOCK # XXX enable this? | 21 | CFLAGS+= -DOPENSSL_NO_HW_PADLOCK # XXX enable this? |
24 | 22 | ||
25 | CFLAGS+= -I${SSL_SRC} | ||
26 | CFLAGS+= -I${LCRYPTO_SRC} | 23 | CFLAGS+= -I${LCRYPTO_SRC} |
27 | CFLAGS+= -I${LCRYPTO_SRC}/modes -I${LCRYPTO_SRC}/asn1 -I${LCRYPTO_SRC}/evp | 24 | CFLAGS+= -I${LCRYPTO_SRC}/modes -I${LCRYPTO_SRC}/asn1 -I${LCRYPTO_SRC}/evp |
28 | 25 | ||