aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2015-03-18 19:12:42 -0500
committerBrent Cook <bcook@openbsd.org>2015-03-19 00:40:26 -0500
commitf705e901a5d97e2cff6428a89746c7d4eae4da75 (patch)
tree74df7a7951ff09459a477913549da3062c37e329 /configure.ac
parent13034da4d88ffdfcc7e4dff72b0bf7c5db5cbb08 (diff)
downloadportable-f705e901a5d97e2cff6428a89746c7d4eae4da75.tar.gz
portable-f705e901a5d97e2cff6428a89746c7d4eae4da75.tar.bz2
portable-f705e901a5d97e2cff6428a89746c7d4eae4da75.zip
enable libtls by default
The API/ABI for the LibreSSL 2.1.x series is now fixed, so we can safely enable libtls it by default. This is useful for new OpenNTPD and OpenSMTPD releases as well. ok deraadt@ beck@ sthen@
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 1 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 30c7dd6..0bbf998 100644
--- a/configure.ac
+++ b/configure.ac
@@ -310,11 +310,6 @@ AM_CONDITIONAL([HOST_ASM_ELF_X86_64],
310AM_CONDITIONAL([HOST_ASM_MACOSX_X86_64], 310AM_CONDITIONAL([HOST_ASM_MACOSX_X86_64],
311 [test "x$HOST_ABI" = "xmacosx" -a "$host_cpu" = "x86_64" -a "x$enable_asm" != "xno"]) 311 [test "x$HOST_ABI" = "xmacosx" -a "$host_cpu" = "x86_64" -a "x$enable_asm" != "xno"])
312 312
313AC_ARG_ENABLE([libtls],
314 AS_HELP_STRING([--enable-libtls], [Enable building the libtls library]))
315AM_CONDITIONAL([ENABLE_LIBTLS], [test "x$enable_libtls" = xyes])
316AM_COND_IF([ENABLE_LIBTLS], [AC_CONFIG_FILES([libtls.pc])])
317
318LT_INIT 313LT_INIT
319 314
320AC_CONFIG_FILES([ 315AC_CONFIG_FILES([
@@ -329,6 +324,7 @@ AC_CONFIG_FILES([
329 man/Makefile 324 man/Makefile
330 libcrypto.pc 325 libcrypto.pc
331 libssl.pc 326 libssl.pc
327 libtls.pc
332 openssl.pc 328 openssl.pc
333]) 329])
334 330