From owner-svn-ports-head@FreeBSD.ORG Fri Feb 21 21:45:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9DBCD471 for ; Fri, 21 Feb 2014 21:45:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7BEC910D7 for ; Fri, 21 Feb 2014 21:45:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s1LLj3x5086956 for ; Fri, 21 Feb 2014 21:45:03 GMT (envelope-from bdrewery@freefall.freebsd.org) Received: (from bdrewery@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s1LLj3Lg086950 for svn-ports-head@freebsd.org; Fri, 21 Feb 2014 21:45:03 GMT (envelope-from bdrewery) Received: (qmail 39912 invoked from network); 21 Feb 2014 15:45:01 -0600 Received: from unknown (HELO ?10.10.0.24?) (freebsd@shatow.net@10.10.0.24) by sweb.xzibition.com with ESMTPA; 21 Feb 2014 15:45:01 -0600 Message-ID: <5307C8D6.7090309@FreeBSD.org> Date: Fri, 21 Feb 2014 15:44:54 -0600 From: Bryan Drewery Organization: FreeBSD User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Baptiste Daroussin , Tijl Coosemans Subject: Re: svn commit: r345514 - head/Mk/Uses References: <201402211647.s1LGlTuw053335@svn.freebsd.org> <20140221194949.29595e47@kalimero.tijl.coosemans.org> <20140221193004.GM1699@ithaqua.etoilebsd.net> In-Reply-To: <20140221193004.GM1699@ithaqua.etoilebsd.net> X-Enigmail-Version: 1.6 OpenPGP: id=6E4697CF; url=http://www.shatow.net/bryan/bryan2.asc Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="apW5EkfmXLgajtFFbNs0ji3C0vGEAI2Dt" Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Feb 2014 21:45:03 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --apW5EkfmXLgajtFFbNs0ji3C0vGEAI2Dt Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 2/21/2014 1:30 PM, Baptiste Daroussin wrote: > On Fri, Feb 21, 2014 at 07:49:49PM +0100, Tijl Coosemans wrote: >> On Fri, 21 Feb 2014 16:47:29 +0000 (UTC) Baptiste Daroussin wrote: >>> Author: bapt >>> Date: Fri Feb 21 16:47:29 2014 >>> New Revision: 345514 >>> URL: http://svnweb.freebsd.org/changeset/ports/345514 >>> QAT: https://qat.redports.org/buildarchive/r345514/ >>> >>> Log: >>> libtool 1.4.2a was defining the shared extension as shrext_cmds, re= name it shared_ext >>> like in newer libtool so the rest of USES=3Diconv magic just works >>> >>> Modified: >>> head/Mk/Uses/libtool.mk >>> >>> Modified: head/Mk/Uses/libtool.mk >>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D >>> --- head/Mk/Uses/libtool.mk Fri Feb 21 16:04:38 2014 (r345513) >>> +++ head/Mk/Uses/libtool.mk Fri Feb 21 16:47:29 2014 (r345514) >>> @@ -22,7 +22,8 @@ patch-libtool: >>> -e '/link_all_deplibs[0-9A-Z_]*=3D/s/=3Dunknown/=3Dno/' \ >>> -e '/objformat=3D/s/echo aout/echo elf/' \ >>> -e "/freebsd-elf\\*)/,/;;/ { \ >>> - /deplibs_check_method=3D/s/=3D.*/=3Dpass_all/; }" >>> + /deplibs_check_method=3D/s/=3D.*/=3Dpass_all/; }" \ >>> + -e "s/shrext_cmds/shared_ext/g" >>> =20 >>> .if ! ${libtool_ARGS:Moldver} >>> @${FIND} ${WRKDIR} \( -name configure -or -name ltconfig \) \ >> >> Both shrext_cmds and shared_ext exist so I'm not sure it's safe to use= >> only one name. shrext_cmds is defined by configure (normally just .so= >> for us) or by libtool when invoked with -shrext some_extension. Then >> later libtool defines shared_ext using 'eval shared_ext=3D\"$shrext_cm= ds\"'. >> >> What port does this fix? >=20 > devel/libghthash is the port broken if you end up with a better fix, pl= ease just > commit. >=20 > Thank you > Bapt >=20 This was causing libraries to build without .so, I have reverted for now.= Note: > =3D=3D=3D> Checking if sysutils/hal already installed > =3D=3D=3D> Registering installation for hal-0.5.14_23 > pkg-static: lstat(/usr/ports/sysutils/hal/work/stage/usr/local/lib/libh= al-storage.a): No such file or directory > pkg-static: lstat(/usr/ports/sysutils/hal/work/stage/usr/local/lib/libh= al-storage.la): No such file or directory > pkg-static: lstat(/usr/ports/sysutils/hal/work/stage/usr/local/lib/libh= al-storage.so): No such file or directory > pkg-static: lstat(/usr/ports/sysutils/hal/work/stage/usr/local/lib/libh= al-storage.so.1): No such file or directory > pkg-static: lstat(/usr/ports/sysutils/hal/work/stage/usr/local/lib/libh= al-storage.so.1.0.0): No such file or directory > pkg-static: lstat(/usr/ports/sysutils/hal/work/stage/usr/local/lib/libh= al.so): No such file or directory > pkg-static: lstat(/usr/ports/sysutils/hal/work/stage/usr/local/lib/libh= al.so.1): No such file or directory > pkg-static: lstat(/usr/ports/sysutils/hal/work/stage/usr/local/lib/libh= al.so.1.0.0): No such file or directory > *** Error code 74 (continuing) > `/usr/ports/sysutils/hal/work/.install_done.hal._usr_local' not remade = because of errors. and > libtool: install: /usr/bin/install -c -o root -g wheel .libs/liblogging= -stdlog.0.0.0 /wrkdirs/usr/ports/devel/liblogging/work/stage/usr/local/li= b/liblogging-stdlog.0.0.0 --=20 Regards, Bryan Drewery --apW5EkfmXLgajtFFbNs0ji3C0vGEAI2Dt Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (MingW32) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQEcBAEBAgAGBQJTB8jWAAoJEDXXcbtuRpfPZrgIAJb4v5mSyWC/f8TbdrS7UWPv BYTA+71NH44qTvtVglN+99dkRIcf9RikpdRHpRfJw056CxbLMPW1PGXiUKgsmXFA ++drR+cvp/WwD7MkYH/i0Mug3OCJXK2xGbd1tpoMBs4yzToUbBL64DZi5VgCk9Aa dnuEid2MiglzpG3wihhISzcssNy8sSgY+RcLel1k8tnBsU0p4rZYhVXgInmtqVwj b7ieIATwP8nLa1j0Oc4f9C1uDq+sKD3EznWnAs5wwKJPSI/fCdMGpZtY8LGmiVSN GmJ1VImP+c/BNZS84sN0aXbPEYvH0wYZHH+1grvLcMxUBB+0JGH6/mbTTgBKtMU= =Zeoh -----END PGP SIGNATURE----- --apW5EkfmXLgajtFFbNs0ji3C0vGEAI2Dt--