All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] pixman: rename patches to follow the new name structure
@ 2014-10-23 10:40 Vicente Olivert Riera
  2014-10-23 10:40 ` [Buildroot] [PATCH 2/2] pixman: Fix C pre-processor issues in LEAF_MIPS32R2 Vicente Olivert Riera
  2014-10-23 20:15 ` [Buildroot] [PATCH 1/2] pixman: rename patches to follow the new name structure Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Vicente Olivert Riera @ 2014-10-23 10:40 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 ...vbyzero.patch => 0001-check-fe-divbyzero.patch} |    0
 1 files changed, 0 insertions(+), 0 deletions(-)
 rename package/pixman/{pixman-02-check-fe-divbyzero.patch => 0001-check-fe-divbyzero.patch} (100%)

diff --git a/package/pixman/pixman-02-check-fe-divbyzero.patch b/package/pixman/0001-check-fe-divbyzero.patch
similarity index 100%
rename from package/pixman/pixman-02-check-fe-divbyzero.patch
rename to package/pixman/0001-check-fe-divbyzero.patch
-- 
1.7.1

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

* [Buildroot] [PATCH 2/2] pixman: Fix C pre-processor issues in LEAF_MIPS32R2
  2014-10-23 10:40 [Buildroot] [PATCH 1/2] pixman: rename patches to follow the new name structure Vicente Olivert Riera
@ 2014-10-23 10:40 ` Vicente Olivert Riera
  2014-10-23 20:15 ` [Buildroot] [PATCH 1/2] pixman: rename patches to follow the new name structure Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Vicente Olivert Riera @ 2014-10-23 10:40 UTC (permalink / raw)
  To: buildroot

Apply a patch which will be upstreamed soon to fix a problem with the C
pre-processor. This fixes a build failure in MIPS32r2 architectures.

Related:
	http://lists.freedesktop.org/archives/pixman/2014-September/003419.html

Bug report:
	https://bugs.freedesktop.org/show_bug.cgi?id=83358

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 ...x-C-pre-processor-issues-in-LEAF_MIPS32R2.patch |   33 ++++++++++++++++++++
 1 files changed, 33 insertions(+), 0 deletions(-)
 create mode 100644 package/pixman/0002-Fix-C-pre-processor-issues-in-LEAF_MIPS32R2.patch

diff --git a/package/pixman/0002-Fix-C-pre-processor-issues-in-LEAF_MIPS32R2.patch b/package/pixman/0002-Fix-C-pre-processor-issues-in-LEAF_MIPS32R2.patch
new file mode 100644
index 0000000..b898fa5
--- /dev/null
+++ b/package/pixman/0002-Fix-C-pre-processor-issues-in-LEAF_MIPS32R2.patch
@@ -0,0 +1,33 @@
+pixman: Fix C pre-processor issues in LEAF_MIPS32R2
+
+Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
+
+From 3a60aa8d574f4dfc4fa3ddb13aaa13c7d955105b Mon Sep 17 00:00:00 2001
+From: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
+Date: Thu, 11 Sep 2014 10:24:10 +0100
+Subject: [PATCH] Fix C pre-processor issues in LEAF_MIPS32R2
+
+Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
+---
+ pixman/pixman-mips-dspr2-asm.h |    4 ++--
+ 1 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/pixman/pixman-mips-dspr2-asm.h b/pixman/pixman-mips-dspr2-asm.h
+index 11849bd..b2696d0 100644
+--- a/pixman/pixman-mips-dspr2-asm.h
++++ b/pixman/pixman-mips-dspr2-asm.h
+@@ -72,10 +72,10 @@
+ #define LEAF_MIPS32R2(symbol)                           \
+                 .globl  symbol;                         \
+                 .align  2;                              \
+-#ifdef __ELF__
++            .if __ELF__;                                \
+                 .hidden symbol;                         \
+                 .type   symbol, @function;              \
+-#endif
++            .endif;                                     \
+                 .ent    symbol, 0;                      \
+ symbol:         .frame  sp, 0, ra;                      \
+                 .set    push;                           \
+-- 
+1.7.1
-- 
1.7.1

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

* [Buildroot] [PATCH 1/2] pixman: rename patches to follow the new name structure
  2014-10-23 10:40 [Buildroot] [PATCH 1/2] pixman: rename patches to follow the new name structure Vicente Olivert Riera
  2014-10-23 10:40 ` [Buildroot] [PATCH 2/2] pixman: Fix C pre-processor issues in LEAF_MIPS32R2 Vicente Olivert Riera
@ 2014-10-23 20:15 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2014-10-23 20:15 UTC (permalink / raw)
  To: buildroot

Dear Vicente Olivert Riera,

On Thu, 23 Oct 2014 11:40:10 +0100, Vicente Olivert Riera wrote:
> Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
> ---
>  ...vbyzero.patch => 0001-check-fe-divbyzero.patch} |    0
>  1 files changed, 0 insertions(+), 0 deletions(-)
>  rename package/pixman/{pixman-02-check-fe-divbyzero.patch => 0001-check-fe-divbyzero.patch} (100%)

Both patches applied, thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2014-10-23 20:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-10-23 10:40 [Buildroot] [PATCH 1/2] pixman: rename patches to follow the new name structure Vicente Olivert Riera
2014-10-23 10:40 ` [Buildroot] [PATCH 2/2] pixman: Fix C pre-processor issues in LEAF_MIPS32R2 Vicente Olivert Riera
2014-10-23 20:15 ` [Buildroot] [PATCH 1/2] pixman: rename patches to follow the new name structure Thomas Petazzoni

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.