All of lore.kernel.org
 help / color / mirror / Atom feed
* [STABLE][PATCH] qt4-tools-native: set LFLAGS to pick up zlib from staging
@ 2009-04-03  5:39 Jeremy Lainé
  2009-04-03 11:19 ` Marcin Juszkiewicz
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jeremy Lainé @ 2009-04-03  5:39 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Jeremy Lainé

From: Jeremy Lainé <jeremy.laine@m4x.org>


Signed-off-by: Jeremy Lainé <jeremy.laine@m4x.org>
---
 recipes/qt4/files/configure-lflags.patch |   13 +++++++++++++
 recipes/qt4/qt4-tools-native.inc         |    3 ++-
 recipes/qt4/qt4-tools-native_4.4.3.bb    |    2 +-
 recipes/qt4/qt4-tools-native_4.5.0.bb    |    2 +-
 4 files changed, 17 insertions(+), 3 deletions(-)
 create mode 100644 recipes/qt4/files/configure-lflags.patch

diff --git a/recipes/qt4/files/configure-lflags.patch b/recipes/qt4/files/configure-lflags.patch
new file mode 100644
index 0000000..df19549
--- /dev/null
+++ b/recipes/qt4/files/configure-lflags.patch
@@ -0,0 +1,13 @@
+Index: qtopia-core-opensource-src-4.3.3/configure
+===================================================================
+--- qtopia-core-opensource-src-4.3.3.orig/configure	2008-01-14 08:53:51.000000000 +0000
++++ qtopia-core-opensource-src-4.3.3/configure	2008-01-14 08:54:07.000000000 +0000
+@@ -447,7 +447,7 @@
+ # initalize variables
+ #-------------------------------------------------------------------------------
+ 
+-SYSTEM_VARIABLES="CC CXX CFLAGS CXXFLAGS LDFLAGS"
++SYSTEM_VARIABLES="CC CXX CFLAGS CXXFLAGS LDFLAGS LFLAGS"
+ for varname in $SYSTEM_VARIABLES; do
+     cmd=`echo \
+ 'if [ -n "\$'${varname}'" ]; then
diff --git a/recipes/qt4/qt4-tools-native.inc b/recipes/qt4/qt4-tools-native.inc
index fe2f94a..df5afd3 100644
--- a/recipes/qt4/qt4-tools-native.inc
+++ b/recipes/qt4/qt4-tools-native.inc
@@ -8,6 +8,7 @@ LICENSE = "GPL"
 inherit native
 
 SRC_URI = "ftp://ftp.trolltech.com/qt/source/qt-embedded-linux-opensource-src-${PV}.tar.bz2 \
+           file://configure-lflags.patch;patch=1 \
            file://qt-config.patch;patch=1 \
            file://g++.conf \
            file://linux.conf"
@@ -29,7 +30,7 @@ EXTRA_OECONF = "-prefix ${prefix} \
 EXTRA_OEMAKE = " "
 
 do_configure() {
-    echo yes | ./configure ${EXTRA_OECONF} || die "Configuring qt failed. EXTRA_OECONF was ${EXTRA_OECONF}"
+    echo yes | LFLAGS="-L${STAGING_LIBDIR_NATIVE}" ./configure ${EXTRA_OECONF} || die "Configuring qt failed. EXTRA_OECONF was ${EXTRA_OECONF}"
 }
 
 TOBUILD = "\
diff --git a/recipes/qt4/qt4-tools-native_4.4.3.bb b/recipes/qt4/qt4-tools-native_4.4.3.bb
index 8a8d46f..ef86db4 100644
--- a/recipes/qt4/qt4-tools-native_4.4.3.bb
+++ b/recipes/qt4/qt4-tools-native_4.4.3.bb
@@ -1,2 +1,2 @@
 require qt4-tools-native.inc
