From a6f8a3fd9fa59a05be1a44b6250649312ddd7ab9 Mon Sep 17 00:00:00 2001 From: "m. allan noah" Date: Sat, 19 Sep 2015 13:25:16 -0400 Subject: [PATCH] fix configure messages for 2 backends dell1600n_net and mustek_pp configure messages did not match the actual tests being run. From looking at the backends, the tests seem to be accurate. --- acinclude.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index 637c5d5d8..06687fc6a 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -605,14 +605,14 @@ for be in ${BACKENDS}; do mustek_pp) if test "${sane_cv_use_libieee1284}" != "yes" && test "${enable_parport_directio}" != "yes"; then - echo "*** $be backend requires libieee1284 and paraport-directio libraries - $DISABLE_MSG" + echo "*** $be backend requires libieee1284 or parport-directio libraries - $DISABLE_MSG" backend_supported="no" fi ;; dell1600n_net) if test "${sane_cv_use_libjpeg}" != "yes" || test "${sane_cv_use_libtiff}" != "yes"; then - echo "*** $be backend requires JPEG and/or TIFF library - $DISABLE_MSG" + echo "*** $be backend requires JPEG and TIFF library - $DISABLE_MSG" backend_supported="no" fi ;;