Consider i386 when making XMLCALL as decl type.
authorKhem Raj <raj.khem@gmail.com>
Fri, 1 Aug 2008 21:39:13 +0000 (21:39 +0000)
committerKhem Raj <raj.khem@gmail.com>
Fri, 1 Aug 2008 21:39:13 +0000 (21:39 +0000)
This fixes gdb build failures on x86_64 host machines.

packages/expat/expat-1.95.7/expat-XMLCALL.patch [new file with mode: 0644]
packages/expat/expat_1.95.7.bb

diff --git a/packages/expat/expat-1.95.7/expat-XMLCALL.patch b/packages/expat/expat-1.95.7/expat-XMLCALL.patch
new file mode 100644 (file)
index 0000000..c688f06
--- /dev/null
@@ -0,0 +1,17 @@
+---
+ lib/expat.h |    2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+Index: expat-1.95.7/lib/expat.h
+===================================================================
+--- expat-1.95.7.orig/lib/expat.h      2008-07-31 15:56:39.000000000 -0700
++++ expat-1.95.7/lib/expat.h   2008-07-31 15:58:38.000000000 -0700
+@@ -45,7 +45,7 @@
+ #ifndef XMLCALL
+ #if defined(XML_USE_MSC_EXTENSIONS)
+ #define XMLCALL __cdecl
+-#elif defined(__GNUC__)
++#elif defined(__GNUC__) && defined(__i386) && !defined(__INTEL_COMPILER)
+ #define XMLCALL __attribute__((cdecl))
+ #else
+ /* For any platform which uses this definition and supports more than
index a4dda4d..7b48305 100644 (file)
@@ -1,7 +1,9 @@
 require expat.inc
-PR = "r1"
+PR = "r2"
 
-SRC_URI += "file://autotools.patch;patch=1"
+SRC_URI += "file://autotools.patch;patch=1 \
+           file://expat-XMLCALL.patch;patch=1 \
+          "
 
 inherit lib_package