Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] Qt: add config option to build libQtDeclarative module
@ 2011-05-31 16:16 Daniel Mack
  2011-06-07  8:36 ` Daniel Mack
  2011-06-20 10:06 ` Peter Korsgaard
  0 siblings, 2 replies; 6+ messages in thread
From: Daniel Mack @ 2011-05-31 16:16 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Daniel Mack <zonque@gmail.com>
---
 package/qt/Config.in |    7 +++++++
 package/qt/qt.mk     |    9 +++++++++
 2 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/package/qt/Config.in b/package/qt/Config.in
index 4a3945c..214f140 100644
--- a/package/qt/Config.in
+++ b/package/qt/Config.in
@@ -378,4 +378,11 @@ config BR2_PACKAGE_QT_SCRIPTTOOLS
 	  Build the Qt Script Tools module.
 	  if unsure, say n.
 
+config BR2_PACKAGE_QT_DECLARATIVE
+	bool "Declarative module"
+	depends on BR2_PACKAGE_QT_GUI_MODULE
+	help
+	  Build the Qt Declarative Module for qml support
+	  if unsure, say n.
+
 endif # BR2_PACKAGE_QT
diff --git a/package/qt/qt.mk b/package/qt/qt.mk
index 8bcbd3f..e8b7a49 100644
--- a/package/qt/qt.mk
+++ b/package/qt/qt.mk
@@ -398,6 +398,12 @@ else
 QT_CONFIGURE_OPTS += -no-stl
 endif
 
+ifeq ($(BR2_PACKAGE_QT_DECLARATIVE),y)
+QT_CONFIGURE_OPTS += -declarative
+else
+QT_CONFIGURE_OPTS += -no-declarative
+endif
+
 # ccache and precompiled headers don't play well together
 ifeq ($(BR2_CCACHE),y)
 QT_CONFIGURE_OPTS += -no-pch
@@ -535,6 +541,9 @@ endif
 ifeq ($(BR2_PACKAGE_QT_SCRIPTTOOLS),y)
 QT_INSTALL_LIBS    += QtScriptTools
 endif
+ifeq ($(BR2_PACKAGE_QT_DECLARATIVE),y)
+QT_INSTALL_LIBS    += QtDeclarative
+endif
 ifeq ($(BR2_PACKAGE_QT_QT3SUPPORT),y)
 QT_INSTALL_LIBS    += Qt3Support
 endif
-- 
1.7.5.1

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

* [Buildroot] [PATCH] Qt: add config option to build libQtDeclarative module
  2011-05-31 16:16 [Buildroot] [PATCH] Qt: add config option to build libQtDeclarative module Daniel Mack
@ 2011-06-07  8:36 ` Daniel Mack
  2011-06-17  9:07   ` Daniel Mack
  2011-06-20 10:06 ` Peter Korsgaard
  1 sibling, 1 reply; 6+ messages in thread
From: Daniel Mack @ 2011-06-07  8:36 UTC (permalink / raw)
  To: buildroot

I just wanted to ping on this one.
I haven't contributed to BR2 for awhile, so I don't know who's able to
pick and commit this one?

Thanks,
Daniel


On Tue, May 31, 2011 at 6:16 PM, Daniel Mack <zonque@gmail.com> wrote:
> Signed-off-by: Daniel Mack <zonque@gmail.com>
> ---
> ?package/qt/Config.in | ? ?7 +++++++
> ?package/qt/qt.mk ? ? | ? ?9 +++++++++
> ?2 files changed, 16 insertions(+), 0 deletions(-)
>
> diff --git a/package/qt/Config.in b/package/qt/Config.in
> index 4a3945c..214f140 100644
> --- a/package/qt/Config.in
> +++ b/package/qt/Config.in
> @@ -378,4 +378,11 @@ config BR2_PACKAGE_QT_SCRIPTTOOLS
> ? ? ? ? ?Build the Qt Script Tools module.
> ? ? ? ? ?if unsure, say n.
>
> +config BR2_PACKAGE_QT_DECLARATIVE
> + ? ? ? bool "Declarative module"
> + ? ? ? depends on BR2_PACKAGE_QT_GUI_MODULE
> + ? ? ? help
> + ? ? ? ? Build the Qt Declarative Module for qml support
> + ? ? ? ? if unsure, say n.
> +
> ?endif # BR2_PACKAGE_QT
> diff --git a/package/qt/qt.mk b/package/qt/qt.mk
> index 8bcbd3f..e8b7a49 100644
> --- a/package/qt/qt.mk
> +++ b/package/qt/qt.mk
> @@ -398,6 +398,12 @@ else
> ?QT_CONFIGURE_OPTS += -no-stl
> ?endif
>
> +ifeq ($(BR2_PACKAGE_QT_DECLARATIVE),y)
> +QT_CONFIGURE_OPTS += -declarative
> +else
> +QT_CONFIGURE_OPTS += -no-declarative
> +endif
> +
> ?# ccache and precompiled headers don't play well together
> ?ifeq ($(BR2_CCACHE),y)
> ?QT_CONFIGURE_OPTS += -no-pch
> @@ -535,6 +541,9 @@ endif
> ?ifeq ($(BR2_PACKAGE_QT_SCRIPTTOOLS),y)
> ?QT_INSTALL_LIBS ? ?+= QtScriptTools
> ?endif
> +ifeq ($(BR2_PACKAGE_QT_DECLARATIVE),y)
> +QT_INSTALL_LIBS ? ?+= QtDeclarative
> +endif
> ?ifeq ($(BR2_PACKAGE_QT_QT3SUPPORT),y)
> ?QT_INSTALL_LIBS ? ?+= Qt3Support
> ?endif
> --
> 1.7.5.1
>
>

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

* [Buildroot] [PATCH] Qt: add config option to build libQtDeclarative module
  2011-06-07  8:36 ` Daniel Mack
