Gentoo Archives: gentoo-commits

From: "Anthony G. Basile (blueness)" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-proxy/torsocks/files: fix-find-libc.so.patch
Date: Sun, 26 Jan 2014 17:56:54
Message-Id: 20140126175650.5281D2004C@flycatcher.gentoo.org
1 blueness 14/01/26 17:56:50
2
3 Added: fix-find-libc.so.patch
4 Log:
5 Version bump, fix bug #493058
6
7 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 0xF52D4BBA)
8
9 Revision Changes Path
10 1.1 net-proxy/torsocks/files/fix-find-libc.so.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/torsocks/files/fix-find-libc.so.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/torsocks/files/fix-find-libc.so.patch?rev=1.1&content-type=text/plain
14
15 Index: fix-find-libc.so.patch
16 ===================================================================
17 diff -Nuar torsocks-2.0.0-rc3.orig/configure.ac torsocks-2.0.0-rc3/configure.ac
18 --- torsocks-2.0.0-rc3.orig/configure.ac 2013-11-03 13:24:51.000000000 -0500
19 +++ torsocks-2.0.0-rc3/configure.ac 2014-01-26 12:49:55.157606016 -0500
20 @@ -132,7 +132,7 @@
21 dnl Get libc full system path. Use prefix or some hardcoded standard
22 dnl location on Unixish system.
23 AC_MSG_CHECKING(location of libc.so)
24 -for DIR in "$prefix/lib" "$prefix/usr/lib" '/lib' '/usr/lib'; do
25 +for DIR in "$prefix/lib*" "$prefix/usr/lib*" '/lib*' '/usr/lib*'; do
26 if test "${LIBC_PATH}" = ""; then
27 LIBC_PATH=`$FIND $DIR -name "libc.so.?" 2>/dev/null | $TAIL -1`
28 fi