Changeset 152163 in webkit


Ignore:
Timestamp:
Jun 28, 2013 6:31:47 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[Autotools] Properly quote harfbuzz-icu pkg-config check
https://bugs.webkit.org/show_bug.cgi?id=118186

Patch by Sean Bright <sean@malleable.com> on 2013-06-28
Reviewed by Carlos Garcia Campos.

A secondary test was added in r150963 to check for harfbuzz-icu
when it was split into two packages, but the test is not properly
quoted. If the test fails you get an error about missing
version "./configure.9.8" instead of the expected "0.9.8."

  • Source/autotools/FindDependencies.m4:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r152100 r152163  
     12013-06-28  Sean Bright  <sean@malleable.com>
     2
     3        [Autotools] Properly quote harfbuzz-icu pkg-config check
     4        https://bugs.webkit.org/show_bug.cgi?id=118186
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        A secondary test was added in r150963 to check for harfbuzz-icu
     9        when it was split into two packages, but the test is not properly
     10        quoted.  If the test fails you get an error about missing
     11        version "./configure.9.8" instead of the expected "0.9.8."
     12
     13        * Source/autotools/FindDependencies.m4:
     14
    1152013-06-27  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    216
  • trunk/Source/autotools/FindDependencies.m4

    r151791 r152163  
    379379# Since we support earlier HarfBuzz versions we keep this conditional for now.
    380380if $PKG_CONFIG --atleast-version 0.9.18 harfbuzz; then
    381     PKG_CHECK_MODULES(HARFBUZZ_ICU, harfbuzz-icu >= $harfbuzz_required_version)
     381    PKG_CHECK_MODULES([HARFBUZZ_ICU], [harfbuzz-icu >= harfbuzz_required_version])
    382382    FREETYPE_CFLAGS="$FREETYPE_CFLAGS $HARFBUZZ_ICU_CFLAGS"
    383383    FREETYPE_LIBS="$FREETYPE_LIBS $HARFBUZZ_ICU_LIBS"
Note: See TracChangeset for help on using the changeset viewer.