Title: [116533] trunk
- Revision
- 116533
- Author
- [email protected]
- Date
- 2012-05-09 09:05:13 -0700 (Wed, 09 May 2012)
Log 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/_javascript_Core:
* GNUmakefile.am: Use LIBJAVASCRIPTCOREGTK_VERSION for library
version.
Source/WebKit2:
* GNUmakefile.am: Use LIBWEBKIT2GTK_VERSION for library version.
Modified Paths
Diff
Modified: trunk/ChangeLog (116532 => 116533)
--- trunk/ChangeLog 2012-05-09 16:02:35 UTC (rev 116532)
+++ trunk/ChangeLog 2012-05-09 16:05:13 UTC (rev 116533)
@@ -1,3 +1,14 @@
+2012-05-09 Carlos Garcia Campos <[email protected]>
+
+ [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.
+
2012-05-08 Raphael Kubo da Costa <[email protected]>
[CMake] FindGStreamer: Fix the build with static WebCore.
Modified: trunk/Source/_javascript_Core/ChangeLog (116532 => 116533)
--- trunk/Source/_javascript_Core/ChangeLog 2012-05-09 16:02:35 UTC (rev 116532)
+++ trunk/Source/_javascript_Core/ChangeLog 2012-05-09 16:05:13 UTC (rev 116533)
@@ -1,5 +1,15 @@
2012-05-09 Carlos Garcia Campos <[email protected]>
+ [GTK] Use independent version numbers for public libraries
+ https://bugs.webkit.org/show_bug.cgi?id=85984
+
+ Reviewed by Gustavo Noronha Silva.
+
+ * GNUmakefile.am: Use LIBJAVASCRIPTCOREGTK_VERSION for library
+ version.
+
+2012-05-09 Carlos Garcia Campos <[email protected]>
+
[GTK] Do not install _javascript_Core platform-specific headers
https://bugs.webkit.org/show_bug.cgi?id=85983
Modified: trunk/Source/_javascript_Core/GNUmakefile.am (116532 => 116533)
--- trunk/Source/_javascript_Core/GNUmakefile.am 2012-05-09 16:02:35 UTC (rev 116532)
+++ trunk/Source/_javascript_Core/GNUmakefile.am 2012-05-09 16:05:13 UTC (rev 116533)
@@ -7,7 +7,7 @@
# https://bugs.webkit.org/show_bug.cgi?id=27551 is fixed we'll able to
# simply rely on the usual symbol visibility flags.
libjavascriptcoregtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_LDFLAGS = \
- -version-info @LIBWEBKITGTK_VERSION@ \
+ -version-info @LIBJAVASCRIPTCOREGTK_VERSION@ \
$(no_undefined)
nodist_EXTRA_libjavascriptcoregtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_SOURCES = \
Modified: trunk/Source/WebKit2/ChangeLog (116532 => 116533)
--- trunk/Source/WebKit2/ChangeLog 2012-05-09 16:02:35 UTC (rev 116532)
+++ trunk/Source/WebKit2/ChangeLog 2012-05-09 16:05:13 UTC (rev 116533)
@@ -1,3 +1,12 @@
+2012-05-09 Carlos Garcia Campos <[email protected]>
+
+ [GTK] Use independent version numbers for public libraries
+ https://bugs.webkit.org/show_bug.cgi?id=85984
+
+ Reviewed by Gustavo Noronha Silva.
+
+ * GNUmakefile.am: Use LIBWEBKIT2GTK_VERSION for library version.
+
2012-05-09 Allan Sandfeld Jensen <[email protected]>
[Qt] Tap-to-zoom zooms to wrong area.
Modified: trunk/Source/WebKit2/GNUmakefile.am (116532 => 116533)
--- trunk/Source/WebKit2/GNUmakefile.am 2012-05-09 16:02:35 UTC (rev 116532)
+++ trunk/Source/WebKit2/GNUmakefile.am 2012-05-09 16:05:13 UTC (rev 116533)
@@ -1158,7 +1158,7 @@
endif
libwebkit2gtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_LDFLAGS = \
- -version-info @LIBWEBKITGTK_VERSION@ \
+ -version-info @LIBWEBKIT2GTK_VERSION@ \
$(version_script) \
$(no_undefined)
Modified: trunk/configure.ac (116532 => 116533)
--- trunk/configure.ac 2012-05-09 16:02:35 UTC (rev 116532)
+++ trunk/configure.ac 2012-05-09 16:05:13 UTC (rev 116533)
@@ -38,6 +38,12 @@
LIBWEBKITGTK_VERSION=13:1:13
AC_SUBST([LIBWEBKITGTK_VERSION])
+LIBJAVASCRIPTCOREGTK_VERSION=13:1:13
+AC_SUBST([LIBJAVASCRIPTCOREGTK_VERSION])
+
+LIBWEBKIT2GTK_VERSION=13:1:13
+AC_SUBST([LIBWEBKIT2GTK_VERSION])
+
AM_INIT_AUTOMAKE([foreign subdir-objects dist-xz no-dist-gzip tar-ustar])
# Use AM_SILENT_RULES if present
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes