Valgrind nitpickingly checks the operating system version. Since FreeBSD 5 and 6 are almost identical, the following patch should be enough in order to build valgrind on FreeBSD 6. Since I don't have access to a FreeBSD 6 machine (yet), the following patch is unfortunatelly untested. Fix: devel/valgrind: devel/valgrind-snapshot: How-To-Repeat: Try to build the devel/valgrind* ports on FreeBSD6
> devel/valgrind-snapshot: > > --- configure.orig Sat Aug 21 00:03:33 2004 > +++ configure Sat Aug 21 00:03:13 2004 > @@ -4020,7 +4020,7 @@ > > ;; > > - *freebsd5*) > + *freebsd[45]*) Argh! This can't be true... :( You know how this patch is supposed to look like, but for your convenience's sake: --- configure.orig Sat Aug 21 00:03:33 2004 +++ configure Sat Aug 21 00:03:13 2004 @@ -4020,7 +4020,7 @@ ;; - *freebsd5*) + *freebsd[56]*) echo "$as_me:$LINENO: result: ok (${host_os})" >&5 echo "${ECHO_T}ok (${host_os})" >&6 VG_PLATFORM="x86-freebsd" > echo "$as_me:$LINENO: result: ok (${host_os})" >&5 > echo "${ECHO_T}ok (${host_os})" >&6 > VG_PLATFORM="x86-freebsd"
Sleeeep! Sorry for the noise. :(( --- configure.orig Sat Aug 21 00:03:33 2004 +++ configure Sat Aug 21 00:03:13 2004 @@ -4020,7 +4020,7 @@ ;; - *freebsd5*) + *freebsd[56]*) echo "$as_me:$LINENO: result: ok (${host_os})" >&5 echo "${ECHO_T}ok (${host_os})" >&6 VG_PLATFORM="x86-freebsd"
State Changed From-To: open->closed Committed, thanks!