d9d230b82a3ba24cae5661ab865c9a40cc2ba2ec
[platform/upstream/glib.git] / ChangeLog
1 2008-04-02  Tor Lillqvist  <tml@novell.com>
2
3         Bug 524314 - g_convert() on Win32 implicitly converts full width
4         alphanumerics into half width
5         
6         * glib/win_iconv.c: Update from Yukihiro Nakadaira. Use
7         WC_NO_BEST_FIT_CHARS flag for WideCharToMultiByte() unless the
8         //translit flag was suffixed to the codeset name.
9
10         * glib/gconvert.c: Include win_iconv.c earlier so that its
11         definition of WINVER before it includes <windows.h> is used.
12
13 2008-03-31  Tor Lillqvist  <tml@novell.com>
14
15         * glib/gmain.c (g_poll): Improve fix for #525192 below: Use
16         SleepEx() so that the sleep is alertable. Thanks to John
17         Ehresman.
18
19 2008-03-31  Tor Lillqvist  <tml@novell.com>
20
21         * glib/gwin32.c
22         (g_win32_get_package_installation_directory_of_module): Fix Cygwin
23         breakage. Patch by Lieven van der Heide.
24
25 2008-03-31 10:39:17  Tim Janik  <timj@imendio.com>
26
27         * glib/gutils.h: reapply inlining fix from r6333 to fix:
28         Bug 522292 – Gives warnings in glib/gutils.h with GCC in C99 mode
29         and again:
30         Bug 315437 – extern inline -> static inline
31
32 2008-03-31  Tor Lillqvist  <tml@novell.com>
33
34         Bug 525192 - 100% CPU if run main loop with no IO sources
35
36         * glib/gmain.c (g_poll) [Win32]: Patch by Neil Roberts.
37
38 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
39
40         * glib/gtester.c: Don't use ARG_MAX.  (#522335, patch by 
41         Sebastian Dröge)
42
43 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
44
45         * glib/gmacros.h: Add macros wrapping the gcc alloc_size 
46         function attribute.  (#523019, Rodrigo Moya)
47
48         * glib/gmem.h: 
49         * glib/gslice.h:
50         * glib/gstrfuncs.h: Use the new attribute where appropriate.
51
52 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
53
54         * glib/glibintl.h:
55         * glib/gstrfuncs.c:
56         * glib/gutils.c: Simple fixes to help building GLib on 
57         embedded systems without NLS.  (#524350, Peter Kjellerstedt)
58
59 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
60
61         * glib/ghash.c: Fix the build with -DG_DISABLE_ASSERT.
62         (#525060, Arfrever Frehtes Taifersar Arahesis)
63
64 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
65         
66         * glib/gthread.h: Replace occurrances of G_GNUC_PRETTY_FUNCTION
67         by G_STRFUNC.  (#524344, Peter Kjellerstedt)
68
69 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
70
71         * glib/gtestutils.c: Fix a doc typo. (#524742, Hiroyuki Ikezoe)
72
73 2008-03-22  Claudio Saavedra  <csaavedra@gnome.org>
74
75         Bug 523877 – gbookmarkfile: avoid using g_string_append_printf() and
76         other optimizations
77
78         * glib/gbookmarkfile.c: (bookmark_metadata_dump),
79         (bookmark_item_dump), (g_bookmark_file_dump), (expand_exec_line):
80         Replace all calls to g_string_append_printf with g_strconcat () or
81         g_string_append () where appropriate, to reduce the file creation time.
82         Also, use g_string_sized_new () with an appropriate buffer size instead
83         of g_string_new (NULL), to reduce time spent in memory reallocation.
84         (#523877, Claudio Saavedra, Emmanuele Bassi)
85
86 2008-03-22  Emmanuele Bassi  <ebassi@gnome.org>
87
88         Bug 518160 - replace two g_strdup_printf calls in GBookmarkFile
89
90         * glib/gbookmarkfile.c (is_element_full): Compare the fragments
91         instead of building two strings; this avoids two g_strdup_printf()
92         per namespaced element enountered. (#518160, Felix Riemann)
93
94 2008-03-20  Alexander Larsson  <alexl@redhat.com>
95
96         * configure.in:
97         Final fixes for struct statfs.f_fstypename checks (OpenBSD). (#521045)
98         Patch from ephraim_owns@hotmail.com
99
100 2008-03-19  Tor Lillqvist  <tml@novell.com>
101
102         Bug 523298 - win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
103
104         * glib/win_iconv.c: Fixes for code page 54936 (GB18030)
105         (mbtowc_flags): New function. Check if a code page is one of those
106         for which the dwFlags parameter to MultiByteToWideChar() must be
107         zero. Return 0 or MB_ERR_INVALID_CHARS.
108         (mbcs_mblen): New function for multi-byte (more than two bytes for
109         some characters) code pages. Only handles 54936 for now.
110         (make_csconv): Use it for 54936.
111         (kernel_mbtowc): Use mbtowc_flags().
112
113 2008-03-18  Sebastian Dröge  <slomo@circular-chaos.org>
114
115         Bug 522292 - Gives warnings in glib/gutils.h with GCC in C99 mode
116
117         * glib/gutils.h: Use "__attribute__ ((__gnu_inline__))" for inlining
118         if either __GNUC_STDC_INLINE__ or __GNUC_GNU_INLINE__ are defined. In
119         gcc version prior to 4.3 no correct C99-inline was implemented which
120         has semantic differences to GNU inline.
121
122 2008-03-16  Tor Lillqvist  <tml@novell.com>
123
124         * configure.in: Don't bother defining Autoconf variables for
125         glib.def, gmodule.def, gobject.def and gthread.def when this can
126         be handled easily in */Makefile.am which are the only files that
127         use them. Remove also TESTGMODULE_EXP which isn't used at all.
128
129         * glib/Makefile.am: Corrsponding change.
130         
131 2008-03-14  Michael Natterer  <mitch@imendio.com>
132
133         * glib/*.h: make it possible to disable single-file includes by
134         defining G_DISABLE_SINGLE_INCLUDES when building against GLib.
135         Approved by Tim Janik.
136
137         * glib/glib.h: include <glib/gslice.h>.
138
139         * glib/gi18n.h
140         * glib/gi18n-lib.h
141         * glib/gprintf.h: include <glib.h> so the above works when these
142         files are included without including <glib.h> first.
143
144 2008-03-14  Alexander Larsson  <alexl@redhat.com>
145
146         * configure.in:
147         Add required includes for f_fstypename member check.
148
149 2008-03-14  Alexander Larsson  <alexl@redhat.com>
150
151         * configure.in:
152         Added checks for FEN (Solaris  File Event Notification)
153
154 2008-03-13  Tor Lillqvist  <tml@novell.com>
155
156         * glib-zip.in: Add lib/gio-2.0.lib and lib/gio-2.0.def.
157
158 2008-03-12  Tor Lillqvist  <tml@novell.com>
159
160         * configure.in: Expand gio/win32/Makefile.
161
162 2008-03-12  Matthias Clasen <mclasen@redhat.com>
163
164         * configure.in: Bump version to 2.17.0
165
166         * ChangeLog.pre-2-16: rotate ChangeLog
167         
168         * === branch for 2.16 ===