-PR = "r2"
+PR = "r3"
diff --git a/recipes/qt4/qt4-tools-native_4.5.0.bb b/recipes/qt4/qt4-tools-native_4.5.0.bb
index 6e5474b..ab63314 100644
--- a/recipes/qt4/qt4-tools-native_4.5.0.bb
+++ b/recipes/qt4/qt4-tools-native_4.5.0.bb
@@ -1,5 +1,5 @@
 require qt4-tools-native.inc
-PR = "r0"
+PR = "r1"
 
 DEFAULT_PREFERENCE = "-1"
 TOBUILD := "src/tools/bootstrap ${TOBUILD}"
-- 
1.5.6.5



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

* Re: [STABLE][PATCH] qt4-tools-native: set LFLAGS to pick up zlib from staging
  2009-04-03  5:39 [STABLE][PATCH] qt4-tools-native: set LFLAGS to pick up zlib from staging Jeremy Lainé
@ 2009-04-03 11:19 ` Marcin Juszkiewicz
  2009-04-04  9:20 ` Koen Kooi
  2009-04-06 21:14 ` Khem Raj
  2 siblings, 0 replies; 4+ messages in thread
From: Marcin Juszkiewicz @ 2009-04-03 11:19 UTC (permalink / raw)
  To: openembedded-devel

Dnia piątek, 3 kwietnia 2009 o 07:39:54 Jeremy Lainé napisał(a):
> From: Jeremy Lainé <jeremy.laine@m4x.org>
>
>
> Signed-off-by: Jeremy Lainé <jeremy.laine@m4x.org>
Acked-by: Marcin Juszkiewicz <marcin@juszkiewicz.com.pl>

Regards, 
-- 
JID:      hrw@jabber.org
Website:  http://marcin.juszkiewicz.com.pl/
LinkedIn: http://www.linkedin.com/in/marcinjuszkiewicz





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

* Re: [STABLE][PATCH] qt4-tools-native: set LFLAGS to pick up zlib from staging
  2009-04-03  5:39 [STABLE][PATCH] qt4-tools-native: set LFLAGS to pick up zlib from staging Jeremy Lainé
  2009-04-03 11:19 ` Marcin Juszkiewicz
@ 2009-04-04  9:20 ` Koen Kooi
  2009-04-06 21:14 ` Khem Raj
  2 siblings, 0 replies; 4+ messages in thread
From: Koen Kooi @ 2009-04-04  9:20 UTC (permalink / raw)
  To: openembedded-devel

On 03-04-09 07:39, Jeremy Lainé wrote:
> From: Jeremy Lainé<jeremy.laine@m4x.org>

Acked-by: Koen Kooi <koen@openembedded.org>


