aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2014-03-05 13:21:17 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2014-03-05 13:21:17 +0000
commit2af307ac20483656e7ba67734e902765880d67a4 (patch)
tree3906464bc70a9d2a8bfa21a3ac04e81cf630053a
parentd1fe54e512738aeb82696cd107d720e16ebdbc3e (diff)
downloadlibmicrohttpd-2af307ac20483656e7ba67734e902765880d67a4.tar.gz
libmicrohttpd-2af307ac20483656e7ba67734e902765880d67a4.zip
configure.ac: updated tests for zzuf and socat for nice printing results
-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