aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 214dcd5f..9e4f1961 100644
--- a/configure.ac
+++ b/configure.ac
@@ -494,10 +494,10 @@ AM_CONDITIONAL([HAVE_POSTPROCESSOR],test "x$enable_postprocessor" != "xno")
494 494
495 495
496# optional: have zzuf, socat? 496# optional: have zzuf, socat?
497AC_CHECK_PROG([HAVE_ZZUF],[zzuf], 1, 0) 497AC_CHECK_PROG([have_zzuf],[zzuf], [yes], [no])
498AC_CHECK_PROG([HAVE_SOCAT],[socat], 1, 0) 498AC_CHECK_PROG([have_socat],[socat], [yes], [no])
499AM_CONDITIONAL(HAVE_ZZUF, test 0 != $HAVE_ZZUF) 499AM_CONDITIONAL([HAVE_ZZUF], [test "x$have_zzuf" = "xyes"])
500AM_CONDITIONAL(HAVE_SOCAT, test 0 != $HAVE_SOCAT) 500AM_CONDITIONAL([HAVE_SOCAT], [test "x$have_socat" = "xyes"])
501 501
502 502
503# libgcrypt linkage: required for HTTPS support 503# libgcrypt linkage: required for HTTPS support