From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1MD27d-0005dc-Nt for garchives@archives.gentoo.org; Sat, 06 Jun 2009 20:04:09 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0EBFBE02F1; Sat, 6 Jun 2009 20:04:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id DFD69E02F1 for ; Sat, 6 Jun 2009 20:04:08 +0000 (UTC) Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 7F1F567076 for ; Sat, 6 Jun 2009 20:04:08 +0000 (UTC) Received: from arfrever by stork.gentoo.org with local (Exim 4.69) (envelope-from ) id 1MD27c-0004TQ-3x for gentoo-commits@lists.gentoo.org; Sat, 06 Jun 2009 20:04:08 +0000 From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, arfrever@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/botan/files: botan-1.8.2-respect_LDFLAGS.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: botan-1.8.2-respect_LDFLAGS.patch X-VCS-Directories: dev-libs/botan/files X-VCS-Committer: arfrever X-VCS-Committer-Name: Arfrever Frehtes Taifersar Arahesis Content-Type: text/plain; charset=utf8 Message-Id: Sender: Arfrever Frehtes Taifersar Arahesis Date: Sat, 06 Jun 2009 20:04:08 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: dfaf8bbd-b4ab-4fce-8cc7-bfaf1e3de302 X-Archives-Hash: 4525fb3db5a15bd6163a930a319d3015 arfrever 09/06/06 20:04:08 Added: botan-1.8.2-respect_LDFLAGS.patch Log: Version bump. Respect LDFLAGS. Fix building with --as-needed (bug #2722= 42). (Portage version: 13628-svn/cvs/Linux x86_64) Revision Changes Path 1.1 dev-libs/botan/files/botan-1.8.2-respect_LDFLAGS.pat= ch file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/botan/fil= es/botan-1.8.2-respect_LDFLAGS.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/botan/fil= es/botan-1.8.2-respect_LDFLAGS.patch?rev=3D1.1&content-type=3Dtext/plain Index: botan-1.8.2-respect_LDFLAGS.patch =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 --- src/build-data/makefile/unix_shr.in +++ src/build-data/makefile/unix_shr.in @@ -88,7 +88,7 @@ # Link Commands # ################################################## $(CHECK): $(LIBRARIES) $(CHECKOBJS) - $(CXX) $(CHECKOBJS) -L. -lbotan-@{var:version} $(LINK_TO) -o $(CHECK) + $(CXX) $(LDFLAGS) $(CHECKOBJS) -o $(CHECK) -L. -lbotan-@{var:version} $= (LINK_TO) =20 $(STATIC_LIB): $(LIBOBJS) $(RM) $(STATIC_LIB) @@ -96,7 +96,7 @@ $(RANLIB) $(STATIC_LIB) =20 $(SHARED_LIB): $(LIBOBJS) - $(SO_LINK_CMD) $(LINK_TO) $(LIBOBJS) -o $(SHARED_LIB) + $(SO_LINK_CMD) $(LDFLAGS) $(LIBOBJS) -o $(SHARED_LIB) $(LINK_TO) $(LN) $(SHARED_LIB) $(SYMLINK) =20 ##################################################