All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [git commit] qt5base: fix QtGUI build without PNG support
@ 2013-10-26 15:58 Peter Korsgaard
  2013-10-28  0:09 ` Ezequiel García
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Korsgaard @ 2013-10-26 15:58 UTC (permalink / raw)
  To: buildroot

commit: http://git.buildroot.net/buildroot/commit/?id=0764b1cf4573f7fdae9faa280898a7a9950da100
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Patch from upstream bug report:
https://bugreports.qt-project.org/browse/QTBUG-33496

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
 .../qt5base-0005-fix-gui-build-without-png.patch   |   22 ++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/package/qt5/qt5base/qt5base-0005-fix-gui-build-without-png.patch b/package/qt5/qt5base/qt5base-0005-fix-gui-build-without-png.patch
new file mode 100644
index 0000000..ea0a7e3
--- /dev/null
+++ b/package/qt5/qt5base/qt5base-0005-fix-gui-build-without-png.patch
@@ -0,0 +1,22 @@
+[PATCH] fix QtGUI build without PNG support
+
+Upstream bug: https://bugreports.qt-project.org/browse/QTBUG-33496
+
+Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
+---
+ src/gui/kernel/qplatformtheme.cpp |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+Index: qt5base-5.1.1/src/gui/kernel/qplatformtheme.cpp
+===================================================================
+--- qt5base-5.1.1.orig/src/gui/kernel/qplatformtheme.cpp
++++ qt5base-5.1.1/src/gui/kernel/qplatformtheme.cpp
+@@ -48,7 +48,7 @@
+ #include <QtCore/qfileinfo.h>
+ #include <qpalette.h>
+ #include <qtextformat.h>
+-#include <qiconloader_p.h>
++#include <private/qiconloader_p.h>
+ 
+ QT_BEGIN_NAMESPACE
+ 

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

* [Buildroot] [git commit] qt5base: fix QtGUI build without PNG support
  2013-10-26 15:58 [Buildroot] [git commit] qt5base: fix QtGUI build without PNG support Peter Korsgaard
@ 2013-10-28  0:09 ` Ezequiel García
  2013-10-28  8:52   ` Peter Korsgaard
  0 siblings, 1 reply; 3+ messages in thread
From: Ezequiel García @ 2013-10-28  0:09 UTC (permalink / raw)
  To: buildroot

Peter,

On 26 October 2013 12:58, Peter Korsgaard <peter@korsgaard.com> wrote:
> commit: http://git.buildroot.net/buildroot/commit/?id=0764b1cf4573f7fdae9faa280898a7a9950da100
> branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
>
> Patch from upstream bug report:
> https://bugreports.qt-project.org/browse/QTBUG-33496
>
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
>  .../qt5base-0005-fix-gui-build-without-png.patch   |   22 ++++++++++++++++++++
>  1 files changed, 22 insertions(+), 0 deletions(-)
>
> diff --git a/package/qt5/qt5base/qt5base-0005-fix-gui-build-without-png.patch b/package/qt5/qt5base/qt5base-0005-fix-gui-build-without-png.patch
> new file mode 100644
> index 0000000..ea0a7e3
> --- /dev/null
> +++ b/package/qt5/qt5base/qt5base-0005-fix-gui-build-without-png.patch
> @@ -0,0 +1,22 @@
> +[PATCH] fix QtGUI build without PNG support
> +
> +Upstream bug: https://bugreports.qt-project.org/browse/QTBUG-33496
> +
> +Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> +---
> + src/gui/kernel/qplatformtheme.cpp |    2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +Index: qt5base-5.1.1/src/gui/kernel/qplatformtheme.cpp
> +===================================================================
> +--- qt5base-5.1.1.orig/src/gui/kernel/qplatformtheme.cpp
> ++++ qt5base-5.1.1/src/gui/kernel/qplatformtheme.cpp
> +@@ -48,7 +48,7 @@
> + #include <QtCore/qfileinfo.h>
> + #include <qpalette.h>
> + #include <qtextformat.h>
> +-#include <qiconloader_p.h>
> ++#include <private/qiconloader_p.h>
> +
> + QT_BEGIN_NAMESPACE
> +

Unless I'm missing something, I think Fatih sent a fix with the same
upstream patch for this issue a long while ago:

http://patchwork.ozlabs.org/patch/280804/

Thanks!
-- 
Ezequiel Garc?a, VanguardiaSur
www.vanguardiasur.com.ar

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

* [Buildroot] [git commit] qt5base: fix QtGUI build without PNG support
  2013-10-28  0:09 ` Ezequiel García
@ 2013-10-28  8:52   ` Peter Korsgaard
  0 siblings, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2013-10-28  8:52 UTC (permalink / raw)
  To: buildroot

>>>>> "Ezequiel" == Ezequiel Garc?a <ezequiel@vanguardiasur.com.ar> writes:

Hi,

 > Unless I'm missing something, I think Fatih sent a fix with the same
 > upstream patch for this issue a long while ago:

 > http://patchwork.ozlabs.org/patch/280804/

Ups, sorry - I completely missed that one. I'll mark it as applied.

Thanks!

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2013-10-28  8:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-26 15:58 [Buildroot] [git commit] qt5base: fix QtGUI build without PNG support Peter Korsgaard
2013-10-28  0:09 ` Ezequiel García
2013-10-28  8:52   ` Peter Korsgaard

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.