@ 2011-06-17  9:07   ` Daniel Mack
  2011-06-17 11:30     ` Daniel Nyström
  0 siblings, 1 reply; 6+ messages in thread
From: Daniel Mack @ 2011-06-17  9:07 UTC (permalink / raw)
  To: buildroot

ping ...

On Tue, Jun 7, 2011 at 10:36 AM, Daniel Mack <zonque@gmail.com> wrote:
> I just wanted to ping on this one.
> I haven't contributed to BR2 for awhile, so I don't know who's able to
> pick and commit this one?
>
> Thanks,
> Daniel
>
>
> On Tue, May 31, 2011 at 6:16 PM, Daniel Mack <zonque@gmail.com> wrote:
>> Signed-off-by: Daniel Mack <zonque@gmail.com>
>> ---
>> ?package/qt/Config.in | ? ?7 +++++++
>> ?package/qt/qt.mk ? ? | ? ?9 +++++++++
>> ?2 files changed, 16 insertions(+), 0 deletions(-)
>>
>> diff --git a/package/qt/Config.in b/package/qt/Config.in
>> index 4a3945c..214f140 100644
>> --- a/package/qt/Config.in
>> +++ b/package/qt/Config.in
>> @@ -378,4 +378,11 @@ config BR2_PACKAGE_QT_SCRIPTTOOLS
>> ? ? ? ? ?Build the Qt Script Tools module.
>> ? ? ? ? ?if unsure, say n.
>>
>> +config BR2_PACKAGE_QT_DECLARATIVE
>> + ? ? ? bool "Declarative module"
>> + ? ? ? depends on BR2_PACKAGE_QT_GUI_MODULE
>> + ? ? ? help
>> + ? ? ? ? Build the Qt Declarative Module for qml support
>> + ? ? ? ? if unsure, say n.
>> +
>> ?endif # BR2_PACKAGE_QT
>> diff --git a/package/qt/qt.mk b/package/qt/qt.mk
>> index 8bcbd3f..e8b7a49 100644
>> --- a/package/qt/qt.mk
>> +++ b/package/qt/qt.mk
>> @@ -398,6 +398,12 @@ else
>> ?QT_CONFIGURE_OPTS += -no-stl
>> ?endif
>>
>> +ifeq ($(BR2_PACKAGE_QT_DECLARATIVE),y)
>> +QT_CONFIGURE_OPTS += -declarative
>> +else
>> +QT_CONFIGURE_OPTS += -no-declarative
>> +endif
>> +
>> ?# ccache and precompiled headers don't play well together
>> ?ifeq ($(BR2_CCACHE),y)
>> ?QT_CONFIGURE_OPTS += -no-pch
>> @@ -535,6 +541,9 @@ endif
>> ?ifeq ($(BR2_PACKAGE_QT_SCRIPTTOOLS),y)
>> ?QT_INSTALL_LIBS ? ?+= QtScriptTools
>> ?endif
>> +ifeq ($(BR2_PACKAGE_QT_DECLARATIVE),y)
>> +QT_INSTALL_LIBS ? ?+= QtDeclarative
>> +endif
>> ?ifeq ($(BR2_PACKAGE_QT_QT3SUPPORT),y)
>> ?QT_INSTALL_LIBS ? ?+= Qt3Support
>> ?endif
>> --
>> 1.7.5.1
>>
>>
>

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

* [Buildroot] [PATCH] Qt: add config option to build libQtDeclarative module
  2011-06-17  9:07   ` Daniel Mack
@ 2011-06-17 11:30     ` Daniel Nyström
  0 siblings, 0 replies; 6+ messages in thread
From: Daniel Nyström @ 2011-06-17 11:30 UTC (permalink / raw)
  To: buildroot

Thanks for this patch, Daniel. Can't see any obvious errors (and
support for QtDeclaratives is very appreciated), so acking this:

Acked-by: Daniel Nystr?m <daniel.nystrom@timeterminal.se>



