mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
extra/valgrind to 3.8.1-2
This commit is contained in:
parent
9cb4b9bd80
commit
3e2d9f269b
2 changed files with 43 additions and 2 deletions
|
@ -7,21 +7,25 @@
|
|||
|
||||
pkgname=valgrind
|
||||
pkgver=3.8.1
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
pkgdesc="A tool to help find memory-management problems in programs"
|
||||
arch=('i686' 'x86_64')
|
||||
license=('GPL')
|
||||
url="http://valgrind.org/"
|
||||
depends=('glibc>=2.16' 'glibc<2.17' 'perl')
|
||||
depends=('glibc>=2.17' 'glibc<2.18' 'perl')
|
||||
makedepends=('gdb')
|
||||
options=('!emptydirs')
|
||||
source=(http://valgrind.org/downloads/${pkgname}-${pkgver}.tar.bz2
|
||||
valgrind-3.8.1-glibc-2.17.patch
|
||||
alarm.patch)
|
||||
md5sums=('288758010b271119a0ffc0183f1d6e38'
|
||||
'e87c34f9f9ce0040d141b3bd57842b5c'
|
||||
'aba5261d8ef25ab9bbad44631172da02')
|
||||
|
||||
build() {
|
||||
cd ${srcdir}/${pkgname}-${pkgver}
|
||||
|
||||
patch -p1 -i $srcdir/valgrind-3.8.1-glibc-2.17.patch
|
||||
|
||||
[ "${CARCH}" = "arm" -o "${CARCH}" = "armv6h" ] && patch -Np1 -i ${srcdir}/alarm.patch
|
||||
|
||||
|
|
37
extra/valgrind/valgrind-3.8.1-glibc-2.17.patch
Normal file
37
extra/valgrind/valgrind-3.8.1-glibc-2.17.patch
Normal file
|
@ -0,0 +1,37 @@
|
|||
diff -Naur valgrind-3.8.1-orig/configure valgrind-3.8.1/configure
|
||||
--- valgrind-3.8.1-orig/configure 2012-09-19 05:19:23.000000000 +1000
|
||||
+++ valgrind-3.8.1/configure 2012-12-27 08:11:36.645429011 +1000
|
||||
@@ -6612,6 +6612,24 @@
|
||||
|
||||
# DEFAULT_SUPP set by kernel version check above.
|
||||
;;
|
||||
+ 2.17)
|
||||
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: 2.17 family" >&5
|
||||
+$as_echo "2.17 family" >&6; }
|
||||
+
|
||||
+$as_echo "#define GLIBC_2_17 1" >>confdefs.h
|
||||
+
|
||||
+ DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
|
||||
+ DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
|
||||
+ DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
|
||||
+ ;;
|
||||
+ darwin)
|
||||
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: Darwin" >&5
|
||||
+$as_echo "Darwin" >&6; }
|
||||
+
|
||||
+$as_echo "#define DARWIN_LIBC 1" >>confdefs.h
|
||||
+
|
||||
+ # DEFAULT_SUPP set by kernel version check above.
|
||||
+ ;;
|
||||
bionic)
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: Bionic" >&5
|
||||
$as_echo "Bionic" >&6; }
|
||||
@@ -6624,7 +6642,7 @@
|
||||
*)
|
||||
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported version ${GLIBC_VERSION}" >&5
|
||||
$as_echo "unsupported version ${GLIBC_VERSION}" >&6; }
|
||||
- as_fn_error "Valgrind requires glibc version 2.2 - 2.16" "$LINENO" 5
|
||||
+ as_fn_error "Valgrind requires glibc version 2.2 - 2.17" "$LINENO" 5
|
||||
as_fn_error "or Darwin libc" "$LINENO" 5
|
||||
;;
|
||||
esac
|
Loading…
Reference in a new issue