Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Dec 2012 05:09:15 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r309222 - in head/devel: valgrind valgrind-snapshot
Message-ID:  <201212190509.qBJ59FQt015778@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212190509.qBJ59FQt015778>