forked from WebKit/WebKit-http
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GTK] WebKit2WebExtension GIR can't be used in vala
https://bugs.webkit.org/show_bug.cgi?id=127179 Reviewed by Martin Robinson. Add a different pkg-config file for the web extensions API. .: * Source/cmake/OptionsGTK.cmake: * configure.ac: Source/WebKit2: * GNUmakefile.am: * PlatformGTK.cmake: * webkit2gtk-web-extension.pc.in: Added. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@164973 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
1 parent
144735f
commit 8cb949d
Showing
7 changed files
with
47 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
2014-03-03 Carlos Garcia Campos <[email protected]> | ||
|
||
[GTK] WebKit2WebExtension GIR can't be used in vala | ||
https://bugs.webkit.org/show_bug.cgi?id=127179 | ||
|
||
Reviewed by Martin Robinson. | ||
|
||
Add a different pkg-config file for the web extensions API. | ||
|
||
* Source/cmake/OptionsGTK.cmake: | ||
* configure.ac: | ||
|
||
2014-03-02 Dirkjan Ochtman <[email protected]> | ||
|
||
Support ENABLE_ENCRYPTED_MEDIA in cmake builds | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
2014-03-03 Carlos Garcia Campos <[email protected]> | ||
|
||
[GTK] WebKit2WebExtension GIR can't be used in vala | ||
https://bugs.webkit.org/show_bug.cgi?id=127179 | ||
|
||
Reviewed by Martin Robinson. | ||
|
||
Add a different pkg-config file for the web extensions API. | ||
|
||
* GNUmakefile.am: | ||
* PlatformGTK.cmake: | ||
* webkit2gtk-web-extension.pc.in: Added. | ||
|
||
2014-03-02 Darin Adler <[email protected]> | ||
|
||
Streamline use of TextIterator, cutting down includes and use of soon-to-be-deleted functions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -285,7 +285,9 @@ webkit2gtk_h_api += \ | |
$(webkit2gtk_web_extension_h_api) | ||
|
||
if ENABLE_WEBKIT2 | ||
pkgconfig_DATA += Source/WebKit2/webkit2gtk-@[email protected] | ||
pkgconfig_DATA += \ | ||
Source/WebKit2/webkit2gtk-@[email protected] \ | ||
Source/WebKit2/webkit2gtk-web-extension-@[email protected] | ||
|
||
if ENABLE_INTROSPECTION | ||
|
||
|
@@ -358,7 +360,7 @@ WebKit2WebExtension-@[email protected]: $(G_IR_SCANNER) WebKit2-@WEBKIT | |
--pkg=gobject-2.0 \ | ||
--pkg=gtk+-@GTK_API_VERSION@ \ | ||
--pkg=libsoup-2.4 \ | ||
--pkg-export=webkit2gtk-@WEBKITGTK_API_VERSION@ \ | ||
--pkg-export=webkit2gtk-web-extension-@WEBKITGTK_API_VERSION@ \ | ||
--output=$@ \ | ||
--add-include-path=$(WebKit2) \ | ||
--add-include-path=$(top_builddir) \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
prefix=@prefix@ | ||
exec_prefix=@exec_prefix@ | ||
libdir=@libdir@ | ||
includedir=@includedir@ | ||
|
||
Name: WebKit2WebExtension | ||
Description: WebKit web process extensions | ||
Version: @VERSION@ | ||
Requires: glib-2.0 gtk+-@GTK_API_VERSION@ libsoup-2.4 javascriptcoregtk-@WEBKITGTK_API_VERSION@ | ||
Libs: -L${libdir} -lwebkit2gtk-@WEBKITGTK_API_VERSION@ | ||
Cflags: -I${includedir}/webkitgtk-@WEBKITGTK_API_VERSION@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters