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 /Makefile.am | |
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 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 12d8be7..a9cd1ac 100644 --- a/Makefile.am +++ b/Makefile.am | |||
@@ -1,7 +1,11 @@ | |||
1 | SUBDIRS = crypto ssl include apps tests man | 1 | SUBDIRS = crypto ssl tls include apps tests man |
2 | ACLOCAL_AMFLAGS = -I m4 | 2 | ACLOCAL_AMFLAGS = -I m4 |
3 | 3 | ||
4 | pkgconfigdir = $(libdir)/pkgconfig | 4 | pkgconfigdir = $(libdir)/pkgconfig |
5 | pkgconfig_DATA = libcrypto.pc libssl.pc openssl.pc | 5 | pkgconfig_DATA = libcrypto.pc libssl.pc openssl.pc |
6 | 6 | ||
7 | if ENABLE_LIBTLS | ||
8 | pkgconfig_DATA += libtls.pc | ||
9 | endif | ||
10 | |||
7 | EXTRA_DIST = VERSION | 11 | EXTRA_DIST = VERSION |