summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/mesa/mesa/0003-fix-for-x32.patch
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2012-12-06 16:34:08 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-01-10 23:43:16 +0000
commit909b3bee33eb50d567ed610caca6a4bad7446eb7 (patch)
tree89b4d85296a242c1471872ca96e7bb8d3929f19c /meta/recipes-graphics/mesa/mesa/0003-fix-for-x32.patch
parentd5ce76dce394dcfa0a92e6a792c838dc6b530118 (diff)
downloadpoky-909b3bee33eb50d567ed610caca6a4bad7446eb7.tar.gz
mesa: bump to 9.0.1
Upgrade Mesa to 9.01, backporting a patch from master to build without needing mesa-dri-glsl-native. Several patches have been merged upstream, so drop them. License checksums updated as the file was re-formated. Drop mesa-dri-glsl-native as we don't need it anymore. Tested with Piglit's "quick" test suite, pass rate remains constant compared to 8.0.5 at 87%. (From OE-Core rev: f816697c1e76589de7853bd5573cf578e25c7ca7) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/mesa/mesa/0003-fix-for-x32.patch')
-rw-r--r--meta/recipes-graphics/mesa/mesa/0003-fix-for-x32.patch50
1 files changed, 0 insertions, 50 deletions
diff --git a/meta/recipes-graphics/mesa/mesa/0003-fix-for-x32.patch b/meta/recipes-graphics/mesa/mesa/0003-fix-for-x32.patch
deleted file mode 100644
index 2d6a150e42..0000000000
--- a/meta/recipes-graphics/mesa/mesa/0003-fix-for-x32.patch
+++ /dev/null
@@ -1,50 +0,0 @@
1Upstream-Status: Pending
2
3Using uname like this when cross compiling is a really bad idea. We
4provide the correct linker flags, lets just assume we can get this
5right ourselves.
6
7RP 2012/04/26
8---
9 bin/mklib | 16 ----------------
10 1 file changed, 16 deletions(-)
11
12diff --git a/bin/mklib b/bin/mklib
13index b33aa90..16cb017 100755
14--- a/bin/mklib
15+++ b/bin/mklib
16@@ -330,15 +330,7 @@ case $ARCH in
17 ;;
18 esac
19
20- # Check if objects are 32-bit and we're running in 64-bit
21- # environment. If so, pass -m32 flag to linker.
22 set ${OBJECTS}
23- ABI32=`file $1 | grep 32-bit`
24- ARM=`file $1 | grep ARM`
25- # Do not add "-m32" option for arm.
26- if [ -z "$ARM" -a "${ABI32}" -a `uname -m` = "x86_64" ] ; then
27- OPTS="-m32 ${OPTS}"
28- fi
29
30 if [ "${ALTOPTS}" ] ; then
31 OPTS=${ALTOPTS}
32@@ -389,15 +381,7 @@ case $ARCH in
33 # exptmp is removed below
34 fi
35
36- # Check if objects are 32-bit and we're running in 64-bit
37- # environment. If so, pass -m32 flag to linker.
38 set ${OBJECTS}
39- ABI32=`file $1 | grep 32-bit`
40- ARM=`file $1 | grep ARM`
41- # Do not add "-m32" option for arm.
42- if [ -z "$ARM" -a "${ABI32}" -a `uname -m` = "x86_64" ] ; then
43- OPTS="-m32 ${OPTS}"
44- fi
45 if [ "${ALTOPTS}" ] ; then
46 OPTS=${ALTOPTS}
47 fi
48--
491.7.10.4
50