2011/6/17 Daniel Mack <zonque@gmail.com>:
> ping ...
>
> On Tue, Jun 7, 2011 at 10:36 AM, Daniel Mack <zonque@gmail.com> wrote:
>> I just wanted to ping on this one.
>> I haven't contributed to BR2 for awhile, so I don't know who's able to
>> pick and commit this one?
>>
>> Thanks,
>> Daniel
>>
>>
>> On Tue, May 31, 2011 at 6:16 PM, Daniel Mack <zonque@gmail.com> wrote:
>>> Signed-off-by: Daniel Mack <zonque@gmail.com>
>>> ---
>>> ?package/qt/Config.in | ? ?7 +++++++
>>> ?package/qt/qt.mk ? ? | ? ?9 +++++++++
>>> ?2 files changed, 16 insertions(+), 0 deletions(-)
>>>
>>> diff --git a/package/qt/Config.in b/package/qt/Config.in
>>> index 4a3945c..214f140 100644
>>> --- a/package/qt/Config.in
>>> +++ b/package/qt/Config.in
>>> @@ -378,4 +378,11 @@ config BR2_PACKAGE_QT_SCRIPTTOOLS
>>> ? ? ? ? ?Build the Qt Script Tools module.
>>> ? ? ? ? ?if unsure, say n.
>>>
>>> +config BR2_PACKAGE_QT_DECLARATIVE
>>> + ? ? ? bool "Declarative module"
>>> + ? ? ? depends on BR2_PACKAGE_QT_GUI_MODULE
>>> + ? ? ? help
>>> + ? ? ? ? Build the Qt Declarative Module for qml support
>>> + ? ? ? ? if unsure, say n.
>>> +
>>> ?endif # BR2_PACKAGE_QT
>>> diff --git a/package/qt/qt.mk b/package/qt/qt.mk
>>> index 8bcbd3f..e8b7a49 100644
>>> --- a/package/qt/qt.mk
>>> +++ b/package/qt/qt.mk
>>> @@ -398,6 +398,12 @@ else
>>> ?QT_CONFIGURE_OPTS += -no-stl
>>> ?endif
>>>
>>> +ifeq ($(BR2_PACKAGE_QT_DECLARATIVE),y)
>>> +QT_CONFIGURE_OPTS += -declarative
>>> +else
>>> +QT_CONFIGURE_OPTS += -no-declarative
>>> +endif
>>> +
>>> ?# ccache and precompiled headers don't play well together
>>> ?ifeq ($(BR2_CCACHE),y)
>>> ?QT_CONFIGURE_OPTS += -no-pch
>>> @@ -535,6 +541,9 @@ endif
>>> ?ifeq ($(BR2_PACKAGE_QT_SCRIPTTOOLS),y)
>>> ?QT_INSTALL_LIBS ? ?+= QtScriptTools
>>> ?endif
>>> +ifeq ($(BR2_PACKAGE_QT_DECLARATIVE),y)
>>> +QT_INSTALL_LIBS ? ?+= QtDeclarative
>>> +endif
>>> ?ifeq ($(BR2_PACKAGE_QT_QT3SUPPORT),y)
>>> ?QT_INSTALL_LIBS ? ?+= Qt3Support
>>> ?endif
>>> --
>>> 1.7.5.1
>>>
>>>
>>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
>

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

* [Buildroot] [PATCH] Qt: add config option to build libQtDeclarative module
  2011-05-31 16:16 [Buildroot] [PATCH] Qt: add config option to build libQtDeclarative module Daniel Mack
  2011-06-07  8:36 ` Daniel Mack
@ 2011-06-20 10:06 ` Peter Korsgaard
  2011-06-20 11:33   ` Daniel Mack
  1 sibling, 1 reply; 6+ messages in thread
From: Peter Korsgaard @ 2011-06-20 10:06 UTC (permalink / raw)
  To: buildroot

>>>>> "Daniel" == Daniel Mack <zonque@gmail.com> writes:

 Daniel> Signed-off-by: Daniel Mack <zonque@gmail.com>

Committed, thanks - And sorry for the slow response.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] Qt: add config option to build libQtDeclarative module
  2011-06-20 10:06 ` Peter Korsgaard
@ 2011-06-20 11:33   ` Daniel Mack
  0 siblings, 0 replies; 6+ messages in thread
From: Daniel Mack @ 2011-06-20 11:33 UTC (permalink / raw)
  To: buildroot

On Mon, Jun 20, 2011 at 12:06 PM, Peter Korsgaard <jacmet@uclibc.org> wrote:
>>>>>> "Daniel" == Daniel Mack <zonque@gmail.com> writes:
>
> ?Daniel> Signed-off-by: Daniel Mack <zonque@gmail.com>
>
> Committed, thanks - And sorry for the slow response.

Thank you - I was already worried :)

There's another patch pending regarding the DBus version bump. Can you
care for that one, too?


Daniel

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

end of thread, other threads:[~2011-06-20 11:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-31 16:16 [Buildroot] [PATCH] Qt: add config option to build libQtDeclarative module Daniel Mack
2011-06-07  8:36 ` Daniel Mack
2011-06-17  9:07   ` Daniel Mack
2011-06-17 11:30     ` Daniel Nyström
2011-06-20 10:06 ` Peter Korsgaard
2011-06-20 11:33   ` Daniel Mack

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