summaryrefslogtreecommitdiff
path: root/recipes/qt4/qt4-x11-free-4.1.2/fix-asm-constraints.patch
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2009-03-25 14:15:23 +0100
committerJeremy Lainé <jeremy.laine@m4x.org>2009-03-25 14:15:23 +0100
commita1f6020e2168ec936ccec4a9b5888633e045ccb1 (patch)
tree2f1053b5dfac987e3fd8503727471aa335779d0e /recipes/qt4/qt4-x11-free-4.1.2/fix-asm-constraints.patch
parentcfabec5a2353a99ac3db1d5f09fe7a4083b49342 (diff)
qt4-x11-free: drop obsolete versions as per oe-devel
Diffstat (limited to 'recipes/qt4/qt4-x11-free-4.1.2/fix-asm-constraints.patch')
-rw-r--r--recipes/qt4/qt4-x11-free-4.1.2/fix-asm-constraints.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/recipes/qt4/qt4-x11-free-4.1.2/fix-asm-constraints.patch b/recipes/qt4/qt4-x11-free-4.1.2/fix-asm-constraints.patch
deleted file mode 100644
index 93fc52d055..0000000000
--- a/recipes/qt4/qt4-x11-free-4.1.2/fix-asm-constraints.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-
-#
-# Signed off by Michael 'Mickey' Lauer <mickey@Vanille.de>
-#
-
---- qt-x11-opensource-src-4.1.2/src/corelib/arch/arm/arch/qatomic.h~fix-asm-constraints
-+++ qt-x11-opensource-src-4.1.2/src/corelib/arch/arm/arch/qatomic.h
-@@ -32,7 +32,7 @@
- {
- register int ret;
- asm volatile("swpb %0,%1,[%2]"
-- : "=r"(ret)
-+ : "&=r"(ret)
- : "r"(newval), "r"(ptr)
- : "cc", "memory");
- return ret;