Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] package/qt: webkit needs gst-plugins-base
@ 2016-08-14 23:11 Yann E. MORIN
  2016-08-15 10:42 ` Yann E. MORIN
  0 siblings, 1 reply; 2+ messages in thread
From: Yann E. MORIN @ 2016-08-14 23:11 UTC (permalink / raw)
  To: buildroot

Fixes:
    http://autobuild.buildroot.org/results/84d/84d338b70c8ce3f21dd202de387326f18526aa63/
    http://autobuild.buildroot.org/results/379/379ad4eadf5af7e1d5b977bc229d3fcaba25b4fe/
    [...]

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
---
 package/qt/Config.in | 8 ++++++--
 package/qt/qt.mk     | 1 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/package/qt/Config.in b/package/qt/Config.in
index b9752d3..acb30d2 100644
--- a/package/qt/Config.in
+++ b/package/qt/Config.in
@@ -469,14 +469,18 @@ config BR2_PACKAGE_QT_WEBKIT
 	depends on BR2_PACKAGE_QT_NETWORK
 	depends on BR2_PACKAGE_QT_ARCH_SUPPORTS_WEBKIT
 	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # needs pthread_getattr_np()
+	depends on BR2_USE_WCHAR # gstreamer <- glib2
+	select BR2_PACKAGE_GSTREAMER
+	select BR2_PACKAGE_GST_PLUGINS_BASE
+	select BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_APP
 	help
 	  Build the WebKit module.
 	  If unsure, say n.
 
-comment "WebKit needs shared library/NPTL toolchain/script/gui/network support"
+comment "WebKit needs shared library/NPTL/wchar toolchain/script/gui/network support"
 	depends on !(BR2_PACKAGE_QT_SCRIPT && BR2_PACKAGE_QT_SHARED && \
 		BR2_PACKAGE_QT_GUI_MODULE && BR2_PACKAGE_QT_NETWORK)
-	depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
+	depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_USE_WCHAR
 	depends on BR2_PACKAGE_QT_ARCH_SUPPORTS_WEBKIT
 
 config BR2_PACKAGE_QT_STL
diff --git a/package/qt/qt.mk b/package/qt/qt.mk
index c2d2e9c..09b8dc2 100644
--- a/package/qt/qt.mk
+++ b/package/qt/qt.mk
@@ -429,6 +429,7 @@ endif
 
 ifeq ($(BR2_PACKAGE_QT_WEBKIT),y)
 QT_CONFIGURE_OPTS += -webkit
+QT_DEPENDENCIES += gstreamer gst-plugins-base
 else
 QT_CONFIGURE_OPTS += -no-webkit
 endif
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [Buildroot] [PATCH] package/qt: webkit needs gst-plugins-base
  2016-08-14 23:11 [Buildroot] [PATCH] package/qt: webkit needs gst-plugins-base Yann E. MORIN
@ 2016-08-15 10:42 ` Yann E. MORIN
  0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2016-08-15 10:42 UTC (permalink / raw)
  To: buildroot

All,

On 2016-08-15 01:11 +0200, Yann E. MORIN spake thusly:
> Fixes:
>     http://autobuild.buildroot.org/results/84d/84d338b70c8ce3f21dd202de387326f18526aa63/
>     http://autobuild.buildroot.org/results/379/379ad4eadf5af7e1d5b977bc229d3fcaba25b4fe/
>     [...]

I withdraw that patch, it causes circular dependencies in kconfig.

Sorry for the noise...

Regards,
Yann E. MORIN.

> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
> ---
>  package/qt/Config.in | 8 ++++++--
>  package/qt/qt.mk     | 1 +
>  2 files changed, 7 insertions(+), 2 deletions(-)
> 
> diff --git a/package/qt/Config.in b/package/qt/Config.in
> index b9752d3..acb30d2 100644
> --- a/package/qt/Config.in
> +++ b/package/qt/Config.in
> @@ -469,14 +469,18 @@ config BR2_PACKAGE_QT_WEBKIT
>  	depends on BR2_PACKAGE_QT_NETWORK
>  	depends on BR2_PACKAGE_QT_ARCH_SUPPORTS_WEBKIT
>  	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # needs pthread_getattr_np()
> +	depends on BR2_USE_WCHAR # gstreamer <- glib2
> +	select BR2_PACKAGE_GSTREAMER
> +	select BR2_PACKAGE_GST_PLUGINS_BASE
> +	select BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_APP
>  	help
>  	  Build the WebKit module.
>  	  If unsure, say n.
>  
> -comment "WebKit needs shared library/NPTL toolchain/script/gui/network support"
> +comment "WebKit needs shared library/NPTL/wchar toolchain/script/gui/network support"
>  	depends on !(BR2_PACKAGE_QT_SCRIPT && BR2_PACKAGE_QT_SHARED && \
>  		BR2_PACKAGE_QT_GUI_MODULE && BR2_PACKAGE_QT_NETWORK)
> -	depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
> +	depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || !BR2_USE_WCHAR
>  	depends on BR2_PACKAGE_QT_ARCH_SUPPORTS_WEBKIT
>  
>  config BR2_PACKAGE_QT_STL
> diff --git a/package/qt/qt.mk b/package/qt/qt.mk
> index c2d2e9c..09b8dc2 100644
> --- a/package/qt/qt.mk
> +++ b/package/qt/qt.mk
> @@ -429,6 +429,7 @@ endif
>  
>  ifeq ($(BR2_PACKAGE_QT_WEBKIT),y)
>  QT_CONFIGURE_OPTS += -webkit
> +QT_DEPENDENCIES += gstreamer gst-plugins-base
>  else
>  QT_CONFIGURE_OPTS += -no-webkit
>  endif
> -- 
> 2.7.4
> 

-- 
.-----------------.--------------------.------------------.--------------------.
|  Yann E. MORIN  | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software  Designer | \ / CAMPAIGN     |  ___               |
| +33 223 225 172 `------------.-------:  X  AGAINST      |  \e/  There is no  |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL    |   v   conspiracy.  |
'------------------------------^-------^------------------^--------------------'

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2016-08-15 10:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-14 23:11 [Buildroot] [PATCH] package/qt: webkit needs gst-plugins-base Yann E. MORIN
2016-08-15 10:42 ` Yann E. MORIN

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox