summaryrefslogtreecommitdiff
path: root/package/valgrind/patches/patch-configure_in
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-11-07 16:55:09 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2013-11-07 16:55:09 +0100
commitb59da8fc7b46ee62cbe9eb97a05c8a0f1ab75593 (patch)
tree693c02553b84749c1eef6323ff528850c46687f4 /package/valgrind/patches/patch-configure_in
parent08f64b87c0b6e9a6de7250c616a91830ef447713 (diff)
update valgrind to latest upstream version, strlen is not a function in ld.so in latest glibc/eglibc setups, just remove the redirect for now. enable automatic building of debug subpackages. update TODO
Diffstat (limited to 'package/valgrind/patches/patch-configure_in')
-rw-r--r--package/valgrind/patches/patch-configure_in41
1 files changed, 0 insertions, 41 deletions
diff --git a/package/valgrind/patches/patch-configure_in b/package/valgrind/patches/patch-configure_in
deleted file mode 100644
index 418898ecf..000000000
--- a/package/valgrind/patches/patch-configure_in
+++ /dev/null
@@ -1,41 +0,0 @@
---- valgrind-3.7.0.orig/configure.in 2011-11-05 12:13:30.000000000 +0100
-+++ valgrind-3.7.0/configure.in 2013-07-23 12:27:45.000000000 +0200
-@@ -140,6 +140,8 @@ esac
- # configure-time, and distinguishes them from the VGA_*/VGO_*/VGP_*
- # variables used when compiling C files.
-
-+VGCONF_PLATFORM_ARM_ARCH=
-+
- AC_CANONICAL_HOST
-
- AC_MSG_CHECKING([for a supported CPU])
-@@ -176,15 +178,26 @@ case "${host_cpu}" in
- ;;
-
- armv7*)
-- AC_MSG_RESULT([ok (${host_cpu})])
-- ARCH_MAX="arm"
-- ;;
-+ # This means we use a armv7 toolchain - at least Cortex-A8
-+ AC_MSG_RESULT([ok (${host_cpu} using armv7 codepath)])
-+ ARCH_MAX="arm"
-+ VGCONF_PLATFORM_ARM_ARCH="-march=armv7 -mcpu=cortex-a8"
-+ ;;
-+
-+ arm*)
-+ # Generic arm toolchain - we will target armv6
-+ AC_MSG_RESULT([(${host_cpu}) - no armv7 toolchain specified, will enforce armv6 when compiling])
-+ ARCH_MAX="arm"
-+ VGCONF_PLATFORM_ARM_ARCH="-march=armv6"
-+ AC_DEFINE(ARM_ARCH_V6,1,"Defined for v6 architectures")
-+ ;;
-
- *)
- AC_MSG_RESULT([no (${host_cpu})])
- AC_MSG_ERROR([Unsupported host architecture. Sorry])
- ;;
- esac
-+AC_SUBST(VGCONF_PLATFORM_ARM_ARCH)
-
- #----------------------------------------------------------------------------
-