180aad0c3a2ab5bb099cf24463c8db174c1b75a5
[platform/upstream/gettext.git] / gettext-runtime / intl / ChangeLog
1 2016-06-09  Daiki Ueno  <ueno@gnu.org>
2
3         Prepare for 0.19.8
4
5 2016-05-25  Daiki Ueno  <ueno@gnu.org>
6
7         intl: Pacify pre-C99 compilers
8         * gettext-runtime/intl/plural-exp.h (HAVE_STRUCT_INITIALIZER): New
9         macro, based on the check previously in plural-exp.c.  Also add check
10         for __SUNPRO_C for Solaris Studio C compiler.
11         (GERMANIC_PLURAL): Define as 'struct expression' not 'const struct
12         expression' if struct/union initializers are not supported by the
13         compiler.
14         * gettext-runtime/intl/plural-exp.c: Use HAVE_STRUCT_INITIALIZER.
15         Reported by Dagobert Michelsen and investigated by pan7 in:
16         https://savannah.gnu.org/support/?108743
17
18 2016-01-20  KO Myung-Hun  <komh78@gmail.com>
19
20         intl: Support UNIXROOT in BINDTEXTDOMAIN () on EMX
21         $UNIXROOT is a drive on which a root of FHS is.
22
23         * gettext-runtime/intl/bindtextdom.c (BINDTEXTDOMAIN): Prepend
24         $UNIXROOT to dirname if it is started '/' or it is an empty string.
25
26 2016-01-02  Daiki Ueno  <ueno@gnu.org>
27
28         maint: Update copyright year
29
30 2015-12-28  Daiki Ueno  <ueno@gnu.org>
31
32         Prepare for 0.19.7
33
34 2015-12-10  KO Myung-Hun  <komh78@gmail.com>  (tiny change)
35
36         intl: Fix name resolution failures on kLIBC
37         kLIBC already has _nl_default_dirname and _nl_msg_cat_cntr in its own
38         gettext implmenetation.
39         * gettext-runtime/intl/dcigettext.c: Do not declare _nl_default_dirname
40         on kLIBC.
41         * gettext-runtime/intl/gettextP.h: Define _nl_msg_cat_cntr to
42         libintl_nl_msg_cat_cntr on kLIBC.
43
44         build: Do not include os2compat.[ch]
45         kLIBC does not need os2compat.[ch]
46         * gettext-runtime/configure.ac (AH_BOTTOM): Do not include
47         intl/os2compat.h on kLIBC.
48         * gettext-runtime/intl/osdep.c: Do not include os2compat.c on kLIBC.
49         * gettext-tools/configure.ac (AH_BOTTOM): Do not include
50         intl/os2compat.h on kLIBC.
51
52 2015-10-15  Daiki Ueno  <ueno@gnu.org>
53
54         build: Generate ChangeLogs for intl and po
55         * autogen.sh: Create empty ChangeLog files under intl and po.
56         * Makefile.am (gen-ChangeLogs): Rename from gen-ChangeLog.  Generate
57         ChangeLog files for */intl and */po as well as top-level.
58         * gettext-runtime/intl/ChangeLog.0: Rename from ChangeLog.
59         * gettext-runtime/po/ChangeLog.0: Rename from ChangeLog.
60         * gettext-tools/po/ChangeLog.1: Rename from ChangeLog.
61
62 2015-10-14  Mike Frysinger  <vapier@chromium.org>
63
64         intl/localename: control langinfo.h inclusion
65         This header is only used to work around buggy behavior in old versions
66         of glibc, so do not include it all the time.  Otherwise we get build
67         failures on systems that do not provide langinfo.h.
68
69         * gettext-runtime/intl/localename.c: Wrap langinfo.h include with same
70         ifdefs used in the source later on.