summaryrefslogtreecommitdiff
path: root/fedora
diff options
context:
space:
mode:
Diffstat (limited to 'fedora')
-rw-r--r--fedora/branch.mk4
-rw-r--r--fedora/glibc.spec.in15
2 files changed, 14 insertions, 5 deletions
diff --git a/fedora/branch.mk b/fedora/branch.mk
index e4217bc04b..37e8ff5e8f 100644
--- a/fedora/branch.mk
+++ b/fedora/branch.mk
@@ -3,5 +3,5 @@ glibc-branch := fedora
glibc-base := HEAD
DIST_BRANCH := devel
COLLECTION := dist-fc7
-fedora-sync-date := 2007-01-17 10:43 UTC
-fedora-sync-tag := fedora-glibc-20070117T1043
+fedora-sync-date := 2007-02-02 09:23 UTC
+fedora-sync-tag := fedora-glibc-20070202T0923
diff --git a/fedora/glibc.spec.in b/fedora/glibc.spec.in
index 8b2027346c..14015daa1d 100644
--- a/fedora/glibc.spec.in
+++ b/fedora/glibc.spec.in
@@ -1,4 +1,4 @@
-%define glibcrelease 15
+%define glibcrelease 16
%define auxarches i586 i686 athlon sparcv9 alphaev6
%define xenarches i686 athlon
%ifarch %{xenarches}
@@ -1393,7 +1393,7 @@ touch $RPM_BUILD_ROOT/%{_prefix}/lib/locale/locale-archive
%triggerin common -p /usr/sbin/tzdata-update -- tzdata
%post devel
-/sbin/install-info %{_infodir}/libc.info.gz %{_infodir}/dir
+/sbin/install-info %{_infodir}/libc.info.gz %{_infodir}/dir || :
%pre headers
# this used to be a link and it is causing nightmares now
@@ -1403,7 +1403,7 @@ fi
%preun devel
if [ "$1" = 0 ]; then
- /sbin/install-info --delete %{_infodir}/libc.info.gz %{_infodir}/dir
+ /sbin/install-info --delete %{_infodir}/libc.info.gz %{_infodir}/dir || :
fi
%post utils -p /sbin/ldconfig
@@ -1546,6 +1546,15 @@ rm -f *.filelist*
%endif
%changelog
+* Fri Feb 2 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-16
+- add strerror_l
+- fix application crashes when doing NSS lookups through nscd
+ mmapped databases and nscd decides to start garbage collection
+ during the lookups (#219145, #225315)
+- fix %0lld printing of 0LL on 32-bit architectures (BZ#3902)
+- ignore errors from install-info in glibc-devel scriptlets
+ (#223691)
+
* Wed Jan 17 2007 Jakub Jelinek <jakub@redhat.com> 2.5.90-15
- fix NIS getservbyname when proto is NULL
- fix nss_compat +group handling (#220658)