wok diff valgrind/receipt @ rev 5890

valgrind: Fix build with glibc 2.11
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Jul 22 08:02:40 2010 +0200 (2010-07-22)
parents f917e0dfdfbd
children 3775d01597ed
line diff
     1.1 --- a/valgrind/receipt	Wed Feb 24 12:28:07 2010 +0000
     1.2 +++ b/valgrind/receipt	Thu Jul 22 08:02:40 2010 +0200
     1.3 @@ -6,7 +6,7 @@
     1.4  SHORT_DESC="Memory debugger and profiler."
     1.5  MAINTAINER="paul@slitaz.org"
     1.6  DEPENDS=""
     1.7 -BUILD_DEPENDS="sed"
     1.8 +BUILD_DEPENDS="sed autoconf"
     1.9  SUGGESTED="perl"
    1.10  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.11  WEB_SITE="http://valgrind.org/"
    1.12 @@ -18,6 +18,12 @@
    1.13  compile_rules()
    1.14  {
    1.15  	cd $src
    1.16 +	
    1.17 +	# Fix build with glibc 2.11
    1.18 +	#http://www.linuxfromscratch.org/patches/downloads/valgrind/valgrind-3.5.0-glibc-2.11.patch
    1.19 +	patch -p1 < ../stuff/valgrind-3.5.0-glibc211.u || exit 1
    1.20 +	autoconf
    1.21 +	
    1.22  	./configure \
    1.23  		--prefix=/usr \
    1.24  		--infodir=/usr/share/info \