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 /tls | |
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 'tls')
-rw-r--r-- | tls/Makefile.am.tpl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tls/Makefile.am.tpl b/tls/Makefile.am.tpl new file mode 100644 index 0000000..7c4bf5c --- /dev/null +++ b/tls/Makefile.am.tpl | |||
@@ -0,0 +1,10 @@ | |||
1 | include $(top_srcdir)/Makefile.am.common | ||
2 | |||
3 | lib_LTLIBRARIES = libtls.la | ||
4 | |||
5 | libtls_la_LDFLAGS = -version-info libtls-version | ||
6 | |||
7 | libtls_la_CFLAGS = $(CFLAGS) $(USER_CFLAGS) | ||
8 | libtls_la_SOURCES = | ||
9 | noinst_HEADERS = | ||
10 | |||