Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo commit in src/patchsets/glibc/2.22: 00_all_0022-BZ-17250-Fix-static-dlopen-default-library-search-pa.patch README.history
Date: Sat, 26 Sep 2015 18:42:16
Message-Id: 20150926184206.46EF823A@oystercatcher.gentoo.org
1 vapier 15/09/26 18:42:06
2
3 Modified: README.history
4 Added:
5 00_all_0022-BZ-17250-Fix-static-dlopen-default-library-search-pa.patch
6 Log:
7 fix from upstream for static linking and using nss libs #509748
8
9 Revision Changes Path
10 1.8 src/patchsets/glibc/2.22/README.history
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.22/README.history?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.22/README.history?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.22/README.history?r1=1.7&r2=1.8
15
16 Index: README.history
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo/src/patchsets/glibc/2.22/README.history,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- README.history 29 Aug 2015 22:21:52 -0000 1.7
23 +++ README.history 26 Sep 2015 18:42:06 -0000 1.8
24 @@ -1,3 +1,6 @@
25 +8 26 Sep 2015
26 + + 00_all_0022-BZ-17250-Fix-static-dlopen-default-library-search-pa.patch
27 +
28 7 29 Aug 2015
29 + 00_all_0021-getmntent-fix-memory-corruption-w-blank-lines-BZ-188.patch
30
31
32
33
34 1.1 src/patchsets/glibc/2.22/00_all_0022-BZ-17250-Fix-static-dlopen-default-library-search-pa.patch
35
36 file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.22/00_all_0022-BZ-17250-Fix-static-dlopen-default-library-search-pa.patch?rev=1.1&view=markup
37 plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/glibc/2.22/00_all_0022-BZ-17250-Fix-static-dlopen-default-library-search-pa.patch?rev=1.1&content-type=text/plain
38
39 Index: 00_all_0022-BZ-17250-Fix-static-dlopen-default-library-search-pa.patch
40 ===================================================================
41 From adf228f91c11a1bcdf7563d104a2a370d054e482 Mon Sep 17 00:00:00 2001
42 From: "Maciej W. Rozycki" <macro@××××××.com>
43 Date: Fri, 25 Sep 2015 09:37:12 +0100
44 Subject: [PATCH] [BZ #17250] Fix static dlopen default library search path
45
46 Fix a regression introduced with commit 0d23a5c1 [Static dlopen
47 correction fallout fixes] that caused the default library search path to
48 be ignored for modules loaded with dlopen from static executables.
49
50 [BZ #17250]
51 * elf/dl-support.c (_dl_main_map): Don't initialize l_flags_1
52 member.
53
54 (cherry picked from commit 93bad7c97c7047ecaf7664859e2b49c0fe995443)
55 ---
56 elf/dl-support.c | 1 -
57 1 file changed, 1 deletion(-)
58
59 diff --git a/elf/dl-support.c b/elf/dl-support.c
60 index 4d036f1..835dcb3 100644
61 --- a/elf/dl-support.c
62 +++ b/elf/dl-support.c
63 @@ -91,7 +91,6 @@ static struct link_map _dl_main_map =
64 .l_scope = _dl_main_map.l_scope_mem,
65 .l_local_scope = { &_dl_main_map.l_searchlist },
66 .l_used = 1,
67 - .l_flags_1 = DF_1_NODEFLIB,
68 .l_tls_offset = NO_TLS_OFFSET,
69 .l_serial = 1,
70 };
71 --
72 2.5.2