Changeset 140835 in webkit


Ignore:
Timestamp:
Jan 25, 2013 9:03:57 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] LDFLAGS are being incorrectly used at compile time (rather than linking)
https://bugs.webkit.org/show_bug.cgi?id=100616

Unreviewed, since this is just a build fix.

Patch by Martin Robinson <mrobinson@igalia.com> on 2013-01-25

  • GNUmakefile.am: use PACKAGE_CFLAGS instead of PACKAGE_LIBS when appending pkg-config

variables to build target _CFLAGS.

Location:
trunk/Source/WebKit/gtk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/gtk/ChangeLog

    r140718 r140835  
     12013-01-25  Martin Robinson  <mrobinson@igalia.com>
     2
     3        [GTK] LDFLAGS are being incorrectly used at compile time (rather than linking)
     4        https://bugs.webkit.org/show_bug.cgi?id=100616
     5
     6        Unreviewed, since this is just a build fix.
     7
     8        * GNUmakefile.am: use PACKAGE_CFLAGS instead of PACKAGE_LIBS when appending pkg-config
     9        variables to build target _CFLAGS.
     10
    1112013-01-24  Mark Hahnenberg  <mhahnenberg@apple.com>
    212
  • trunk/Source/WebKit/gtk/GNUmakefile.am

    r140021 r140835  
    7171        $(SQLITE3_CFLAGS) \
    7272        $(UNICODE_CFLAGS) \
    73         $(XCOMPOSITE_LIBS) \
    74         $(XDAMAGE_LIBS) \
     73        $(XCOMPOSITE_CFLAGS) \
     74        $(XDAMAGE_CFLAGS) \
    7575        $(XT_CFLAGS) \
    7676        $(ZLIB_CFLAGS)
     
    442442        $(GTK_CFLAGS) \
    443443        $(LIBSOUP_CFLAGS) \
    444         $(XRENDER_LIBS) \
    445         $(XT_LIBS)
     444        $(XRENDER_CFLAGS) \
     445        $(XT_CFLAGS)
    446446
    447447webkit_tests_ldadd = \
Note: See TracChangeset for help on using the changeset viewer.