Bug 556101 – static mutex yields warnings with g++ Reviewed by Tim Janik
[platform/upstream/glib.git] / ChangeLog
1 2008-10-13  Sven Herzberg  <sven@imendio.com>
2
3         Bug 556101 – static mutex yields warnings with g++
4         Reviewed by Tim Janik
5
6         * configure.in: added an intermediate cast to gpointer
7
8 2008-10-13  Christian Persch <chpe@gnome.org>
9
10         Bug 555311 – format not a string literal and no format arguments
11
12         * glib/gmarkup.c:
13         * glib/gshell.c: Use literal errors where appropriate.
14
15 2008-10-10  Behdad Esfahbod  <behdad@gnome.org>
16
17         Bug 551355 – [PATCH] Make glib build with libtool 2.2
18
19         * autogen.sh: Accept libtool 2.2.   We are moving towards having
20         it working.
21
22 2008-10-10  Behdad Esfahbod  <behdad@gnome.org>
23
24         * configure.in: With libtool 2.x, regenerate libtool early.
25         Based on bug 552107, patch by Patryk Zawadzki
26
27 2008-10-10  Matthias Clasen  <mclasen@redhat.com>
28
29         Bug 554557 – Patch to fix gcc warnings about missing format 
30         specifiers
31
32         * glib/gmarkup.c:
33         * glib/gshell.c:
34         * glib/grel.c: Fix gcc warnings. Patch by Kjartan Maraas
35
36 2008-10-10  Matthias Clasen  <mclasen@redhat.com>
37
38         Bug 552861 – glib-2.0.m4 calls system(3) without storing its result
39
40         * m4macros/glib-2.0.m4: Cosmetic change to make -Werror happy.
41         Patch by Andreas Köhler
42
43 2008-10-08  Christian Persch  <chpe@gnome.org>
44
45         Bug 555313 – GFileAttribute boxed type get_type function should
46         use usual get_type pattern
47
48         * gio/gfileattribute.c (g_file_attribute_info_list_get_type): Use
49         g_once_init_enter/leave.
50
51 2008-10-08  Christian Persch  <chpe@gnome.org>
52
53         Bug 555314 – mem leak in gmarkup
54
55         * glib/gmarkup.c: (g_markup_parse_context_parse): Plug a mem leak.
56
57 2008-10-08  Tor Lillqvist  <tml@novell.com>
58
59         Bug 554790 - g_convert() misbehaves with winiconv versions
60
61         * glib/win_iconv.c (kernel_mbtowc): If converting from ASCII,
62         explicitly check for and reject 8bit chars. MultiByteToWideChar()
63         doesn't, at least not on XP.
64
65 2008-10-06  Matthias Clasen  <mclasen@redhat.com>
66
67         * glib/gtypes.h: Properly include gmacros.h
68
69 2008-10-06  Behdad Esfahbod  <behdad@gnome.org>
70
71         Bug 555309 – giochannel breaks on error
72         Patch from Christian Persch
73
74         * glib/giounix.c (g_io_unix_read), (g_io_unix_write),
75         (g_io_unix_seek), (g_io_unix_close), (g_io_unix_set_flags):
76         Don't shadow err.  Oops!
77
78 2008-10-06  Christophe Fergeau  <teuf@gnome.org>
79
80         Bug 555224 – Improve g_format_size_for_display doc
81         
82         * glib/gfileutils.c: change g_format_size_for_display API doc to
83         explicitly say that the returned string has to be freed. Change
84         spelling of "newly allocated" to "newly-allocated" in g_file_read_link
85         API doc to be more consistent with what is done in that file.
86
87 2008-10-01  David Zeuthen  <davidz@redhat.com>
88
89         * README.in: Add "Notes about glib 2.20" section detailing the
90         ramifications of the patch from bug #528670.
91
92 2008-09-30  Behdad Esfahbod  <behdad@gnome.org>
93
94         Bug 554092 – glib doesn't return G_FILE_ERROR_NOENT et al on OS X
95
96         * glib/giounix.c (g_io_unix_read), (g_io_unix_write),
97         (g_io_unix_seek), (g_io_unix_close), (g_io_unix_set_flags),
98         (g_io_unix_get_flags), (g_io_channel_new_file):
99         Like mclasen says: "well, thats the way errno works...,
100         save it or loose it".  Save errno.
101
102 2008-09-30  Tor Lillqvist  <tml@novell.com>
103
104         * Makefile.decl
105         * glib/tests/Makefile.am: Bypass gtester related stuff on Windows.
106
107 2008-09-30  Tor Lillqvist  <tml@novell.com>
108
109         * glib/gprintf.c
110         * glib/gnulib/vasnprintf.c: Don't define _GNU_SOURCE on Windows,
111         as _GNU_SOURCE has unintended side effects when compiling against
112         newest mingw headers.
113
114 2008-09-26  Dan Winship  <danw@gnome.org>
115
116         Bug 553447 – g_assert_no_error()
117
118         * glib/gtestutils.h (g_assert_no_error, g_assert_error): Macros to
119         assert that a GError is not set, or else is set to a particular
120         error.
121
122         * glib/gtestutils.c (g_assertion_message_error): utility for
123         those macros
124
125         * glib/tests/keyfile.c:
126         * tests/asyncqueue-test.c:
127         * tests/bookmarkfile-test.c:
128         * tests/convert-test.c:
129         * tests/file-test.c: Use g_assert_error/g_assert_no_error
130
131 2008-09-26  Dan Winship  <danw@gnome.org>
132
133         * glib/gthreadpool.c (wakeup_thread_marker): make this a "const
134         gpointer" rather than a gconstpointer to avoid warnings later
135
136         * glib/pcre/pcre_ucp_searchfuncs.c:
137         * glib/pcre/pcre_valid_utf8.c: #include "config.h"
138
139         * glib/tests/printf.c (test_d): fool gcc into not warning about
140         some printf format strings that we know are dubious
141
142 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
143
144         Bug 553857 – gbacktrace.h requires signal.h
145
146         * glib/gbacktrace.h: Include signal.h for raise(). 
147         Pointed out by Sebastien Bacher
148
149 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
150
151         Bug 553724 – python interpretter path not patched in correctly
152
153         * glib/Makefile.am: Fix the sed magic to replace python.
154
155 2008-09-26  Matthias Clasen  <mclasen@redhat.com>
156
157         * glib/gmain.c: Add some more docs.
158
159         * glib/giochannel.c: Move more docs inline, and improve them
160         on the way.
161
162 2008-09-25  Tor Lillqvist  <tml@novell.com>
163
164         Bug 553820 - gpoll.c: undeclared identifier
165
166         * glib/gmain.c
167         * glib/gpoll.c: Make the g_poll() function non-static also on
168         Windows. Prefix an underscore to the g_main_poll_debug variable
169         and make it non-static in gmain.c so that it can be used in
170         gpoll.c. Add back missing variable declaration.
171
172 2008-09-25  Tor Lillqvist  <tml@novell.com>
173
174         * glib/gspawn-win32.c (do_spawn_with_pipes) (do_spawn_directly):
175         Just ignore the child_setup function, never call it. The is no
176         situation in which it could be useful on Windows. Do print a
177         warning, like before.
178
179         * glib/gspawn.c (g_spawn_async_with_pipes): Corresponding change
180         in documentation.
181
182 2008-09-24  Sven Herzberg  <sven@imendio.com>
183
184         Be a little more explcit in the docs. Includes Owen's requested
185         changes.
186
187         * glib/gmain.c: improved documentation for g_source_attach() and
188         g_source_destroy()
189
190 2008-09-23  Michael Natterer  <mitch@imendio.com>
191
192         * glib/glib.h: #include <glib/gpoll.h>
193
194         * glib/gpoll.h: #error out if gpoll.h is included directly.
195
196         * glib/gpoll.c: remove trailing whitespace.
197
198 2008-09-23  Dan Winship  <danw@gnome.org>
199
200         * glib/gpoll.[ch] (g_poll): Move this out of gmain.c and make it part
201         of the public API. (Part of Bug 505361 - gunixinputstream.c assumes
202         poll() available.)
203
204 2008-09-23  Tor Lillqvist  <tml@novell.com>
205
206         * glib/gmain.c (poll_rest) [Win32]: Fix embarrassing bug: I was
207         passing an incorrect third parameter to memmove(), had forgotten
208         to multiply by the size of the table entry. Just use a for loop
209         instead, clearer. Odd I didn't notice when testing this code.
210
211 2008-09-19  Hans Petter Jansson  <hpj@novell.com>
212
213         Rewrite most of GHashTable to use open addressing with quadratic
214         probing instead of chaining. This has the potential to reduce memory
215         fragmentation significantly, while being slightly faster due to
216         better locality and no need to call alloc/free functions for nodes.
217         Benchmarks suggest it also uses less memory overall.
218
219         * glib/ghash.c (prime_mod): Table of suitable primes for
220         initial-probe distribution.
221         (g_hash_table_set_shift): New function.
222         (g_hash_table_find_closest_shift): New function.
223         (g_hash_table_set_shift_from_size): New function.
224         (g_hash_table_lookup_node_for_insertion): New function.
225         (g_hash_table_lookup_node): Rewritten to return node index instead of
226         pointer, use quadratic probe on flat table, and not return insertion
227         data. The latter saves some computation for read-only lookups.
228         (g_hash_table_remove_node): Rewrite to take a pointer directly to the
229         node structure to remove, and clear that. Remove unlinking code.
230         (g_hash_table_remove_all_nodes): Rewrite to not clear nodes
231         individually, but en masse using memset () after potentially calling
232         notify functions.
233         (iter_remove_or_steal): Use new data structure and algorithm. Vastly
234         simplified - now just a call to g_hash_table_remove_node ().
235         (g_hash_table_resize): New resize code, re-indexing with new prime
236         and cleaning up tombstones.
237         (g_hash_table_maybe_resize): Table may hold 8 buckets minimum, no less
238         than 1/4 load excluding tombstones, and no more than 15/16 load
239         including tombstones. These numbers are the results of a lot of
240         benchmarking with multiple complex applications, and should not be
241         changed lightly.
242         (g_hash_table_iter_next)
243         (g_hash_table_lookup)
244         (g_hash_table_lookup_extended)
245         (g_hash_table_insert_internal)
246         (g_hash_table_remove_internal)
247         (g_hash_table_foreach_remove_or_steal)
248         (g_hash_table_foreach)
249         (g_hash_table_find)
250         (g_hash_table_get_keys)
251         (g_hash_table_get_values): Use new data structure and algorithm,
252         fairly trivial changes.
253
254 2008-09-19  Tor Lillqvist  <tml@novell.com>
255
256         * glib-zip.in: Look for man pages in share/man.
257
258         * glib/gutils.c (_glib_get_dll_directory)
259         * glib/gspawn-win32.c (do_spawn_with_pipes): Be a bit less
260         restrictive, look for the helper programs in the same folder where
261         the GLib DLL is, not necessarily in a "bin" subfolder of the top
262         GLib installation folder.
263
264 2008-09-18  Matthias Clasen <mclasen@redhat.com>
265
266         * configure.in: Bump version to 2.19.0
267
268         * ChangeLog.pre-2-18: rotate ChangeLog
269         
270         * === branch for 2.18 ===