diff options
author | Brent Cook <bcook@openbsd.org> | 2014-12-04 22:37:22 -0600 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2014-12-06 09:13:56 -0600 |
commit | b3270494f043104b7d63d5b30f47464b5bf253db (patch) | |
tree | 92ce7ca11ef5f583bb5524e524e5febab08865e3 /include | |
parent | fc5e43c32b886510660c17ebfb7d78b450ceb2a3 (diff) | |
download | portable-b3270494f043104b7d63d5b30f47464b5bf253db.tar.gz portable-b3270494f043104b7d63d5b30f47464b5bf253db.tar.bz2 portable-b3270494f043104b7d63d5b30f47464b5bf253db.zip |
add support for building libtls
Use './configure --enable-libtls' to build the library and install the
associated manpages. Note that the API and ABI of this library may
change still, though feedback is welcome.
ok deraadt@ jsing@ tedu@
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile.am | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Makefile.am b/include/Makefile.am index 543713e..ad06032 100644 --- a/include/Makefile.am +++ b/include/Makefile.am | |||
@@ -1,3 +1,5 @@ | |||
1 | include $(top_srcdir)/Makefile.am.common | ||
2 | |||
1 | SUBDIRS = openssl | 3 | SUBDIRS = openssl |
2 | 4 | ||
3 | noinst_HEADERS = err.h | 5 | noinst_HEADERS = err.h |
@@ -24,3 +26,7 @@ noinst_HEADERS += sys/select.h | |||
24 | noinst_HEADERS += sys/socket.h | 26 | noinst_HEADERS += sys/socket.h |
25 | noinst_HEADERS += sys/times.h | 27 | noinst_HEADERS += sys/times.h |
26 | noinst_HEADERS += sys/types.h | 28 | noinst_HEADERS += sys/types.h |
29 | |||
30 | if ENABLE_LIBTLS | ||
31 | include_HEADERS = tls.h | ||
32 | endif | ||