configure.ac: Display a hint when CAPI is not supported.
This commit is contained in:
parent
0839ea104a
commit
2ff880edc1
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue