summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 12 insertions, 4 deletions
diff --git a/configure b/configure
index ca2bfb3..6bfa31b 100755
--- a/configure
+++ b/configure
@@ -30930,11 +30930,19 @@ PRINT() {
}
IF_YES_NO() {
- if test "$1" = "yes"; then
- PRINT "Yes"
- else
+ if test $# -lt 1; then
PRINT "No"
+ return
+ else
+ while test $# -gt 0; do
+ if test "$1" != "yes"; then
+ PRINT "No"
+ return
+ fi
+ shift
+ done
fi
+ PRINT "Yes"
}
IF_ENABLED_DISABLED() {
@@ -31025,4 +31033,4 @@ PRINT_N " Threadsafety"
IF_ENABLED_DISABLED "$THREADSAFE"
PRINT_N " Zlib-compression"
-IF_YES_NO "$HAVE_ZLIB"
+IF_YES_NO "$ac_cv_header_zlib_h" "$ac_cv_func_compress2"