All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-qt5][PATCH] add patch to allow qtwebengine build for linux-oe-g++ platform
@ 2014-12-01 15:26 Frieder Schrempf
  2014-12-01 15:30 ` Otavio Salvador
  0 siblings, 1 reply; 2+ messages in thread
From: Frieder Schrempf @ 2014-12-01 15:26 UTC (permalink / raw)
  To: openembedded-devel

---
 .../0001-allow-build-for-linux-oe-g-platform.patch |   25 ++++++++++++++++++++
 recipes-qt/qt5/qtwebengine_git.bb                  |    1 +
 2 files changed, 26 insertions(+)
 create mode 100644 recipes-qt/qt5/qtwebengine/0001-allow-build-for-linux-oe-g-platform.patch

diff --git a/recipes-qt/qt5/qtwebengine/0001-allow-build-for-linux-oe-g-platform.patch b/recipes-qt/qt5/qtwebengine/0001-allow-build-for-linux-oe-g-platform.patch
new file mode 100644
index 0000000..05177b1
--- /dev/null
+++ b/recipes-qt/qt5/qtwebengine/0001-allow-build-for-linux-oe-g-platform.patch
@@ -0,0 +1,25 @@
+From a84b72bc45024a57ad75df8c10abfa0a9eb7f726 Mon Sep 17 00:00:00 2001
+From: Frieder Schrempf <frieder.schrempf@online.de>
+Date: Mon, 1 Dec 2014 14:34:40 +0000
+Subject: [PATCH 1/1] allow build for linux-oe-g++ platform
+
+---
+ tools/qmake/mkspecs/features/functions.prf |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tools/qmake/mkspecs/features/functions.prf b/tools/qmake/mkspecs/features/functions.prf
+index 491a640..0bb2145 100644
+--- a/tools/qmake/mkspecs/features/functions.prf
++++ b/tools/qmake/mkspecs/features/functions.prf
+@@ -7,7 +7,7 @@ defineTest(isPlatformSupported) {
+ 
+   linux-g++*:!isGCCVersionSupported():return(false)
+   !isPythonVersionSupported(): return(false)
+-  linux-g++*|win32-msvc2013|macx-clang: return(true)
++  linux-g++*|linux-oe-g++*|win32-msvc2013|macx-clang: return(true)
+   boot2qt: return(true)
+ 
+   warning("Qt WebEngine can currently only be built for Linux (GCC), Windows (MSVC 2013), OS X (XCode 5.1+) or Qt for Device Creation".)
+-- 
+1.7.9.5
+
diff --git a/recipes-qt/qt5/qtwebengine_git.bb b/recipes-qt/qt5/qtwebengine_git.bb
index 84012f8..8225456 100644
--- a/recipes-qt/qt5/qtwebengine_git.bb
+++ b/recipes-qt/qt5/qtwebengine_git.bb
@@ -8,6 +8,7 @@ SRC_URI += " \
     git://gitorious.org/qt/qtwebengine-chromium.git;name=chromium;branch=${QT_MODULE_BRANCH_CHROMIUM};destsuffix=git/src/3rdparty \
     file://0001-functions.prf-Don-t-match-QMAKE_EXT_CPP-or-QMAKE_EXT.patch \
     file://0002-functions.prf-Try-to-add-_moc-suffix.patch \
+    file://0001-allow-build-for-linux-oe-g-platform.patch \
 "
 SRCREV_qtwebengine = "03a52863226aeb774721db610ba831808b30836a"
 SRCREV_chromium = "66388297cf2ca42049fb099237134ec33465e2f5"
-- 
1.7.9.5



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

* Re: [meta-qt5][PATCH] add patch to allow qtwebengine build for linux-oe-g++ platform
  2014-12-01 15:26 [meta-qt5][PATCH] add patch to allow qtwebengine build for linux-oe-g++ platform Frieder Schrempf
@ 2014-12-01 15:30 ` Otavio Salvador
  0 siblings, 0 replies; 2+ messages in thread
