glibc/intl
Will Newton 6d24885784 intl: Merge with gettext version 0.19.3
This patch merges the latest release of gettext into the intl
subdirectory. The initial motivation was to include the plural.y
changes which enable building with bison 3.0, but the majority
of the other changes are merely cosmetic so it seemed like merging
the whole directory was simpler than trying to take it piecemeal.

The merge was done by copying across the latext gettext code and
adding in a few small glibc changes that have been added over the
years that seemed beneficial, as well as a couple of small build
fixes that should be merged back to gettext. I also reverted the
gettext commit:

commit 279b57fc367251666f00e8e2b599b83703451afb
Author: Bruno Haible <bruno@clisp.org>
Date:   Fri Jun 14 12:03:49 2002 +0000

    Make absolute pathnames inside $LANGUAGE work.

As it caused localedata/tst-setlocale3 to fail and it wasn't clear
that glibc wanted that behaviour.

The merge has dropped many uses of __glibc_likely/unlikely. This is
intentional given that it eases merging. It seems to me that the cost
of continually rewriting these lines when merging and the risk of adding
bugs when doing so outweighs the benefits of using these macros when
code is shared with another project.

Tested with make check on x86_64.

ChangeLog:

2014-12-11  Will Newton  <will.newton@linaro.org>

	Merge gettext 0.19.3 into intl/.

	This involves a number of cosmetic changes to comments
	and ANSI function definitions and prototypes throughout
	all the files. The gettext copyright header is used but
	with the date ranges taken from the glibc copy.

	* NEWS: Add gettext merge to 2.21.
	* intl/bindtextdom.c: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	Use gl_* locking primitives rather than __libc_* ones.
	Use __builtin_expect rather than __glibc_likely/unlikely.
	* intl/dcgettext.c: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	* intl/dcigettext.c: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	(INTDIV0_RAISES_SIGFPE): New define.
	Use gl_* locking primitives rather than __libc_* ones.
	Include eval-plural.h instead of plural-eval.c.
	Use __builtin_expect rather than __glibc_likely/unlikely.
	* intl/dcngettext.c: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	* intl/dgettext.c: Likewise.
	* intl/dngettext.c: Likewise.
	* intl/plural-eval.c: Renamed to...
	* intl/eval-plural.h: ...this.
	* intl/explodename.c: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	(_nl_explode_name): Use strchr instead of __rawmemchr.
	* intl/finddomain.c: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	Use gl_* locking primitives rather than __libc_* ones.
	(_nl_find_domain): Use malloc rather than alloca for
	allocation of temporary locale name.
	* intl/gettext.c: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	* intl/gettextP.h: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	Use gl_* locking primitives rather than __libc_* ones.
	* intl/gmo.h: Switch to gettext copyright.
	(struct sysdep_string): Move struct segment_pair outside of
	struct definition.
	* intl/hash-string.c: Use ANSI definitions and prototypes.
	* intl/hash-string.h: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	* intl/l10nflist.c: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	(_nl_normalize_codeset): Avoid integer overflow.
	* intl/loadinfo.h: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	(LIBINTL_DLL_EXPORTED): New define.
	(PATH_SEPARATOR): New define.
	* intl/loadmsgcat.c: Switch to gettext copyright.
	* intl/localealias.c: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	(_nl_expand_alias): Use PATH_SEPARATOR.
	* intl/ngettext.c: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	* intl/plural-exp.c: Likewise.
	* intl/plural-exp.h: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	(struct expression): Move definition of enum operator outside
	of struct definition.
	* intl/plural.c: Regenerate.
	* intl/plural.y: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	Port to bison 3.0.
	* intl/textdomain.c: Switch to gettext copyright.
	Use ANSI definitions and prototypes.
	Use gl_* locking primitives rather than __libc_* ones.
2014-12-11 09:54:49 +00:00
..
Depend Update. 2000-06-17 07:39:18 +00:00
Makefile Don't require test wrappers to preserve environment variables, use more consistent environment. 2014-06-06 22:19:27 +00:00
Versions Update. 2002-05-01 17:09:58 +00:00
bindtextdom.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
dcgettext.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
dcigettext.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
dcngettext.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
dgettext.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
dngettext.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
eval-plural.h intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
explodename.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
finddomain.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
gettext.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
gettextP.h intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
gmo.h intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
hash-string.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
hash-string.h intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
l10nflist.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
libintl.h Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
loadinfo.h intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
loadmsgcat.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
locale.alias Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
localealias.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
ngettext.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
plural-exp.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
plural-exp.h intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
plural.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
plural.y intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
po2test.awk Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
textdomain.c intl: Merge with gettext version 0.19.3 2014-12-11 09:54:49 +00:00
translit.po Update. 2000-11-02 07:51:38 +00:00
tst-codeset.c Modify several tests to use test-skeleton.c 2014-11-05 15:24:08 +05:30
tst-gettext.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
tst-gettext.sh Don't require test wrappers to preserve environment variables, use more consistent environment. 2014-06-06 22:19:27 +00:00
tst-gettext2.c Modify several tests to use test-skeleton.c 2014-11-05 15:24:08 +05:30
tst-gettext2.sh tst-gettext2: make setup more robust 2014-08-08 22:55:48 -04:00
tst-gettext3.c Modify several tests to use test-skeleton.c 2014-11-05 15:24:08 +05:30
tst-gettext4-de.po * sysdeps/i386/i686/memcmp.S: Move misplaced END. 2005-04-28 18:21:03 +00:00
tst-gettext4-fr.po * sysdeps/i386/i686/memcmp.S: Move misplaced END. 2005-04-28 18:21:03 +00:00
tst-gettext4.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
tst-gettext4.sh Don't require test wrappers to preserve environment variables, use more consistent environment. 2014-06-06 22:19:27 +00:00
tst-gettext5.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
tst-gettext6.c Update copyright notices with scripts/update-copyrights 2014-01-01 22:00:23 +10:00
tst-gettext6.sh Don't require test wrappers to preserve environment variables, use more consistent environment. 2014-06-06 22:19:27 +00:00
tst-ngettext.c Modify several tests to use test-skeleton.c 2014-11-05 15:24:08 +05:30
tst-translit.c Modify several tests to use test-skeleton.c 2014-11-05 15:24:08 +05:30
tst-translit.sh Don't require test wrappers to preserve environment variables, use more consistent environment. 2014-06-06 22:19:27 +00:00
tstcodeset.po Update. 2001-04-10 00:15:08 +00:00
tstlang1.po Update. 2000-10-31 03:10:13 +00:00
tstlang2.po Update. 2000-10-31 03:10:13 +00:00