On Wednesday 11 July 2007, Alexandre Julliard wrote:
It's the first time I actually looked deeper into configure.ac/configure so bear with me. This part look suspicious in configure.ac:
832 WINE_NOTICE_IF([test "$ac_cv_lib_lcms_cmsOpenProfileFromFile" = "yes"],[liblcms development files not found. 833 Wine will be built without Color Management support. (mscms.dll)])
Shouldn't that be != "yes" ?
Yes of course, thanks for catching this.
libicu detection fails here on Fedora development. configure used to check libsicu and libicu, now it only checks libsicu.
The patch below makes the check succeed here.
-Hans
diff --git a/configure.ac b/configure.ac index 227e410..3134d66 100644 --- a/configure.ac +++ b/configure.ac @@ -796,7 +796,7 @@ dnl **** Check for the ICU library **** if test "$ac_cv_header_unicode_ubidi_h" = "yes" then saved_libs="$LIBS" - icu_libs="-lsicuuc -lsicudata -lstdc++ -lgcc_s" + icu_libs="-licuuc -licudata -lstdc++ -lgcc_s" if test -n "$ICU_LIB_DIR" then icu_libs="-L$ICU_LIB_DIR $icu_libs"