aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2014-12-04 22:37:22 -0600
committerBrent Cook <bcook@openbsd.org>2014-12-06 09:13:56 -0600
commitb3270494f043104b7d63d5b30f47464b5bf253db (patch)
tree92ce7ca11ef5f583bb5524e524e5febab08865e3 /include
parentfc5e43c32b886510660c17ebfb7d78b450ceb2a3 (diff)
downloadportable-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.am6
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 @@
1include $(top_srcdir)/Makefile.am.common
2
1SUBDIRS = openssl 3SUBDIRS = openssl
2 4
3noinst_HEADERS = err.h 5noinst_HEADERS = err.h
@@ -24,3 +26,7 @@ noinst_HEADERS += sys/select.h
24noinst_HEADERS += sys/socket.h 26noinst_HEADERS += sys/socket.h
25noinst_HEADERS += sys/times.h 27noinst_HEADERS += sys/times.h
26noinst_HEADERS += sys/types.h 28noinst_HEADERS += sys/types.h
29
30if ENABLE_LIBTLS
31include_HEADERS = tls.h
32endif