From: Otavio Salvador @ 2014-12-01 15:30 UTC (permalink / raw)
  To: OpenEmbedded Devel List

Acked-by: Otavio Salvador <otavio@ossystems.com.br>

On Mon, Dec 1, 2014 at 1:26 PM, Frieder Schrempf
<frieder.schrempf@online.de> wrote:
> ---
>  .../0001-allow-build-for-linux-oe-g-platform.patch |   25 ++++++++++++++++++++
>  recipes-qt/qt5/qtwebengine_git.bb                  |    1 +
>  2 files changed, 26 insertions(+)
>  create mode 100644 recipes-qt/qt5/qtwebengine/0001-allow-build-for-linux-oe-g-platform.patch
>
> diff --git a/recipes-qt/qt5/qtwebengine/0001-allow-build-for-linux-oe-g-platform.patch b/recipes-qt/qt5/qtwebengine/0001-allow-build-for-linux-oe-g-platform.patch
> new file mode 100644
> index 0000000..05177b1
> --- /dev/null
> +++ b/recipes-qt/qt5/qtwebengine/0001-allow-build-for-linux-oe-g-platform.patch
> @@ -0,0 +1,25 @@
> +From a84b72bc45024a57ad75df8c10abfa0a9eb7f726 Mon Sep 17 00:00:00 2001
> +From: Frieder Schrempf <frieder.schrempf@online.de>
> +Date: Mon, 1 Dec 2014 14:34:40 +0000
> +Subject: [PATCH 1/1] allow build for linux-oe-g++ platform
> +
> +---
> + tools/qmake/mkspecs/features/functions.prf |    2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/tools/qmake/mkspecs/features/functions.prf b/tools/qmake/mkspecs/features/functions.prf
> +index 491a640..0bb2145 100644
> +--- a/tools/qmake/mkspecs/features/functions.prf
> ++++ b/tools/qmake/mkspecs/features/functions.prf
> +@@ -7,7 +7,7 @@ defineTest(isPlatformSupported) {
> +
> +   linux-g++*:!isGCCVersionSupported():return(false)
> +   !isPythonVersionSupported(): return(false)
> +-  linux-g++*|win32-msvc2013|macx-clang: return(true)
> ++  linux-g++*|linux-oe-g++*|win32-msvc2013|macx-clang: return(true)
> +   boot2qt: return(true)
> +
> +   warning("Qt WebEngine can currently only be built for Linux (GCC), Windows (MSVC 2013), OS X (XCode 5.1+) or Qt for Device Creation".)
> +--
> +1.7.9.5
> +
> diff --git a/recipes-qt/qt5/qtwebengine_git.bb b/recipes-qt/qt5/qtwebengine_git.bb
> index 84012f8..8225456 100644
> --- a/recipes-qt/qt5/qtwebengine_git.bb
> +++ b/recipes-qt/qt5/qtwebengine_git.bb
> @@ -8,6 +8,7 @@ SRC_URI += " \
>      git://gitorious.org/qt/qtwebengine-chromium.git;name=chromium;branch=${QT_MODULE_BRANCH_CHROMIUM};destsuffix=git/src/3rdparty \
>      file://0001-functions.prf-Don-t-match-QMAKE_EXT_CPP-or-QMAKE_EXT.patch \
>      file://0002-functions.prf-Try-to-add-_moc-suffix.patch \
> +    file://0001-allow-build-for-linux-oe-g-platform.patch \
>  "
>  SRCREV_qtwebengine = "03a52863226aeb774721db610ba831808b30836a"
>  SRCREV_chromium = "66388297cf2ca42049fb099237134ec33465e2f5"
> --
> 1.7.9.5
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel



-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

end of thread, other threads:[~2014-12-01 15:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-12-01 15:26 [meta-qt5][PATCH] add patch to allow qtwebengine build for linux-oe-g++ platform Frieder Schrempf
2014-12-01 15:30 ` Otavio Salvador

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.