Commit 7f674966 authored by Alexandre Julliard's avatar Alexandre Julliard

configure: Add a few more notices for missing packages.

parent f9dec94f
...@@ -14442,6 +14442,11 @@ _ACEOF ...@@ -14442,6 +14442,11 @@ _ACEOF
fi fi
fi fi
if test "x$ac_cv_lib_soname_fontconfig" = "x"; then
wine_notices="$wine_notices|fontconfig development files not found.
Wine will be built without fontconfig support."
fi
if test "$ac_cv_header_openssl_err_h" = "yes" -a "$ac_cv_header_openssl_ssl_h" = "yes" if test "$ac_cv_header_openssl_err_h" = "yes" -a "$ac_cv_header_openssl_ssl_h" = "yes"
then then
...@@ -14602,6 +14607,11 @@ _ACEOF ...@@ -14602,6 +14607,11 @@ _ACEOF
fi fi
fi fi
if test "x$ac_cv_lib_soname_ssl" = "x"; then
wine_notices="$wine_notices|OpenSSL development files not found.
Wine will be built without SSL support. (wininet.dll)"
fi
if test "$ac_cv_header_jpeglib_h" = "yes" if test "$ac_cv_header_jpeglib_h" = "yes"
then then
...@@ -14684,6 +14694,11 @@ _ACEOF ...@@ -14684,6 +14694,11 @@ _ACEOF
fi fi
fi fi
if test "x$ac_cv_lib_soname_jpeg" = "x"; then
wine_notices="$wine_notices|libjpeg development files not found.
Wine will be built without JPEG support. (oleaut32.dll)"
fi
if test "$ac_cv_header_png_h" = "yes" if test "$ac_cv_header_png_h" = "yes"
then then
...@@ -14766,6 +14781,11 @@ _ACEOF ...@@ -14766,6 +14781,11 @@ _ACEOF
fi fi
fi fi
if test "x$ac_cv_lib_soname_png" = "x"; then
wine_notices="$wine_notices|libpng development files not found.
Wine will be built without PNG support. (oleaut32.dll)"
fi
if test "x$ALSALIBS$AUDIOIOLIBS$COREAUDIO$NASLIBS$ESD_LIBS$ac_cv_lib_soname_jack" = "x" -a \ if test "x$ALSALIBS$AUDIOIOLIBS$COREAUDIO$NASLIBS$ESD_LIBS$ac_cv_lib_soname_jack" = "x" -a \
"$ac_cv_header_sys_soundcard_h" != "yes" -a \ "$ac_cv_header_sys_soundcard_h" != "yes" -a \
......
...@@ -1032,6 +1032,8 @@ if test "$ac_cv_header_fontconfig_fontconfig_h" = "yes" ...@@ -1032,6 +1032,8 @@ if test "$ac_cv_header_fontconfig_fontconfig_h" = "yes"
then then
WINE_CHECK_SONAME(fontconfig,FcInit) WINE_CHECK_SONAME(fontconfig,FcInit)
fi fi
WINE_NOTICE_IF([test "x$ac_cv_lib_soname_fontconfig" = "x"],[fontconfig development files not found.
Wine will be built without fontconfig support.])
dnl **** Check for SSL **** dnl **** Check for SSL ****
if test "$ac_cv_header_openssl_err_h" = "yes" -a "$ac_cv_header_openssl_ssl_h" = "yes" if test "$ac_cv_header_openssl_err_h" = "yes" -a "$ac_cv_header_openssl_ssl_h" = "yes"
...@@ -1039,18 +1041,24 @@ then ...@@ -1039,18 +1041,24 @@ then
WINE_CHECK_SONAME(ssl,SSL_library_init) WINE_CHECK_SONAME(ssl,SSL_library_init)
WINE_CHECK_SONAME(crypto,BIO_new_socket) WINE_CHECK_SONAME(crypto,BIO_new_socket)
fi fi
WINE_NOTICE_IF([test "x$ac_cv_lib_soname_ssl" = "x"],[OpenSSL development files not found.
Wine will be built without SSL support. (wininet.dll)])
dnl **** Check for libjpeg **** dnl **** Check for libjpeg ****
if test "$ac_cv_header_jpeglib_h" = "yes" if test "$ac_cv_header_jpeglib_h" = "yes"
then then
WINE_CHECK_SONAME(jpeg,jpeg_start_decompress) WINE_CHECK_SONAME(jpeg,jpeg_start_decompress)
fi fi
WINE_NOTICE_IF([test "x$ac_cv_lib_soname_jpeg" = "x"],[libjpeg development files not found.
Wine will be built without JPEG support. (oleaut32.dll)])
dnl **** Check for libpng **** dnl **** Check for libpng ****
if test "$ac_cv_header_png_h" = "yes" if test "$ac_cv_header_png_h" = "yes"
then then
WINE_CHECK_SONAME(png,png_create_read_struct,,,,[[libpng[[0-9]]*]]) WINE_CHECK_SONAME(png,png_create_read_struct,,,,[[libpng[[0-9]]*]])
fi fi
WINE_NOTICE_IF([test "x$ac_cv_lib_soname_png" = "x"],[libpng development files not found.
Wine will be built without PNG support. (oleaut32.dll)])
dnl **** Check for any sound system **** dnl **** Check for any sound system ****
WINE_WARNING_IF([test "x$ALSALIBS$AUDIOIOLIBS$COREAUDIO$NASLIBS$ESD_LIBS$ac_cv_lib_soname_jack" = "x" -a \ WINE_WARNING_IF([test "x$ALSALIBS$AUDIOIOLIBS$COREAUDIO$NASLIBS$ESD_LIBS$ac_cv_lib_soname_jack" = "x" -a \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment