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