Re: configure: Fix test for ability to link with ICU libraries.
Scott Bambrough <scottb(a)xandros.com> writes:
@@ -603,8 +603,8 @@ if test "$ac_cv_header_unicode_ubidi_h" then saved_libs="$LIBS" ICU_LIB_DIR="${ICU_LIB_DIR-/usr/lib}" - ICUUC_LIB="${ICUUC_LIB-$ICU_LIB_DIR/libsicuuc.a}" - ICUDATA_LIB="${ICUDATA_LIB-$ICU_LIB_DIR/libsicudata.a}" + ICUUC_LIB="${ICUUC_LIB-$ICU_LIB_DIR/libicuuc.a}" + ICUDATA_LIB="${ICUDATA_LIB-$ICU_LIB_DIR/libicudata.a}"
The libraries have different names on different setups, that's why there are environment variables you can set. If you want a better fix you need to make configure probe for the various names. -- Alexandre Julliard julliard(a)winehq.org
Alexandre Julliard wrote:
Scott Bambrough <scottb(a)xandros.com> writes:
@@ -603,8 +603,8 @@ if test "$ac_cv_header_unicode_ubidi_h" then saved_libs="$LIBS" ICU_LIB_DIR="${ICU_LIB_DIR-/usr/lib}" - ICUUC_LIB="${ICUUC_LIB-$ICU_LIB_DIR/libsicuuc.a}" - ICUDATA_LIB="${ICUDATA_LIB-$ICU_LIB_DIR/libsicudata.a}" + ICUUC_LIB="${ICUUC_LIB-$ICU_LIB_DIR/libicuuc.a}" + ICUDATA_LIB="${ICUDATA_LIB-$ICU_LIB_DIR/libicudata.a}"
The libraries have different names on different setups, that's why there are environment variables you can set. If you want a better fix you need to make configure probe for the various names.
Ok, I just assumed it was a typo. I'll redo the patch. BTW, what system uses the current names? I have a Fedora Core 5 and Debian system that both use the names I sent the patch for. Cheers, Scott
participants (2)
-
Alexandre Julliard -
Scott Bambrough