summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/valgrind/valgrind-3.7.0/configure-fix.patch
diff options
context:
space:
mode:
authorShane Wang <shane.wang@intel.com>2011-12-23 13:25:43 +0800
committerSaul Wold <sgw@linux.intel.com>2012-01-02 20:26:23 -0800
commit7f58d1e670470e76077102629efabe91e5c2b9bf (patch)
tree3820245b5c439fb4eef397227287ecf79d9e6f77 /meta/recipes-devtools/valgrind/valgrind-3.7.0/configure-fix.patch
parent33e0cdbfe8ef9e8901badbd8bce1fcdab5f8b841 (diff)
downloadopenembedded-core-7f58d1e670470e76077102629efabe91e5c2b9bf.tar.gz
valgrind: upgrade to 3.7.0
This patch is to upgrade valgrind to 3.7.0. The licenses are changed from "Copyright (C) 2000-2010 Julian Seward. All rights reserved." to "Copyright (C) 2000-2011 Julian Seward. All rights reserved." Signed-off-by: Shane Wang <shane.wang@intel.com>
Diffstat (limited to 'meta/recipes-devtools/valgrind/valgrind-3.7.0/configure-fix.patch')
-rw-r--r--meta/recipes-devtools/valgrind/valgrind-3.7.0/configure-fix.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind-3.7.0/configure-fix.patch b/meta/recipes-devtools/valgrind/valgrind-3.7.0/configure-fix.patch
new file mode 100644
index 0000000000..a3fce84c20
--- /dev/null
+++ b/meta/recipes-devtools/valgrind/valgrind-3.7.0/configure-fix.patch
@@ -0,0 +1,23 @@
+To recognize gcc version from poky in configure.in
+
+Upstream-Status: Inappropriate [configuration]
+
+Signed-off-by: Shane Wang <shane.wang@intel.com>
+
+diff -r 91a8df96084a configure.in
+--- a/configure.in Fri Dec 23 20:57:01 2011 +0800
++++ b/configure.in Fri Dec 23 20:59:21 2011 +0800
+@@ -104,11 +104,13 @@
+ #
+ # i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5666) (dot 3)
+ # i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)
++# ARCH-VENDOR-OS-gcc (GCC) VERSION Copyright
+ #
+ [gcc_version=`${CC} --version \
+ | head -n 1 \
+ | $SED 's/i686-apple-darwin10//' \
+ | $SED 's/i686-apple-darwin11//' \
++ | $SED 's/.*GCC[^0-9]*//' \
+ | $SED 's/^[^0-9]*\([0-9.]*\).*$/\1/'`]
+
+ is_clang="notclang"