diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-03-06 05:07:51 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-03-06 05:07:51 +0000 |
commit | 646678f423c5d4f9339e935bc62e841f3366f9a3 (patch) | |
tree | 00e965eb2b4038706b418eca3e442cf914705f87 /src/patchsets/glibc | |
parent | glep 46 updates (diff) | |
download | gentoo-646678f423c5d4f9339e935bc62e841f3366f9a3.tar.gz gentoo-646678f423c5d4f9339e935bc62e841f3366f9a3.tar.bz2 gentoo-646678f423c5d4f9339e935bc62e841f3366f9a3.zip |
grab patch from crosstool
Diffstat (limited to 'src/patchsets/glibc')
-rw-r--r-- | src/patchsets/glibc/2.3.6/1090_all_glibc-2.3.6-fix-pr631.patch | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/patchsets/glibc/2.3.6/1090_all_glibc-2.3.6-fix-pr631.patch b/src/patchsets/glibc/2.3.6/1090_all_glibc-2.3.6-fix-pr631.patch new file mode 100644 index 0000000000..899fa2aee5 --- /dev/null +++ b/src/patchsets/glibc/2.3.6/1090_all_glibc-2.3.6-fix-pr631.patch @@ -0,0 +1,45 @@ +From dank@kegel.com +Wed Jun 15 09:12:43 PDT 2005 + +Fixes + +build-glibc/libc.a(nsswitch.o)(.data+0x64): undefined reference to `_nss_files_getaliasent_r' +build-glibc/libc.a(nsswitch.o)(.data+0x6c): undefined reference to `_nss_files_endaliasent' +... 53 lines deleted ... +build-glibc/libc.a(nsswitch.o)(.data+0x21c): undefined reference to `_nss_files_getspnam_r' +collect2: ld returned 1 exit status +make[2]: *** [/build/gcc-3.4.3-glibc-2.3.5-hdrs-2.6.11.2/i686-unknown-linux-gnu/build-glibc/elf/ldconfig] Error 1 + +when building glibc with --enable-static-nss. + +See http://sources.redhat.com/bugzilla/show_bug.cgi?id=631 + +--- glibc-2.3.5/Makeconfig.old Wed Jun 15 08:13:12 2005 ++++ glibc-2.3.5/Makeconfig Wed Jun 15 08:13:14 2005 +@@ -487,7 +487,7 @@ + + # The static libraries. + ifeq (yes,$(build-static)) +-link-libc-static = $(common-objpfx)libc.a $(static-gnulib) $(common-objpfx)libc.a ++link-libc-static = $(common-objpfx)libc.a $(static-gnulib) $(otherlibs) $(common-objpfx)libc.a + else + ifeq (yes,$(build-shared)) + # We can try to link the programs with lib*_pic.a... +--- glibc-2.3.5/elf/Makefile.old Wed Jun 15 07:46:49 2005 ++++ glibc-2.3.5/elf/Makefile Wed Jun 15 08:14:00 2005 +@@ -115,6 +115,13 @@ + install-bin-script = ldd + endif + ++ifeq (yes,$(build-static-nss)) ++nssobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)nss) ++resolvobjdir := $(patsubst ../$(subdir),.,$(common-objpfx)resolv) ++otherlibs += $(nssobjdir)/libnss_files.a $(resolvobjdir)/libnss_dns.a \ ++ $(resolvobjdir)/libresolv.a ++endif ++ + others = sprof sln + install-bin = sprof + others-static = sln + +Signed-off-by: Robert P. J. Day <rpjday@mindspring.com> |