svn commit: r309222 - in head/devel: valgrind valgrind-snapshot
Bryan Drewery
bdrewery at FreeBSD.org
Wed Dec 19 05:09:15 UTC 2012
Author: bdrewery
Date: Wed Dec 19 05:09:14 2012
New Revision: 309222
URL: http://svnweb.freebsd.org/changeset/ports/309222
Log:
- Fix build on amd64 with WITHOUT_LIB32 on 9+
- Use the same check for /usr/lib32/libc.so as the
virtualbox ports for consistency.
PR: ports/174563
Reported by: 4721 at hushmail.com
Modified:
head/devel/valgrind-snapshot/Makefile
head/devel/valgrind/Makefile
Modified: head/devel/valgrind-snapshot/Makefile
==============================================================================
--- head/devel/valgrind-snapshot/Makefile Wed Dec 19 03:01:41 2012 (r309221)
+++ head/devel/valgrind-snapshot/Makefile Wed Dec 19 05:09:14 2012 (r309222)
@@ -62,7 +62,7 @@ IGNORE= your FreeBSD version is not supp
.if ${ARCH} == "amd64"
PLIST_SUB+= AMD64="" ARCH=amd64
-. if !exists(/usr/lib32)
+. if !exists(/usr/lib32/libc.so)
CONFIGURE_ARGS+= --enable-only64bit
PLIST_SUB+= X86="@comment "
. else
Modified: head/devel/valgrind/Makefile
==============================================================================
--- head/devel/valgrind/Makefile Wed Dec 19 03:01:41 2012 (r309221)
+++ head/devel/valgrind/Makefile Wed Dec 19 05:09:14 2012 (r309222)
@@ -61,7 +61,7 @@ IGNORE= your FreeBSD version is not supp
.if ${ARCH} == "amd64"
PLIST_SUB+= AMD64="" ARCH=amd64
-. if !exists(/usr/lib32)
+. if !exists(/usr/lib32/libc.so)
CONFIGURE_ARGS+= --enable-only64bit
PLIST_SUB+= X86="@comment "
. else
More information about the svn-ports-head
mailing list