Detlef Riekenberg : configure.ac: Display a hint when CAPI is not supported .
Module: wine Branch: master Commit: 2ff880edc14dd06715f8476ce73d5c987479bb01 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=2ff880edc14dd06715f8476c... Author: Detlef Riekenberg <wine.dev(a)web.de> Date: Wed Sep 6 13:37:03 2006 +0200 configure.ac: Display a hint when CAPI is not supported. --- configure | 9 +++++++++ configure.ac | 8 ++++++++ 2 files changed, 17 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 665f614..ad74f15 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 c9a1854..cc31098 100644 --- a/configure.ac +++ b/configure.ac @@ -1806,6 +1806,14 @@ dnl **** Display messages about addition 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
participants (1)
-
Alexandre Julliard