diff options
author | Brent Cook <bcook@openbsd.org> | 2015-12-07 08:14:51 -0600 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-12-07 08:14:51 -0600 |
commit | 28aaab43234226b2885d66d1e70f536cd7e438f0 (patch) | |
tree | dcf3836a7cdc97eadd59a2c28d95f551e3b7758c /configure.ac | |
parent | 19f58fdb1bf8052c0ea3ddd3230df07baaa4e843 (diff) | |
download | portable-28aaab43234226b2885d66d1e70f536cd7e438f0.tar.gz portable-28aaab43234226b2885d66d1e70f536cd7e438f0.tar.bz2 portable-28aaab43234226b2885d66d1e70f536cd7e438f0.zip |
allow optionally installing nc(1) with '--enable-nc'
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index f15e746..6c60d15 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -114,6 +114,10 @@ AM_CONDITIONAL([HOST_ASM_ELF_X86_64], | |||
114 | AM_CONDITIONAL([HOST_ASM_MACOSX_X86_64], | 114 | AM_CONDITIONAL([HOST_ASM_MACOSX_X86_64], |
115 | [test "x$HOST_ABI" = "xmacosx" -a "$host_cpu" = "x86_64" -a "x$enable_asm" != "xno"]) | 115 | [test "x$HOST_ABI" = "xmacosx" -a "$host_cpu" = "x86_64" -a "x$enable_asm" != "xno"]) |
116 | 116 | ||
117 | AC_ARG_ENABLE([nc], | ||
118 | AS_HELP_STRING([--enable-nc], [Enable installing TLS-enabled nc(1)])) | ||
119 | AM_CONDITIONAL([ENABLE_NC], [test "x$enable_nc" = xyes]) | ||
120 | |||
117 | # Check if time_t is sized correctly | 121 | # Check if time_t is sized correctly |
118 | AC_CHECK_SIZEOF([time_t], [time.h]) | 122 | AC_CHECK_SIZEOF([time_t], [time.h]) |
119 | 123 | ||