Skip to content

Commit

Permalink
Updated to fedora-glibc-2_5-20061008T1257
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Jelinek committed Oct 8, 2006
1 parent b75a89e commit 70c9744
Show file tree
Hide file tree
Showing 9 changed files with 38 additions and 11 deletions.
11 changes: 11 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
2006-10-06 Andreas Jaeger <aj@suse.de>

* include/features.h (__GLIBC_MINOR__): It's glibc 2.5 now.

2006-10-06 Ulrich Drepper <drepper@redhat.com>

* po/pl.po: Update from translation team.

* nscd/nscd.c (main): Fix typo in message.
Patch by Jakub Bogsz <qboosh@pld-linux.org>.

2006-10-02 Jakub Jelinek <jakub@redhat.com>

[BZ #3291]
Expand Down
4 changes: 2 additions & 2 deletions fedora/branch.mk
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ glibc-branch := fedora-2_5
glibc-base := glibc-2_5-branch
DIST_BRANCH := FC-6
COLLECTION := dist-fc6
fedora-sync-date := 2006-10-02 18:58 UTC
fedora-sync-tag := fedora-glibc-20061002T1858
fedora-2_5-sync-date := 2006-10-08 12:57 UTC
fedora-2_5-sync-tag := fedora-glibc-2_5-20061008T1257
8 changes: 7 additions & 1 deletion fedora/glibc.spec.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%define glibcrelease 2
%define glibcrelease 3
%define auxarches i586 i686 athlon sparcv9 alphaev6
%define xenarches i686 athlon
%ifarch %{xenarches}
Expand Down Expand Up @@ -1528,6 +1528,12 @@ rm -f *.filelist*
%endif

%changelog
* Sun Oct 8 2006 Jakub Jelinek <jakub@redhat.com> 2.5-3
- bump __GLIBC_MINOR__
- increase PTHREAD_STACK_MIN on ppc{,64} to 128K to allow
64K pagesize kernels (#209877)
- speed up initgroups on NIS+ (#208203)

* Mon Oct 2 2006 Jakub Jelinek <jakub@redhat.com> 2.5-2
- fix nscd database growing (#207928)
- bypass prelinking when LD_DYNAMIC_WEAK=1 is in the environment
Expand Down
2 changes: 1 addition & 1 deletion include/features.h
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@
/* Major and minor version number of the GNU C library package. Use
these macros to test for features in specific releases. */
#define __GLIBC__ 2
#define __GLIBC_MINOR__ 4
#define __GLIBC_MINOR__ 5

#define __GLIBC_PREREQ(maj, min) \
((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
Expand Down
9 changes: 9 additions & 0 deletions localedata/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2006-10-05 Dmitry V. Levin <ldv@altlinux.org>

* locales/tt_RU: Fix territory, title and descriptive comment.

2006-10-05 Ulrich Drepper <drepper@redhat.com>

* locales/pa_IN (abday): Fix spelling of Sunday.
Patch by Mayank Jain <majain@redhat.com>.

2006-10-01 Ulrich Drepper <drepper@redhat.com>

* locales/en_GB: Use more complete en_US data in LC_NAME.
Expand Down
2 changes: 1 addition & 1 deletion localedata/locales/pa_IN
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ abday "<U0A10><U0A24><U0020>";/
"<U0A2C><U0A41><U0A71><U0A27><U0020>";/
"<U0A35><U0A40><U0A30><U0020>";/
"<U0A36><U0A41><U0A71><U0A15><U0A30><U0020>";/
"<U0A36><U0A28><U0A40><U0A1A><U0A30><U0020>"
"<U0A36><U0A28><U0A3F><U0A71><U0A1A><U0A30><U0020>"
%
% Full weekday names (%A)
day "<U0A10><U0A24><U0A35><U0A3E><U0A30><U0020>";/
Expand Down
6 changes: 3 additions & 3 deletions localedata/locales/tt_RU
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
comment_char %
escape_char /
%
% Tatar Language Locale for Tatarstan
% Tatar Language Locale for Russia
% Source:
% Contact: Pablo Saratxaga, Rinat Norkin
% Email: <pablo@mandrakesoft.com>, <rinat@taif.ru>
Expand All @@ -24,15 +24,15 @@ escape_char /
% replace cyrillic alphabet

LC_IDENTIFICATION
title "Tatar language locale for Tatarstan"
title "Tatar language locale for Russia"
source "Rinat Norkin"
address ""
contact "Pablo Saratxaga, Rinat Norkin"
email "pablo@mandrakesoft.com, rinat@taif.ru"
tel ""
fax ""
language "Tatar"
territory "Tatarstan"
territory "Russia"
revision "0.4"
date "2001-01-28"

Expand Down
5 changes: 3 additions & 2 deletions manual/stdio.texi
Original file line number Diff line number Diff line change
Expand Up @@ -2393,8 +2393,9 @@ This function is similar to @code{sprintf}, except that it dynamically
allocates a string (as with @code{malloc}; @pxref{Unconstrained
Allocation}) to hold the output, instead of putting the output in a
buffer you allocate in advance. The @var{ptr} argument should be the
address of a @code{char *} object, and @code{asprintf} stores a pointer
to the newly allocated string at that location.
address of a @code{char *} object, and a successful call to
@code{asprintf} stores a pointer to the newly allocated string at that
location.

The return value is the number of characters allocated for the buffer, or
less than zero if an error occurred. Usually this means that the buffer
Expand Down
2 changes: 1 addition & 1 deletion nscd/nscd.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ main (int argc, char **argv)

if (chdir ("/") != 0)
error (EXIT_FAILURE, errno,
_("cannot change current working cirectory to \"/\""));
_("cannot change current working directory to \"/\""));

openlog ("nscd", LOG_CONS | LOG_ODELAY, LOG_DAEMON);

Expand Down

0 comments on commit 70c9744

Please sign in to comment.