>
>
> Signed-off-by: Jeremy Lainé<jeremy.laine@m4x.org>
> ---
>   recipes/qt4/files/configure-lflags.patch |   13 +++++++++++++
>   recipes/qt4/qt4-tools-native.inc         |    3 ++-
>   recipes/qt4/qt4-tools-native_4.4.3.bb    |    2 +-
>   recipes/qt4/qt4-tools-native_4.5.0.bb    |    2 +-
>   4 files changed, 17 insertions(+), 3 deletions(-)
>   create mode 100644 recipes/qt4/files/configure-lflags.patch
>
> diff --git a/recipes/qt4/files/configure-lflags.patch b/recipes/qt4/files/configure-lflags.patch
> new file mode 100644
> index 0000000..df19549
> --- /dev/null
> +++ b/recipes/qt4/files/configure-lflags.patch
> @@ -0,0 +1,13 @@
> +Index: qtopia-core-opensource-src-4.3.3/configure
> +===================================================================
> +--- qtopia-core-opensource-src-4.3.3.orig/configure	2008-01-14 08:53:51.000000000 +0000
> ++++ qtopia-core-opensource-src-4.3.3/configure	2008-01-14 08:54:07.000000000 +0000
> +@@ -447,7 +447,7 @@
> + # initalize variables
> + #-------------------------------------------------------------------------------
> +
> +-SYSTEM_VARIABLES="CC CXX CFLAGS CXXFLAGS LDFLAGS"
> ++SYSTEM_VARIABLES="CC CXX CFLAGS CXXFLAGS LDFLAGS LFLAGS"
> + for varname in $SYSTEM_VARIABLES; do
> +     cmd=`echo \
> + 'if [ -n "\$'${varname}'" ]; then
> diff --git a/recipes/qt4/qt4-tools-native.inc b/recipes/qt4/qt4-tools-native.inc
> index fe2f94a..df5afd3 100644
> --- a/recipes/qt4/qt4-tools-native.inc
> +++ b/recipes/qt4/qt4-tools-native.inc
> @@ -8,6 +8,7 @@ LICENSE = "GPL"
>   inherit native
>
>   SRC_URI = "ftp://ftp.trolltech.com/qt/source/qt-embedded-linux-opensource-src-${PV}.tar.bz2 \
> +           file://configure-lflags.patch;patch=1 \
>              file://qt-config.patch;patch=1 \
>              file://g++.conf \
>              file://linux.conf"
> @@ -29,7 +30,7 @@ EXTRA_OECONF = "-prefix ${prefix} \
>   EXTRA_OEMAKE = " "
>
>   do_configure() {
> -    echo yes | ./configure ${EXTRA_OECONF} || die "Configuring qt failed. EXTRA_OECONF was ${EXTRA_OECONF}"
> +    echo yes | LFLAGS="-L${STAGING_LIBDIR_NATIVE}" ./configure ${EXTRA_OECONF} || die "Configuring qt failed. EXTRA_OECONF was ${EXTRA_OECONF}"
>   }
>
>   TOBUILD = "\
> diff --git a/recipes/qt4/qt4-tools-native_4.4.3.bb b/recipes/qt4/qt4-tools-native_4.4.3.bb
> index 8a8d46f..ef86db4 100644
> --- a/recipes/qt4/qt4-tools-native_4.4.3.bb
> +++ b/recipes/qt4/qt4-tools-native_4.4.3.bb
> @@ -1,2 +1,2 @@
>   require qt4-tools-native.inc
> -PR = "r2"
> +PR = "r3"
> diff --git a/recipes/qt4/qt4-tools-native_4.5.0.bb b/recipes/qt4/qt4-tools-native_4.5.0.bb
> index 6e5474b..ab63314 100644
> --- a/recipes/qt4/qt4-tools-native_4.5.0.bb
> +++ b/recipes/qt4/qt4-tools-native_4.5.0.bb
> @@ -1,5 +1,5 @@
>   require qt4-tools-native.inc
> -PR = "r0"
> +PR = "r1"
>
>   DEFAULT_PREFERENCE = "-1"
>   TOBUILD := "src/tools/bootstrap ${TOBUILD}"





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

* Re: [STABLE][PATCH] qt4-tools-native: set LFLAGS to pick up zlib from staging
  2009-04-03  5:39 [STABLE][PATCH] qt4-tools-native: set LFLAGS to pick up zlib from staging Jeremy Lainé
  2009-04-03 11:19 ` Marcin Juszkiewicz
  2009-04-04  9:20 ` Koen Kooi
@ 2009-04-06 21:14 ` Khem Raj
  2 siblings, 0 replies; 4+ messages in thread
From: Khem Raj @ 2009-04-06 21:14 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Jeremy Lainé

