From 2ff880edc14dd06715f8476ce73d5c987479bb01 Mon Sep 17 00:00:00 2001 From: Detlef Riekenberg Date: Wed, 6 Sep 2006 13:37:03 +0200 Subject: [PATCH] configure.ac: Display a hint when CAPI is not supported. --- configure | 9 +++++++++ configure.ac | 8 ++++++++ 2 files changed, 17 insertions(+) diff --git a/configure b/configure index 665f614ba23..ad74f1539ef 100755 --- a/configure +++ b/configure @@ -25645,6 +25645,15 @@ fi if test "$verbose" = "yes" then + if test "$ac_cv_header_capi20_h" != "yes" -o "$ac_cv_header_linux_capi_h" != "yes" + then + echo >&2 + { echo "$as_me:$LINENO: libcapi20 development files not found." >&5 +echo "$as_me: libcapi20 development files not found." >&6;} + { echo "$as_me:$LINENO: Wine will be built without ISDN support. (capi2032.dll)" >&5 +echo "$as_me: Wine will be built without ISDN support. (capi2032.dll)" >&6;} + fi + if test "$ac_cv_header_cups_cups_h" != "yes" then echo >&2 diff --git a/configure.ac b/configure.ac index c9a18546103..cc310986f76 100644 --- a/configure.ac +++ b/configure.ac @@ -1806,6 +1806,14 @@ dnl **** Display messages about additional packages *** if test "$verbose" = "yes" then + dnl **** libcapi20-dev devel package *** + if test "$ac_cv_header_capi20_h" != "yes" -o "$ac_cv_header_linux_capi_h" != "yes" + then + echo >&2 + AC_MSG_NOTICE([libcapi20 development files not found.]) + AC_MSG_NOTICE([Wine will be built without ISDN support. (capi2032.dll)]) + fi + dnl **** libcupsys-dev devel package *** if test "$ac_cv_header_cups_cups_h" != "yes" then