summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormiod <>2016-11-04 13:57:38 +0000
committermiod <>2016-11-04 13:57:38 +0000
commitcc2b73e7f33aa109d4920aaf5a4130f56285ec86 (patch)
treeff23a196c1fb99025b1012623dee79c6ced98ef8 /src
parentd69d10da5510517830f98435b4984052c2d21825 (diff)
downloadopenbsd-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/Makefile5
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
3LIB= crypto 3LIB= crypto
4 4
@@ -7,7 +7,6 @@ PC_FILES=libcrypto.pc
7 7
8CLEANFILES=${PC_FILES} 8CLEANFILES=${PC_FILES}
9 9
10SSL_SRC= ${.CURDIR}/../libssl
11LCRYPTO_SRC= ${.CURDIR} 10LCRYPTO_SRC= ${.CURDIR}
12 11
13CFLAGS+= -Wall -Wundef -Werror 12CFLAGS+= -Wall -Wundef -Werror
@@ -18,11 +17,9 @@ CFLAGS+= -DDSO_DLFCN -DHAVE_DLFCN_H -DHAVE_FUNOPEN
18.endif 17.endif
19 18
20CFLAGS+= -DLIBRESSL_INTERNAL 19CFLAGS+= -DLIBRESSL_INTERNAL
21CFLAGS+= -DTERMIOS
22# Hardware engines 20# Hardware engines
23CFLAGS+= -DOPENSSL_NO_HW_PADLOCK # XXX enable this? 21CFLAGS+= -DOPENSSL_NO_HW_PADLOCK # XXX enable this?
24 22
25CFLAGS+= -I${SSL_SRC}
26CFLAGS+= -I${LCRYPTO_SRC} 23CFLAGS+= -I${LCRYPTO_SRC}
27CFLAGS+= -I${LCRYPTO_SRC}/modes -I${LCRYPTO_SRC}/asn1 -I${LCRYPTO_SRC}/evp 24CFLAGS+= -I${LCRYPTO_SRC}/modes -I${LCRYPTO_SRC}/asn1 -I${LCRYPTO_SRC}/evp
28 25