aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
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 /configure.ac
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 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index b434190..491e4b8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -143,14 +143,20 @@ AC_ARG_ENABLE([asm],
143 AS_HELP_STRING([--disable-asm], [Disable assembly])) 143 AS_HELP_STRING([--disable-asm], [Disable assembly]))
144AS_IF([test "x$enable_asm" = "xno"], [CFLAGS="$CFLAGS -DOPENSSL_NO_ASM"]) 144AS_IF([test "x$enable_asm" = "xno"], [CFLAGS="$CFLAGS -DOPENSSL_NO_ASM"])
145 145
146AC_ARG_ENABLE([libtls],
147 AS_HELP_STRING([--enable-libtls], [Enable building the libtls library]))
148AM_CONDITIONAL([ENABLE_LIBTLS], [test "x$enable_libtls" = xyes])
149AM_COND_IF([ENABLE_LIBTLS], [AC_CONFIG_FILES([libtls.pc])])
150
146LT_INIT 151LT_INIT
147 152
148AC_CONFIG_FILES([ 153AC_CONFIG_FILES([
149 Makefile 154 Makefile
150 include/Makefile 155 include/Makefile
151 include/openssl/Makefile 156 include/openssl/Makefile
152 ssl/Makefile
153 crypto/Makefile 157 crypto/Makefile
158 ssl/Makefile
159 tls/Makefile
154 tests/Makefile 160 tests/Makefile
155 apps/Makefile 161 apps/Makefile
156 man/Makefile 162 man/Makefile