Changeset 116507 in webkit


Ignore:
Timestamp:
May 9, 2012 2:07:41 AM (12 years ago)
Author:
zoltan@webkit.org
Message:

[Qt] Build fix when using libpng version != 1.2
https://bugs.webkit.org/show_bug.cgi?id=85614

Reviewed by Eric Seidel.

Don't enforce the version of libpng when passing the option to the linker.

No new tests, no intended functionality change.

  • WebCore.pri:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r116499 r116507  
     12012-05-09  Zoltan Horvath  <zoltan@webkit.org>
     2
     3        [Qt] Build fix when using libpng version != 1.2
     4        https://bugs.webkit.org/show_bug.cgi?id=85614
     5
     6        Reviewed by Eric Seidel.
     7
     8        Don't enforce the version of libpng when passing the option to the linker.
     9
     10        No new tests, no intended functionality change.
     11
     12        * WebCore.pri:
     13
    1142012-05-09  Oli Lan  <olilan@chromium.org>
    215
  • trunk/Source/WebCore/WebCore.pri

    r116403 r116507  
    234234        # Qt5 allows us to use config tests to check for the presence of these libraries
    235235        !contains(config_test_libjpeg, yes): error("JPEG library not found!")
    236         !contains(config_test_libpng, yes): error("PNG 1.2 library not found!")
    237     }
    238 
    239     LIBS += -ljpeg -lpng12
     236        !contains(config_test_libpng, yes): error("PNG library not found!")
     237    }
     238
     239    LIBS += -ljpeg -lpng
    240240
    241241    contains(DEFINES, WTF_USE_WEBP=1) {
Note: See TracChangeset for help on using the changeset viewer.