On 4/2/09, Jeremy Lainé <jeremy.laine@bolloretelecom.eu> wrote:
> From: Jeremy Lainé <jeremy.laine@m4x.org>
>
>
> Signed-off-by: Jeremy Lainé <jeremy.laine@m4x.org>
> ---
>  recipes/qt4/files/configure-lflags.patch |   13 +++++++++++++
>  recipes/qt4/qt4-tools-native.inc         |    3 ++-
>  recipes/qt4/qt4-tools-native_4.4.3.bb    |    2 +-
>  recipes/qt4/qt4-tools-native_4.5.0.bb    |    2 +-
>  4 files changed, 17 insertions(+), 3 deletions(-)
>  create mode 100644 recipes/qt4/files/configure-lflags.patch
>
> diff --git a/recipes/qt4/files/configure-lflags.patch
> b/recipes/qt4/files/configure-lflags.patch
> new file mode 100644
> index 0000000..df19549
> --- /dev/null
> +++ b/recipes/qt4/files/configure-lflags.patch
> @@ -0,0 +1,13 @@
> +Index: qtopia-core-opensource-src-4.3.3/configure
> +===================================================================
> +--- qtopia-core-opensource-src-4.3.3.orig/configure	2008-01-14
> 08:53:51.000000000 +0000
> ++++ qtopia-core-opensource-src-4.3.3/configure	2008-01-14
> 08:54:07.000000000 +0000
> +@@ -447,7 +447,7 @@
> + # initalize variables
> +
> #-------------------------------------------------------------------------------
> +
> +-SYSTEM_VARIABLES="CC CXX CFLAGS CXXFLAGS LDFLAGS"
> ++SYSTEM_VARIABLES="CC CXX CFLAGS CXXFLAGS LDFLAGS LFLAGS"
> + for varname in $SYSTEM_VARIABLES; do
> +     cmd=`echo \
> + 'if [ -n "\$'${varname}'" ]; then
> diff --git a/recipes/qt4/qt4-tools-native.inc
> b/recipes/qt4/qt4-tools-native.inc
> index fe2f94a..df5afd3 100644
> --- a/recipes/qt4/qt4-tools-native.inc
> +++ b/recipes/qt4/qt4-tools-native.inc
> @@ -8,6 +8,7 @@ LICENSE = "GPL"
>  inherit native
>
>  SRC_URI =
> "ftp://ftp.trolltech.com/qt/source/qt-embedded-linux-opensource-src-${PV}.tar.bz2
> \
> +           file://configure-lflags.patch;patch=1 \
>             file://qt-config.patch;patch=1 \
>             file://g++.conf \
>             file://linux.conf"
> @@ -29,7 +30,7 @@ EXTRA_OECONF = "-prefix ${prefix} \
>  EXTRA_OEMAKE = " "
>
>  do_configure() {
> -    echo yes | ./configure ${EXTRA_OECONF} || die "Configuring qt failed.
> EXTRA_OECONF was ${EXTRA_OECONF}"
> +    echo yes | LFLAGS="-L${STAGING_LIBDIR_NATIVE}" ./configure
> ${EXTRA_OECONF} || die "Configuring qt failed. EXTRA_OECONF was
> ${EXTRA_OECONF}"
>  }
>
>  TOBUILD = "\
> diff --git a/recipes/qt4/qt4-tools-native_4.4.3.bb
> b/recipes/qt4/qt4-tools-native_4.4.3.bb
> index 8a8d46f..ef86db4 100644
> --- a/recipes/qt4/qt4-tools-native_4.4.3.bb
> +++ b/recipes/qt4/qt4-tools-native_4.4.3.bb
> @@ -1,2 +1,2 @@
>  require qt4-tools-native.inc
> -PR = "r2"
> +PR = "r3"
> diff --git a/recipes/qt4/qt4-tools-native_4.5.0.bb
> b/recipes/qt4/qt4-tools-native_4.5.0.bb
> index 6e5474b..ab63314 100644
> --- a/recipes/qt4/qt4-tools-native_4.5.0.bb
> +++ b/recipes/qt4/qt4-tools-native_4.5.0.bb
> @@ -1,5 +1,5 @@
>  require qt4-tools-native.inc
> -PR = "r0"
> +PR = "r1"
>
>  DEFAULT_PREFERENCE = "-1"
>  TOBUILD := "src/tools/bootstrap ${TOBUILD}"
> --
> 1.5.6.5
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>

We need a linker flag here so why not append to LDFLAGS instead of
introducing a new variable ?



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

end of thread, other threads:[~2009-04-06 21:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-03  5:39 [STABLE][PATCH] qt4-tools-native: set LFLAGS to pick up zlib from staging Jeremy Lainé
2009-04-03 11:19 ` Marcin Juszkiewicz
2009-04-04  9:20 ` Koen Kooi
2009-04-06 21:14 ` Khem Raj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.