Changeset 116533 in webkit


Ignore:
Timestamp:
May 9, 2012 9:05:13 AM (12 years ago)
Author:
Carlos Garcia Campos
Message:

[GTK] Use independent version numbers for public libraries
https://bugs.webkit.org/show_bug.cgi?id=85984

Reviewed by Gustavo Noronha Silva.

.:

  • configure.ac: Define LIBJAVASCRIPTCOREGTK_VERSION and

LIBWEBKIT2GTK_VERSION using the same version as
LIBWEBKITGTK_VERSION for backwards compatibility.

Source/JavaScriptCore:

  • GNUmakefile.am: Use LIBJAVASCRIPTCOREGTK_VERSION for library

version.

Source/WebKit2:

  • GNUmakefile.am: Use LIBWEBKIT2GTK_VERSION for library version.
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r116468 r116533  
     12012-05-09  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Use independent version numbers for public libraries
     4        https://bugs.webkit.org/show_bug.cgi?id=85984
     5
     6        Reviewed by Gustavo Noronha Silva.
     7
     8        * configure.ac: Define LIBJAVASCRIPTCOREGTK_VERSION and
     9        LIBWEBKIT2GTK_VERSION using the same version as
     10        LIBWEBKITGTK_VERSION for backwards compatibility.
     11
    1122012-05-08  Raphael Kubo da Costa  <rakuco@webkit.org>
    213
  • trunk/Source/JavaScriptCore/ChangeLog

    r116532 r116533  
     12012-05-09  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Use independent version numbers for public libraries
     4        https://bugs.webkit.org/show_bug.cgi?id=85984
     5
     6        Reviewed by Gustavo Noronha Silva.
     7
     8        * GNUmakefile.am: Use LIBJAVASCRIPTCOREGTK_VERSION for library
     9        version.
     10
    1112012-05-09  Carlos Garcia Campos  <cgarcia@igalia.com>
    212
  • trunk/Source/JavaScriptCore/GNUmakefile.am

    r111778 r116533  
    88# simply rely on the usual symbol visibility flags.
    99libjavascriptcoregtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_LDFLAGS = \
    10         -version-info @LIBWEBKITGTK_VERSION@ \
     10        -version-info @LIBJAVASCRIPTCOREGTK_VERSION@ \
    1111        $(no_undefined)
    1212
  • trunk/Source/WebKit2/ChangeLog

    r116520 r116533  
     12012-05-09  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Use independent version numbers for public libraries
     4        https://bugs.webkit.org/show_bug.cgi?id=85984
     5
     6        Reviewed by Gustavo Noronha Silva.
     7
     8        * GNUmakefile.am: Use LIBWEBKIT2GTK_VERSION for library version.
     9
    1102012-05-09  Allan Sandfeld Jensen  <allan.jensen@nokia.com>
    211
  • trunk/Source/WebKit2/GNUmakefile.am

    r116205 r116533  
    11591159
    11601160libwebkit2gtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_LDFLAGS = \
    1161         -version-info @LIBWEBKITGTK_VERSION@ \
     1161        -version-info @LIBWEBKIT2GTK_VERSION@ \
    11621162        $(version_script) \
    11631163        $(no_undefined)
  • trunk/configure.ac

    r116256 r116533  
    3838LIBWEBKITGTK_VERSION=13:1:13
    3939AC_SUBST([LIBWEBKITGTK_VERSION])
     40
     41LIBJAVASCRIPTCOREGTK_VERSION=13:1:13
     42AC_SUBST([LIBJAVASCRIPTCOREGTK_VERSION])
     43
     44LIBWEBKIT2GTK_VERSION=13:1:13
     45AC_SUBST([LIBWEBKIT2GTK_VERSION])
    4046
    4147AM_INIT_AUTOMAKE([foreign subdir-objects dist-xz no-dist-gzip tar-ustar])
Note: See TracChangeset for help on using the changeset viewer.