Changeset 62001 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Jun 28, 2010, 6:58:42 AM (15 years ago)
Author:
[email protected]
Message:

2010-06-28 Xan Lopez <[email protected]>

Reviewed by Gustavo Noronha.

[GTK] Add support for GTK+3
https://bugs.webkit.org/show_bug.cgi?id=41253

Add --with-gtk configure flag, defaulting to support for GTK+ 2.x.

  • GNUmakefile.am:
  • configure.ac:

WebCore:

2010-06-28 Xan Lopez <[email protected]>

Reviewed by Gustavo Noronha.

[GTK] Add support for GTK+3
https://bugs.webkit.org/show_bug.cgi?id=41253

Adapt build system for 3.x support.

  • GNUmakefile.am:

WebKit/gtk:

2010-06-28 Xan Lopez <[email protected]>

Reviewed by Gustavo Noronha.

[GTK] Add support for GTK+3
https://bugs.webkit.org/show_bug.cgi?id=41253

Adapt build system for 3.x support, allow the JSCore gir and webkit
pc files to be configurable at build time for different API
versions.

  • JSCore-1.0.gir: Removed.
  • JSCore.gir.in: Added.
  • docs/GNUmakefile.am:
  • webkit.pc.in:

JavaScriptCore:

2010-06-28 Xan Lopez <[email protected]>

Reviewed by Gustavo Noronha.

[GTK] Add support for GTK+3
https://bugs.webkit.org/show_bug.cgi?id=41253

Suffix jsc with the API version of the library, so that
libwebkitgtk 1.x and 3.x can install jsc.

  • GNUmakefile.am:

WebKitTools:

2010-06-28 Xan Lopez <[email protected]>

Reviewed by Gustavo Noronha.

[GTK] Add support for GTK+3
https://bugs.webkit.org/show_bug.cgi?id=41253

Adapt build system for 3.x support.

  • GNUmakefile.am:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r61969 r62001  
     12010-06-28  Xan Lopez  <[email protected]>
     2
     3        Reviewed by Gustavo Noronha.
     4
     5        [GTK] Add support for GTK+3
     6        https://bugs.webkit.org/show_bug.cgi?id=41253
     7
     8        Suffix jsc with the API version of the library, so that
     9        libwebkitgtk 1.x and 3.x can install jsc.
     10
     11        * GNUmakefile.am:
     12
    1132010-06-27  Kwang Yul Seo  <[email protected]>
    214
  • trunk/JavaScriptCore/GNUmakefile.am

    r61878 r62001  
    570570
    571571bin_PROGRAMS += \
    572         Programs/jsc
     572        Programs/jsc-@WEBKITGTK_API_MAJOR_VERSION@
    573573
    574574noinst_PROGRAMS += \
     
    607607
    608608# jsc
    609 Programs_jsc_SOURCES = \
     609Programs_jsc_@WEBKITGTK_API_MAJOR_VERSION@_SOURCES = \
    610610        JavaScriptCore/jsc.cpp
    611611
    612 Programs_jsc_CPPFLAGS = \
     612Programs_jsc_@WEBKITGTK_API_MAJOR_VERSION@_CPPFLAGS = \
    613613        $(global_cppflags) \
    614614        $(javascriptcore_cppflags)
    615615
    616 Programs_jsc_CXXFLAGS = \
     616Programs_jsc_@WEBKITGTK_API_MAJOR_VERSION@_CXXFLAGS = \
    617617        -fno-strict-aliasing \
    618618        $(global_cxxflags) \
     
    621621        $(UNICODE_CFLAGS)
    622622
    623 Programs_jsc_LDADD = \
     623Programs_jsc_@WEBKITGTK_API_MAJOR_VERSION@_LDADD = \
    624624        libJavaScriptCore.la
    625625
     
    650650        JavaScriptCore/runtime/StringPrototype.lut.h \
    651651        JavaScriptCore/pcre/chartables.c \
    652         Programs/jsc \
     652        Programs/jsc-@WEBKITGTK_API_MAJOR_VERSION@ \
    653653        Programs/minidom
Note: See TracChangeset for help on using the changeset viewer.