All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] gstreamer1.0-plugins: Ensure the native OE orcc is used
@ 2015-08-20 12:54 Carlos Rafael Giani
  2015-08-20 12:54 ` [PATCH 2/2] gstreamer1.0-plugins-*: Remove unused GSTREAMER_1_0_ORC variable Carlos Rafael Giani
  2015-08-21  2:18 ` [PATCH 1/2] gstreamer1.0-plugins: Ensure the native OE orcc is used Khem Raj
  0 siblings, 2 replies; 3+ messages in thread
From: Carlos Rafael Giani @ 2015-08-20 12:54 UTC (permalink / raw)
  To: openembedded-core

Without this, gstreamer configure scripts may choose the host orcc instead

Signed-off-by: Carlos Rafael Giani <dv@pseudoterminal.org>
---
 meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc
index 687aa2f..cef269d 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins.inc
@@ -15,7 +15,10 @@ acpaths = "-I ${S}/common/m4 -I ${S}/m4"
 LIBV = "1.0"
 require gst-plugins-package.inc
 
-PACKAGECONFIG[orc] = "--enable-orc,--disable-orc,orc"
+PACKAGECONFIG[orc] = "--enable-orc,--disable-orc,orc orc-native"
+
+ORCC = "${STAGING_DIR_NATIVE}${bindir}/orcc"
+export ORCC
 
 PACKAGES_DYNAMIC = "^${PN}-.*"
 
-- 
1.9.1



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

* [PATCH 2/2] gstreamer1.0-plugins-*: Remove unused GSTREAMER_1_0_ORC variable
  2015-08-20 12:54 [PATCH 1/2] gstreamer1.0-plugins: Ensure the native OE orcc is used Carlos Rafael Giani
@ 2015-08-20 12:54 ` Carlos Rafael Giani
  2015-08-21  2:18 ` [PATCH 1/2] gstreamer1.0-plugins: Ensure the native OE orcc is used Khem Raj
  1 sibling, 0 replies; 3+ messages in thread
From: Carlos Rafael Giani @ 2015-08-20 12:54 UTC (permalink / raw)
  To: openembedded-core

Nobody sets this. The orc packageconfig already does everything we need.

Signed-off-by: Carlos Rafael Giani <dv@pseudoterminal.org>
---
 meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad.inc  | 1 -
 meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base.inc | 1 -
 meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good.inc | 1 -
 meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly.inc | 1 -
 4 files changed, 4 deletions(-)

diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad.inc
index d34aca5..cdedb60 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad.inc
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad.inc
@@ -126,7 +126,6 @@ EXTRA_OECONF += " \
     --disable-winscreencap \
     --disable-xvid \
     --disable-zbar \
-    ${GSTREAMER_1_0_ORC} \
     ${@bb.utils.contains("TUNE_FEATURES", "mx32", "--disable-yadif", "", d)} \
     "
 
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base.inc
index 6d293c4..47f3f40 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base.inc
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base.inc
@@ -32,7 +32,6 @@ EXTRA_OECONF += " \
     --disable-freetypetest \
     --disable-cdparanoia \
     --disable-libvisual \
-    ${GSTREAMER_1_0_ORC} \
 "
 
 FILES_${MLPREFIX}libgsttag-1.0 += "${datadir}/gst-plugins-base/1.0/license-translations.dict"
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good.inc
index 37217f0..6e316de 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good.inc
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good.inc
@@ -52,7 +52,6 @@ EXTRA_OECONF += " \
     --disable-shout2 \
     --disable-examples \
     --disable-dv1394 \
-    ${GSTREAMER_1_0_ORC} \
 "
 
 FILES_${PN}-equalizer += "${datadir}/gstreamer-1.0/presets/*.prs"
diff --git a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly.inc b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly.inc
index 0dd011b..63ba316 100644
--- a/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly.inc
+++ b/meta/recipes-multimedia/gstreamer/gstreamer1.0-plugins-ugly.inc
@@ -26,6 +26,5 @@ EXTRA_OECONF += " \
     --disable-amrwb \
     --disable-sidplay \
     --disable-twolame \
-    ${GSTREAMER_1_0_ORC} \
     "
 
-- 
1.9.1



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

* Re: [PATCH 1/2] gstreamer1.0-plugins: Ensure the native OE orcc is used
  2015-08-20 12:54 [PATCH 1/2] gstreamer1.0-plugins: Ensure the native OE orcc is used Carlos Rafael Giani
  2015-08-20 12:54 ` [PATCH 2/2] gstreamer1.0-plugins-*: Remove unused GSTREAMER_1_0_ORC variable Carlos Rafael Giani
@ 2015-08-21  2:18 ` Khem Raj
  1 sibling, 0 replies; 3+ messages in thread
From: Khem Raj @ 2015-08-21  2:18 UTC (permalink / raw)
  To: Carlos Rafael Giani; +Cc: Patches and discussions about the oe-core layer

On Thu, Aug 20, 2015 at 5:54 AM, Carlos Rafael Giani
<dv@pseudoterminal.org> wrote:
> +ORCC = "${STAGING_DIR_NATIVE}${bindir}/orcc"
> +export ORCC

usual convention is
export VAR = "val"


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

end of thread, other threads:[~2015-08-21  2:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-20 12:54 [PATCH 1/2] gstreamer1.0-plugins: Ensure the native OE orcc is used Carlos Rafael Giani
2015-08-20 12:54 ` [PATCH 2/2] gstreamer1.0-plugins-*: Remove unused GSTREAMER_1_0_ORC variable Carlos Rafael Giani
2015-08-21  2:18 ` [PATCH 1/2] gstreamer1.0-plugins: Ensure the native OE orcc is used 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.