Remove leftovers
[platform/upstream/glib.git] / ChangeLog
1 2008-07-23  Matthias Clasen  <mclasen@redhat.com>
2
3         544088 – option_test_LDADD is left in tests/Makefile.am
4
5         * tests/Makefile.am: Remove leftovers. 
6         Noticed by Hiroyuki Ikezoe
7
8 2008-07-22  Mathias Hasselmann  <mathias@openismus.com>
9
10         Set LANG variable for group caption tests to get reproducable results.
11
12         * glib/tests/option-context.c (group_captions()):
13           Set LANG variable to C in the forked process to get reproducable.
14           Don't silence the forked process in --verbose mode to support
15           debugging.
16
17 2008-07-21  Matthias Clasen  <mclasen@redhat.com>
18
19         * configure.in: Fix detection of struct statfs fields.
20
21 2008-07-21  Matthias Clasen  <mclasen@redhat.com>
22
23         * configure.in: Bump version
24
25 2008-07-21  Matthias Clasen  <mclasen@redhat.com>
26
27         * === Released 2.17.4 ===
28
29         * configure.in: Bump version
30
31         * NEWS: Updates
32
33 2008-07-21  Emmanuele Bassi  <ebassi@gnome.org>
34
35         * glib/gtimer.c (g_time_val_to_iso8601): Use the right format
36         string to get leading zeros when converting to ISO 8601. (Sven
37         Herzberg)
38
39 2008-07-21  Emmanuele Bassi  <ebassi@gnome.org>
40
41         * glib/gbookmarkfile.c:
42         (bookmark_app_info_new): Do not set the timestamp value
43         using time(), as it will be overwritten anyway. (#535223,
44         Michael Meeks)
45
46         (parse_application_element),
47         (bookmark_app_info_dump): Support the "modified" attribute,
48         which takes an ISO-formatted string instead of a Unix time
49         stamp, to keep the number of g_strdup_printf() calls to a
50         minimum.
51
52         * glib/gtimer.c:
53         (g_time_val_to_iso8601): Do not use strftime(): we know
54         the format and contents of the ISO 8601 date format we
55         use.
56
57         * tests/bookmarks/valid-03.xbel: Add a test file for the
58         modified attribute.
59
60 2008-07-19  Matthias Clasen  <mclasen@redhat.com>
61
62         * glib/tests/Makefile.am:
63         * glib/tests/array-test.c: Move array tests here.
64
65         * tests/Makefile.am:
66         * tests/array-test.c: Removed.
67
68 2008-07-20  Tor Lillqvist  <tml@novell.com>
69
70         * glib/giowin32.c (g_io_win32_prepare): Patch from Yu Kuan that
71         makes watched sockets behave much better. See gtk-devel-list
72         archives from May for the (unfortunately rather meager)
73         discussion. This patch fixes the presented simple test program,
74         which reasonably could be expected to work.
75
76 2008-07-18  Matthias Clasen  <mclasen@redhat.com>
77
78         * NEWS: Updates
79
80 2008-07-18  Matthias Clasen  <mclasen@redhat.com>
81
82         Bug 536996 – Missing noop i18n macro equivalent to C_
83
84         * glib/glib.symbols:
85         * glib/gstrfuncs.[hc]: Add g_dpgettext2() which is a 
86         variant of g_dpgettext() taking context and id as separate
87         arguments.
88
89         * glib/gi18n-lib.h:
90         * glib/gi18n.h: Add an NC_() macro that is to C_() as N_()
91         is to _().
92
93 2008-07-18  Matthias Clasen  <mclasen@redhat.com>
94
95         * tests/Makefile.am:
96         * tests/keyfile-test.c:
97         * tests/option-test.c: Remove
98         * glib/tests/option-context.c: Add all GOptionContext tests here.
99         * glib/tests/keyfile.c: Add all GKeyFile tests here.
100
101 2008-07-16  Matthias Clasen  <mclasen@redhat.com>
102
103         Bug 334234 – "printf" format error
104
105         * glib/gslice.c (mem_error): Avoid a warning when printing a pid_t.
106         Pointed out by Morten Welinder. 
107
108 2008-07-16  Matthias Clasen  <mclasen@redhat.com>
109
110         Bug 406120 – g_ascii_strtod
111
112         * glib/gstrfuncs.c (g_ascii_strtod): Document that this
113         function does accept localized infinities and nans. Reported
114         by Morten Welinder.
115
116 2008-07-16  Matthias Clasen  <mclasen@redhat.com>
117
118         Bug 482413 - get_contents_stdio -- overflow and memory corruption
119
120         * glib/gfileutils.c (get_contents_stdio): Detect overflow and
121         error out. Reported by Morten Welinder. 
122
123 2008-07-16  Matthias Clasen  <mclasen@redhat.com>
124
125         Bug 542332 – small fix for error message in GMarkup
126         
127         * glib/gmarkup.c: Improve an error message. 
128         Patch by Ryan Lortie
129
130 2008-07-14  Matthias Clasen  <mclasen@redhat.com>
131
132         Bug 428048 – 2 of 51 tests fail on Solaris
133
134         * tests/iochannel-test.c: Ignore the error if iconv doesn't
135         support EUC-JP.
136
137 2008-07-14  Matthias Clasen  <mclasen@redhat.com>
138
139         * tests/option-test.c: Print error messages when something fails.
140
141 2008-07-14  Matthias Clasen  <mclasen@redhat.com>
142
143         Bug 467707 – test_iconv_state() in tests/convert-test.c fails on AIX 5.3
144
145         * tests/convert-test.c (test_iconv_state): Skip this test if
146         CP1255 is not supported.  
147
148 2008-07-10  Ryan Lortie  <desrt@desrt.ca>
149
150         * docs/reference/glib/glib-sections.txt:
151         * glib/glib.symbols:
152         * glib/gmarkup.c:
153         * glib/gmarkup.h: add functions g_markup_parse_context_{push,pop} in
154         order to provide some small hooks on which to build easy-to-use
155         subparsers.
156  
157         * glib/tests/Makefile: add new test
158         * glib/tests/markup-subparser.c: new test for subparsers
159  
160         Fixes bug #337518.
161
162 2008-07-05  Matthias Clasen  <mclasen@redhat.com>
163
164         Bug 528317 – GRegex does not allow recursion limit
165
166         * glib/pcre/Makefile.am: Set a sane default recursion limit
167         of 8192 instead of 1000000. 
168         Patch by Mart Raudsepp.
169
170 2008-07-04  Behdad Esfahbod  <behdad@gnome.org>
171
172         Bug 541507 – Ambiguous description of assigned characters in the Glib
173         Unicode Manipulation reference
174
175         * glib/guniprop.c
176         (g_unichar_isgraph): Return true for PrivateUse too.
177         (g_unichar_isprint): Return true for PrivateUse too.
178         (g_unichar_isdefined): Return false for Surrogate.
179
180 2008-07-04  Michael Natterer  <mitch@imendio.com>
181
182         Bug 541208 – Functions to easily install and use signals without
183         class struct slot
184
185         * tests/gobject/override.c: added tests for the new gsignal
186         overriding and chaining APIs.
187
188 2008-07-02  Matthias Clasen  <mclasen@redhat.com>
189
190         * === Released 2.17.3 ===
191
192 2008-07-02  Matthias Clasen  <mclasen@redhat.com>
193
194         * configure.in: Better endianness fix. From Tomas Mraz.
195
196 2008-07-02  Matthias Clasen  <mclasen@redhat.com>
197
198         * NEWS: Updates
199
200 2008-07-02  Colin Walters  <walters@redhat.com>
201
202         * gio/gcontenttype.c: Use UNLOCK to unlock, not LOCK.
203
204 2008-07-02  Matthias Clasen  <mclasen@redhat.com>
205
206         * configure.in: Add a check for structfs.f_bavail
207
208 2008-07-02  Matthias Clasen  <mclasen@redhat.com>
209
210         * glib/gmain.c (g_get_current_time): Add a g_return_val_if_fail
211         check in both versions. Proposed by Patrik Olsson in bug 540545.
212
213 2008-07-02  Matthias Clasen  <mclasen@redhat.com>
214
215         * configure.in: Workaround AC_C_BIGENDIAN breakage in autoconf 2.61.
216         Add a _cv_ to some variable names, since autoconf wants it.
217
218 2008-06-30  Matthias Clasen  <mclasen@redhat.com>
219
220         * glib/pcre/pcre_compile.c: Apply fix for CVE-2008-2371 to
221         fix a heap-based buffer overflow.
222
223 2008-06-29  Björn Lindqvist  <bjourne@gmail.com>
224
225         Bug 539626 – Update docstrings for g_object_freeze_notify and
226         g_object_thaw_notify
227
228         * gobject/gobject.c: Explain how the freeze count works.
229
230 2008-06-26  Cody Russell  <bratsche@gnome.org>
231
232         * configure.in: Add #define GLIB_USING_SYSTEM_PRINTF
233         to glibconfig.h, which specifies if GLib is using
234         the system printf functions for g_print*().
235         (#539999, by Tim-Philipp Müller)
236
237 2008-06-24  Paolo Borelli  <pborelli@katamail.com>
238
239         Bug 539770 - migrate gstrfunc unit tests to gtest
240
241         * tests/strfunc-test.c:
242         * tests/testglib.c:
243         * tests/strtoll-test.c:
244         * tests/strtod-test.c:
245         * tests/string-test.c:
246         * tests/Makefile.am:
247         Removed old tests.
248
249         * glib/tests/fileutils.c:
250         * glib/tests/strfuncs.c:
251         * glib/tests/Makefile.am:
252         Added all the old tests migrated to the new unit test framework
253         and add new unit tests for some of the functions.
254
255 2008-06-23  Kristian Rietveld  <kris@imendio.com>
256
257         * gobject/glib-mkenums.in: introduce an ENUMPREFIX substitution.
258
259         * gio/gioenumtypes.h.template: use @ENUMPREFIX@ instead of
260         hard coding "G" as prefix.
261
262 2008-06-22  Stefan Kost  <ensonic@users.sf.net>
263
264         * glib/gurifuncs.c:
265           Fix markup in comment.
266
267 2008-06-21  Johan Dahlin  <jdahlin@async.com.br>
268
269     * *.[ch]: Include "config.h" instead of <config.h>
270     Command used:
271     find -name \*.[ch]|xargs perl -p -i -e 's/^#include <config.h>/#include "config.h"/g'
272     Rubberstamped by Mitch
273
274 2008-06-20  Sebastian Dröge  <slomo@circular-chaos.org>
275
276         Bug 316221 - G_LOCK warns about breaking strict-aliasing rules
277
278         * configure.in:
279         * glib/gthread.h: Revert previous patch as it doesn't improve the
280         situation and results in other warnings.
281
282 2008-06-16  Christian Persch  <chpe@gnome.org>
283
284         Bug 539123 – annotate g_d[n]gettext with G_GNUC_FORMAT
285
286         * glib/gstrfuncs.h:
287         * glib/glib.symbols: Annotate some functions with G_GNUC_FORMAT. 
288
289 2008-06-19  Tor Lillqvist  <tml@novell.com>
290
291         Bug 539074 - Cannot get exit status with g_spawn_command_line_sync()
292
293         * glib/gspawn-win32-helper.c (main): Write also the exit status of
294         the spawned process to the error report pipe. Patch by Hiroyuki
295         Ikezoe.
296
297 2008-06-19  Matthias Clasen  <mclasen@redhat.com>
298
299         Bug 535949 – annotate g_strip_context and g_dpgettext with
300         G_GNUC_FORMAT
301
302         * glib/gstrfuncs.h:
303         * glib/glib.symbols: Annotate some functions with G_GNUC_FORMAT.
304         Patch by Christian Persch
305
306 2008-06-19  Matthias Clasen  <mclasen@redhat.com>
307
308         Bug 539067 – The document g_io_channel_win32_new_fd() says that "Your
309         code should call only g_io_channel_read()." but gio_channel_read() is
310         deprecated
311
312         * glib/giochannel.h: Fix a reference in a comment
313         Patch by Hiroyuki Ikezoe 
314
315 2008-06-18  Matthias Clasen  <mclasen@redhat.com>
316
317         Bug 537635 – Corrections and improvements to
318         g_time_val_from_iso8601()/g_time_val_to_iso8601()
319
320         * glib/gtimer.c (g_time_val_from_iso8601): set tv_usec to 0 rather 
321         than 1 when a fraction of a second is not specified
322         (g_time_val_from_iso8601): calculate a fraction of a second
323         correctly even in case it does not happen to consist of exactly 
324         six digits; do not allow random data after the ISO 8601 string,
325         only whitespace
326         (make g_time_val_to_iso8601): support fractions of a second
327         Patch by Peter Kjellerstedt
328
329         * tests/testglib.c: Update to match
330
331 2008-06-16  Christian Persch  <chpe@gnome.org>
332
333         * glib/gbookmarkfile.c
334         * glib/gconvert.c
335         * glib/gfileutils.c
336         * glib/giochannel.c
337         * glib/giounix.c
338         * glib/giowin32.c
339         * glib/gkeyfile.c
340         * glib/gregex.c
341         * glib/gshell.c
342         * glib/gspawn-win32.c
343         * glib/gutf8.c: Use g_set_error_literal where appropriate. Patch from 
344         bug #535947.
345
346 2008-06-16  Christian Persch  <chpe@gnome.org>
347
348         * docs/reference/glib/glib-sections.txt:
349         * glib/gerror.c:
350         * glib/gerror.h:
351         * glib/glib.symbols: Add g_set_error_literal. Bug #535947.
352
353 2008-06-16  Michael Natterer  <mitch@imendio.com>
354
355         * glib/goption.c (dgettext_swapped): changed return value to
356         const gchar* to fix warning.
357
358 2008-06-14  Matthias Clasen  <mclasen@redhat.com>
359
360         * glib/gtestutils.c: Move docs around
361
362         * glib/gchecksum.h: Add docs.
363
364 2008-06-13  Matthias Clasen  <mclasen@redhat.com>
365
366         Bug 538119 – glib's mainloop leaks a pipe to sub-processes
367
368         * glib/gmain.c (g_main_context_init_pipe): Don't leak the
369         pipes to child processes. Patch by Thiago Macieira.
370
371 2008-06-13  Hans Breuer  <hans@breuer.org>
372
373         * glib/gstrfuncs.c : to get the default translation target on
374         win32 use g_win32_get_locale() instead of setlocale(LS_MESSAGES,NULL)
375         Fixes bug #538044
376
377         * glib/makefile.msc.in gio/makefile.msc : updated
378
379 2008-06-12  Matthias Clasen  <mclasen@redhat.com>
380
381         * configure.in: Bump version
382         
383         * === Released 2.17.2 ===
384
385         * configure.in: Fix LINGUAS conversion
386
387 2008-06-12  Matthias Clasen  <mclasen@redhat.com>
388
389         * configure.in: Bump version
390
391         * === Released 2.17.1 ===
392
393 2008-06-12  Matthias Clasen  <mclasen@redhat.com>
394
395         * glib/gtestutils.c: Documentation fixups
396
397 2008-06-11  Matthias Clasen  <mclasen@redhat.com>
398
399         * glib/glist.c: Tiny doc fix
400
401 2008-06-11  Matthias Clasen  <mclasen@redhat.com>
402
403         * NEWS: Updates
404
405 2008-06-11  Behdad Esfahbod  <behdad@gnome.org>
406
407         Bug 503071 – Application direction changes to right to left even if
408         theres no translation
409
410         * glib/gi18n-lib.h:
411         * glib/glib.symbols:
412         * glib/gstrfuncs.h:
413         * glib/gstrfuncs.c:
414         Add new functions g_dgettext() and g_dngettext().
415
416         * glib/gutils.c (glib_gettext):
417         * glib/gfileutils.c (g_format_size_for_display):
418         * glib/goption.c (dgettext_swapped):
419         Use the new functions.
420
421 2008-06-11  Matthias Clasen  <mclasen@redhat.com>
422
423         Bug 502511 – g_assert_cmphex prints invalid message
424
425         * glib/gtestutils.c (g_assertion_message_cmpnum): Actually print
426         hex numbers in hex. 
427         Pointed out by Tor Lillqvist
428
429 2008-06-11  Matthias Clasen  <mclasen@redhat.com>
430
431         Bug 338162 – [PATCH] Use po/LINGUAS
432
433         * po/LINGUAS: New file
434         * po/Makefile.in.in: Dist LINGUAS
435         * configure.in: Use po/LINUAS
436         Patch by Thomas Andersen
437
438 2008-06-11  Matthias Clasen  <mclasen@redhat.com>
439
440         Bug 314453 – Nautilus crashes in Solaris when browsing the attached
441         file
442
443         * glib/gunicollate.c (g_utf8_collate_key): Handle strfxrm returning
444         -1 a little better. Problem pointed out by Takao Fujiwara
445
446 2008-06-11  Matthias Clasen  <mclasen@redhat.com>
447
448         Bug 529321 – make check fails in glib/pcre
449
450         * glib/pcre/Makefile.am: include Makefile.decl to fix 'make check'.
451         Patch by Hiroyuki Ikezoe
452
453 2008-06-11  Tor Lillqvist  <tml@novell.com>
454
455         * glib/giowin32.c: g_win32_error_message() works fine for the
456         Winsock WSA* error codes, too, so drop the winsock_error_message()
457         function.
458
459 2008-06-11  Matthias Clasen  <mclasen@redhat.com>
460
461         Bug 455215 – g_get_user_special_dir: no reference about
462         G_USER_DIRECTORY_DOWNLOAD fallback to $HOME/Desktop if 
463         xdg-user-dirs is not in use
464
465         * glib/gutils.c (g_get_user_special_dir): Improve the docs.
466         Proposed by Luca Ferretti
467
468 2008-06-11  Matthias Clasen  <mclasen@redhat.com>
469
470         Bug 498732 – g_key_file_to_data cannot fail
471
472         * glib/gkeyfile.c (g_key_file_to_data): Improve the docs.
473         Proposed by Christian Persch
474
475 2008-06-11  Ross Burton  <ross@burtonini.com>
476
477         Bug 511367 - add g_file_make_directory_with_parents.
478         
479         * gio/gfile.c:
480         * gio/gfile.h:
481         * gio/gio.symbols: Add g_file_make_directory_with_parents.
482         
483 2008-06-11  Sebastian Dröge  <slomo@circular-chaos.org>
484
485         Bug 531900 – Use __builtin_offsetof for G_STRUCT_OFFSET if building
486         with gcc 4.0 or newer
487
488         * glib/gmacros.h: Use __builtin_offsetof for G_STRUCT_OFFSET if
489         building with gcc 4.0 or newer.
490
491 2008-06-11  Tor Lillqvist  <tml@novell.com>
492
493         * glib/gmain.c
494         * glib/gspawn.c: Clarify what a "child pid" is in the doc
495         comments.
496
497 2008-06-10  Matthias Clasen  <mclasen@redhat.com>
498
499         Bug 536158 – also bump GHashTable version when a node is removed via
500         g_hash_table_iter_remove()/g_hash_table_iter_steal()
501
502         * glib/ghash.c (iter_remove_or_steal): Bump the hash table 
503         version. Patch by Jean-Yves Lefort
504
505 2008-06-07  Tor Lillqvist  <tml@novell.com>
506
507         * glib/gstdio.c (g_access): Define X_OK if necessary (MSVC).
508
509 2008-06-02  Yevgen Muntyan  <muntyan@tamu.edu>
510
511         Bug 531403 – g_utf8_collate broken on Mac.
512
513         * glib/gunicollate.c:  (g_utf8_collate): use UCCompareTextDefault;
514         (collate_key_to_string), (carbon_collate_key_with_collator),
515         (carbon_collate_key), (carbon_collate_key_for_filename): new
516         functions using Carbon API to get collate key for g_utf8_collate_key()
517         and g_utf8_collate_key_for_filename();
518         (g_utf8_collate_key), (g_utf8_collate_key_for_filename): use those.
519
520 2008-05-30  Michael Natterer  <mitch@imendio.com>
521
522         Bug 535628 - test/patterntest.c still includes gpattern.h
523         directly.
524
525         * tests/patterntest.c: don't include "glib/gpattern.h" directly.
526         Patch from Hiroyuki Ikezoe.
527
528 2008-05-30  Tor Lillqvist  <tml@novell.com>
529
530         Bug 535625 - alias.h:2648: error: 'utime' undeclared here (not in
531         a function)
532
533         * glib/glib.symbols: Move g_utime inside #if !defined(G_OS_UNIX)
534         || defined(G_STDIO_NO_WRAP_ON_UNIX).
535
536 2008-05-30  Tor Lillqvist  <tml@novell.com>
537
538         * glib/gstdio.c (g_access) [Win32]: Mask out X_OK to avoid problem
539         on Vista. X_OK was just ignored by access() in earlier Microsoft C
540         libraries. (Which is fine as executability has little meaning on
541         Windows.) The one on Vista returns an error if X_OK is passed.
542
543 2008-05-29  Tor Lillqvist  <tml@novell.com>
544
545         * glib/gstdio.h
546         * glib/gstdio.c: Add g_utime(). No need to include <sys/utime.h>
547         in gstdio.h, just use a forward struct declaration.
548
549         * glib/glib.symbols: Add it.
550
551 2008-05-29  Tor Lillqvist  <tml@novell.com>
552
553         * glib/gnulib/printf-args.c (printf_fetchargs): wint_t is short on
554         Windows, and gcc warns: "wint_t is promoted to int when passed
555         through ... (so you should pass int not wint_t to va_arg)." And
556         indeed g_print("%C", L'a') crashes. So do as gcc says then.
557
558 2008-05-28  Michael Natterer  <mitch@imendio.com>
559
560         * configure.in: add G_DISABLE_SINGLE_INCLUDES to CPPFLAGS
561         globally.
562
563         * glib/tests/option-context.c
564         * glib/tests/testing.c
565         * tests/testingbase64.c: don't include <glib/gtestutils.h>
566
567 2008-05-27  Matthias Clasen  <mclasen@redhat.com>
568
569         * configure.in: Bump version
570
571         * === Released 2.17.0 ===
572
573 2008-05-27  Matthias Clasen  <mclasen@redhat.com>
574
575         * README.in: Add a note about G_DISABLE_SINGLE_HEADERS.
576
577         * NEWS: Updates
578
579 2008-05-27  Matthias Clasen  <mclasen@redhat.com>
580
581         * tests/casemap.txt:
582         * tests/casefold.txt: Update for Unicode 5.1
583
584 2008-05-27  Matthias Clasen  <mclasen@redhat.com>
585
586         * Revert the patch for bug 527214 and related changes. GTimer
587         is supposed to work without threads.
588
589 2008-05-27  simon.zheng  <simon.zheng@sun.com>
590
591         * configure.in: Fix #533369. Check whether memeber statvfs.f_basetype 
592         available or not.
593
594 2008-05-27  Matthias Clasen  <mclasen@redhat.com>
595
596         * glib/pcre/*: Update to PCRE 7.7
597
598 2008-05-26  Matthias Clasen  <mclasen@redhat.com>
599
600         * glib/gchecksum.c: Add Since: tag to g_checksum_reset
601
602         * glib/glib.symbols: Add g_checksum_reset
603
604 2008-05-25  Matthias Clasen  <mclasen@redhat.com>
605
606         Bug 534137 – Typo in g_spawn_async_with_pipes doc
607
608         * glib/gspawn.c: Fix a typo in the docs, pointed out by Ted Percival.
609
610 2008-05-25  Tor Lillqvist  <tml@novell.com>
611
612         Bug 534319 - GLib's .pc files could use Libs.private
613
614         * glib-2.0-uninstalled.pc.in
615         * glib-2.0.pc.in
616         * gmodule-2.0-uninstalled.pc.in
617         * gmodule-2.0.pc.in
618         * gmodule-export-2.0.pc.in
619         * gmodule-no-export-2.0.pc.in: Move ICONV_LIBS and G_MODULE_LIBS
620         to Libs.private.
621
622 2008-05-24  Matthias Clasen  <mclasen@redhat.com>
623
624         * glib/gfileutils.c (g_file_open_tmp): Small documention addition.
625
626 2008-05-22 10:49:37  Tim Janik  <timj@imendio.com>
627
628         * glib/gmacros.h: implement G_STMT_START and G_STMT_END with
629         do{}while(0), which is believed to be widely portable, fixes:
630         Bug 519026 - G_STMT_START/G_STMT_END test a non-existent preprocessor symbol
631
632 2008-05-20  Behdad Esfahbod  <behdad@gnome.org>
633
634         Bug 501651 – Update glib/libcharset
635
636         * configure.in:
637         * glib/libcharset/Makefile.am:
638         * glib/libcharset/README:
639         * glib/libcharset/codeset.m4:
640         * glib/libcharset/config.charset:
641         * glib/libcharset/glibc21.m4:
642         * glib/libcharset/libcharset-glib.patch:
643         * glib/libcharset/libcharset.h:
644         * glib/libcharset/localcharset.c (_g_locale_get_charset_aliases),
645         (_g_locale_charset_raw):
646         * glib/libcharset/localcharset.h:
647         * glib/libcharset/make-patch.sh:
648         * glib/libcharset/ref-add.sin:
649         * glib/libcharset/ref-del.sin:
650         * glib/libcharset/update.sh:
651         Update libcharset to the one shipped with libiconv-0.12.
652
653 2008-05-20  Behdad Esfahbod  <behdad@gnome.org>
654
655         Bug 459905 – Bug in wcwidth data
656         Bug 534085 – g_unichar_iswide_cjk() has a totally wrong table
657         * glib/guniprop.c (g_unichar_iswide), (g_unichar_iswide_cjk):
658         Regenrate wide and wide_cjk tables from Unicode 5.1.0 data directly.
659         Not using Markus Kuhn's tables anymore.
660
661 2008-05-20 14:31:18  Tim Janik  <timj@imendio.com>
662
663         * reverted recent unapproved changes by Yair Hershkovitz, regarding:
664         Bug 503071 – Application direction changes to right to left even if theres no translation.
665
666 2008-05-20  Tor Lillqvist  <tml@novell.com>
667
668         * configure.in: Don't need memory barriers when using a non-gcc
669         compiler on Windows either.
670
671 2008-05-19  Tor Lillqvist  <tml@novell.com>
672
673         * glib/gdir.c: Include the dirent.h and wdirent.c from
674         ../build/win32/dirent directly here when compiling with MSVC and
675         without HAVE_DIRENT_H.
676
677 2008-05-19  Hans Breuer  <hans@breuer.org>
678
679         * glib/makefile.msc : added gi18n.c
680
681 2008-05-19  Tor Lillqvist  <tml@novell.com>
682
683         * glib/Makefile.am: #define HELPER_CONSOLE in
684         gspawn-win32-helper-console.c
685
686         * glib/gspawn-win32-helper.c: Compile a main() instead of
687         WinMain() if HELPER_CONSOLE is defined. MSVC insists on a console
688         application having a main().
689
690 2008-05-18  Matthias Clasen  <mclasen@redhat.com>
691
692         Bug 527214 – g_timer_elapsed() returns random values.
693
694         * glib/gtimer.c (g_timer_new()):
695         Print warning if g_thread_init() has not been called yet. 
696         Patch by Mathias Hasselmann
697
698 2008-05-12  Jeffrey Stedfast  <fejj@novell.com>
699
700         * glib/gchecksum.c (g_checksum_reset): New function to reset the
701         state of a GChecksum.
702         (g_checksum_new): Call g_checksum_reset() instead of duplicating
703         code.
704
705 2008-05-17  Matthias Clasen  <mclasen@redhat.com>
706
707         Bug 528667 – Typos in testing module documentation
708
709         * glib/gtestutils.c: Fix typos in the documentation.
710
711 2008-05-17  Tor Lillqvist  <tml@novell.com>
712
713         * glib/giowin32.c: Make debugging printout more compact and add
714         more information to it. No changes to actual functionality.
715
716         * glib/gmain.c: Improve debugging printouts. When
717         G_MAIN_POLL_DEBUG is defined, we check for an environment variable
718         of the same name to decide whether to print out debugging
719         information or not. G_MAIN_POLL_DEBUG is always defined on Windows
720         as there is more often a need to debug this stuff there. On Unix
721         the definition has to be uncommented (or done on the compile
722         command line).
723
724 2008-05-17  Tor Lillqvist  <tml@novell.com>
725
726         * build: Don't include the "build" module with svn:externals any
727         longer. Instead add the still relevant directories and files from
728         it for real here in GLib.
729
730 2008-05-17  Yair Hershkovitz  <yairhr@gmail.com>
731
732         * glib/glib.symbols:
733         * glib/gi18n.h: Added g_disable_setlocale().
734
735         * glib/gi18n.c: Added g_disable_setlocale() API to disable setting
736         the locale in g_i18n_init(). Dont disable translations if textdomain
737         was not set before calling g_i18n_init(). Dont disable translations if
738         the locale is "C".
739
740 2008-05-16  Tor Lillqvist  <tml@novell.com>
741
742         * config.h.win32.in: Update to match the configure-produced one.
743
744 2008-05-14  Michael Natterer  <mitch@imendio.com>
745
746         * glib/gatomic.c: #include "config.h" before using G_ATOMIC_ARM.
747
748 2008-05-13  Kjartan Maraas  <kmaraas@gnome.org>
749
750         * glib/gi18n.c: #include <locale.h> to fix the build.
751
752 2008-05-12  Yair Hershkovitz  <yairhr@gmail.com>
753
754         * glib/gi18n.c (g_i18n_init): Coding convention fix. Space between
755         a function name and its opening parenthesis.
756
757 2008-05-12  Tor Lillqvist  <tml@novell.com>
758
759         * glib/glib.symbols: Add g_i18n_init.
760
761 2008-05-12  Tor Lillqvist  <tml@novell.com>
762
763         Bug 530457 - G_USER_DIRECTORY_DOWNLOAD folder improperly mapped
764
765         * glib/gutils.c (load_user_special_dirs): When running on Vista or
766         later, use SHGetKnownFolderPath() to get the FOLDERID_Downloads
767         folder for G_USER_DIRECTORY_DOWNLOAD, and FOLDERID_Public for
768         G_USER_DIRECTORY_PUBLIC_SHARE.
769
770 2008-05-11  Yair Hershkovitz  <yairhr@gmail.com>
771
772         Bug 503071 - Application direction changes to right to left even if
773         theres no translation. 
774
775         * glib/gi18n.c: g_i18n_init() for initializing the glib i18n,
776         checking if a translation is available for the calling app. wrappers for
777         gettext, dgettext and dpgettext to check first if the application
778         should be translated.
779
780         * glib/gi18n.h: symbol declaration for gettext wrappers.
781
782         * glib/gi18n-lib.h: include gi18n.h instead of libintl.h.
783
784         * glib/gstrfuncs.c: moved g_dpgettext() to glib/gi18n.c.
785
786         * glib/gutils.c: use g_dgettext() instead of dgettext().
787
788         * glib/glibintl.h: include gi18n.h.
789
790         * glib.symbols: added gettext wrappers.
791
792         * glib/Makefile.am: added gi18n.c.
793
794 2008-05-05  Michael Natterer  <mitch@imendio.com>
795
796         * glib/glib.h: #define __GLIB_H_INSIDE__ around including
797         everything.
798
799         * glib/*.h: check for that define instead of __G_LIB_H__ if
800         G_DISABLE_SINGLE_INCLUDES is defined.
801
802         * glib/gdatasetprivate.h: #include <glib.h> instead of
803         <glib/gdataset.h>
804
805 2008-05-02 13:24:13  Tim Janik  <timj@imendio.com>
806
807         * glib/gmain.c: renamed GMainDispatch.dispatching_sources to be more
808         descriptive and distinguishable within the source file.
809
810 2008-04-21  Tor Lillqvist  <tml@novell.com>
811
812         Bug 528752 - Win32 build and SSL not working
813
814         This bug report against libsoup points out an issue with the use
815         of bitfields in the GIOChannel struct that should really be taken
816         care of here in GLib.
817
818         * configure.in: Add Autoconf variable GLIB_EXTRA_CFLAGS which will
819         contain the -mms-bitfields flag on Windows.
820         
821         * glib-2.0.pc.in: Add it to Cflags.
822
823 2008-04-21  Tor Lillqvist  <tml@novell.com>
824
825         * configure.in
826         * */Makefile.am: More work on enabling static building on
827         Windows. When building statically: Also define
828         GOBJECT_STATIC_COMPILATION in glibconfig.h so that also the
829         variables in gparamspecs.h get declared without any
830         dllimport/dllexport decorations. Don't install .def files which
831         obviously have no meaning for static libraries. Don't create MS
832         import libraries. Don't do any resource object files.
833
834 2008-04-18 17:40:58  Tim Janik  <timj@imendio.com>
835
836         * tests/testglib.c: fixed gstdio.h include.
837
838         * tests/Makefile.am: properly list testglib.c SOURCES.
839
840 2008-04-17  Emmanuele Bassi  <ebassi@gnome.org>
841
842         * glib/gchecksum.c:
843         (sha_byte_reverse): Use the macro GLib provides for byte-swapping
844         as it can be optimized.
845         
846         (g_checksum_update): Fix a compiler warning.
847
848 2008-04-15  Mukund Sivaraman  <muks@mukund.org>
849
850         * gio/gfile.c: Fixed typos in gtk-doc comments.
851
852 2008-04-10  Mathias Hasselmann  <mathias@openismus.com>
853
854         Bug 519137 – g_slice_dup macro needs cast for 64-bit platform
855
856         * glib/gslice.h (g_slice_copy): Apply type casts needed
857           for proper compilation on 64-bit platforms.
858
859 2008-04-09  Federico Mena Quintero  <federico@novell.com>
860
861         * glib/gbookmarkfile.c (bookmark_metadata_free): Don't leak
862         the apps_by_name hash table if the applications list is empty.
863
864 2008-04-08  Behdad Esfahbod  <behdad@gnome.org>
865
866         * glib/gunicode.h: Add ISO 15924 code comments for new scripts.
867
868 2008-04-07  Matthias Clasen  <mclasen@redhat.com>
869
870         Bug 491554 – Update to Unicode 5.1.0
871
872         * glib/gunichartables.h:
873         * glib/gunicode.h:
874         * glib/gunibreak.h:
875         * glib/gmirroringtable.h:
876         * glib/gscripttable.h:
877         * glib/gen-script-table.pl: Update to Unicode 5.1.0. Patch by
878         Behdad Esfahbod
879
880 2008-04-07  Matthias Clasen  <mclasen@redhat.com>
881
882         Bug 526619 – make test-report crash
883
884         * glib/gtester.c: Allocate enough space for argv. Patch by
885          Hiroyuki Ikezoe
886
887 2008-04-04  Matthias Clasen  <mclasen@redhat.com>
888
889         * glib/gmain.c: Make the fix for bug 448943 work.
890
891 2008-04-04  Tor Lillqvist  <tml@novell.com>
892
893         * configure.in: Make sure we don't build both shared and static at
894         the same time on Windows. Put a #define for
895         GLIB_STATIC_COMPILATION into glibconfig.h in the static case, so
896         that the use of variables from libglib gets the GLIB_VAR macro in
897         gtypes.h automatically correct. This means that a shared and
898         static build of GLib can't be installed in the same prefix on
899         Windows, which sucks a bit. But with variables in the GLib API,
900         there isn't much we can do otherwise. The alternative would be to
901         force the developer who compiles against a statically built GLib
902         to use -DGLIB_STATIC_COMPILATION.
903
904         * glibconfig.h.win32.in: Define GLIB_STATIC_COMPILATION here also,
905         if needed.
906
907 2008-04-03  Tor Lillqvist  <tml@novell.com>
908
909         * configure.in: Don't enforce shared library build only on
910         Windows. It might well make sense to build static libraries in
911         some use cases.
912
913         * glib/gutils.c: Don't compile the DllMain if building libglib
914         statically. Also in that case don't return NULL from
915         _glib_get_installation_directory(), but return the installation
916         directory of the program's .exe file.
917
918 2008-04-03  Tor Lillqvist  <tml@novell.com>
919
920         Bug 525972 - UCS-4 not in the new win_iconv implementation
921
922         * glib/win_iconv.c: Add UCS-4. Also add spelling of UCS-2 without
923         the hyphen.
924
925 2008-04-03  Matthias Clasen  <mclasen@redhat.com>
926
927         Bug 448943 – g_timeout_add_seconds() problems
928
929         * glib/gmain.c (g_timeout_set_expiration): Prevent expiration
930         time going negative. Reported by Cody Russell, analyzed by
931         Olivier Crete, patch by Sjoerd Simons.
932
933 2008-04-03  Matthias Clasen  <mclasen@redhat.com>
934
935         Bug 525674 – A typo in gmarkup.c
936
937         * glib/gmarkup.c (g_markup_parse_context_get_element_stack): Fix
938         the docs, reported by Hiroyuki Ikezoe
939
940 2008-04-03  Matthias Clasen  <mclasen@redhat.com>
941
942         Bug 525732 – Error in documentation for g_list_first
943
944         * glib/glist.c (g_list_first): Fix the docs, reported by 
945         Salvatore Iovene
946
947 2008-04-02  Tor Lillqvist  <tml@novell.com>
948
949         Bug 524314 - g_convert() on Win32 implicitly converts full width
950         alphanumerics into half width
951         
952         * glib/win_iconv.c: Update from Yukihiro Nakadaira. Use
953         WC_NO_BEST_FIT_CHARS flag for WideCharToMultiByte() unless the
954         //translit flag was suffixed to the codeset name.
955
956         * glib/gconvert.c: Include win_iconv.c earlier so that its
957         definition of WINVER before it includes <windows.h> is used.
958
959 2008-03-31  Tor Lillqvist  <tml@novell.com>
960
961         * glib/gmain.c (g_poll): Improve fix for #525192 below: Use
962         SleepEx() so that the sleep is alertable. Thanks to John
963         Ehresman.
964
965 2008-03-31  Tor Lillqvist  <tml@novell.com>
966
967         * glib/gwin32.c
968         (g_win32_get_package_installation_directory_of_module): Fix Cygwin
969         breakage. Patch by Lieven van der Heide.
970
971 2008-03-31 10:39:17  Tim Janik  <timj@imendio.com>
972
973         * glib/gutils.h: reapply inlining fix from r6333 to fix:
974         Bug 522292 – Gives warnings in glib/gutils.h with GCC in C99 mode
975         and again:
976         Bug 315437 – extern inline -> static inline
977
978 2008-03-31  Tor Lillqvist  <tml@novell.com>
979
980         Bug 525192 - 100% CPU if run main loop with no IO sources
981
982         * glib/gmain.c (g_poll) [Win32]: Patch by Neil Roberts.
983
984 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
985
986         * glib/gtester.c: Don't use ARG_MAX.  (#522335, patch by 
987         Samuel Thibault, adapted by Sebastian Dröge)
988
989 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
990
991         * glib/gmacros.h: Add macros wrapping the gcc alloc_size 
992         function attribute.  (#523019, Rodrigo Moya)
993
994         * glib/gmem.h: 
995         * glib/gslice.h:
996         * glib/gstrfuncs.h: Use the new attribute where appropriate.
997
998 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
999
1000         * glib/glibintl.h:
1001         * glib/gstrfuncs.c:
1002         * glib/gutils.c: Simple fixes to help building GLib on 
1003         embedded systems without NLS.  (#524350, Peter Kjellerstedt)
1004
1005 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
1006
1007         * glib/ghash.c: Fix the build with -DG_DISABLE_ASSERT.
1008         (#525060, Arfrever Frehtes Taifersar Arahesis)
1009
1010 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
1011         
1012         * glib/gthread.h: Replace occurrances of G_GNUC_PRETTY_FUNCTION
1013         by G_STRFUNC.  (#524344, Peter Kjellerstedt)
1014
1015 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
1016
1017         * glib/gtestutils.c: Fix a doc typo. (#524742, Hiroyuki Ikezoe)
1018
1019 2008-03-22  Claudio Saavedra  <csaavedra@gnome.org>
1020
1021         Bug 523877 – gbookmarkfile: avoid using g_string_append_printf() and
1022         other optimizations
1023
1024         * glib/gbookmarkfile.c: (bookmark_metadata_dump),
1025         (bookmark_item_dump), (g_bookmark_file_dump), (expand_exec_line):
1026         Replace all calls to g_string_append_printf with g_strconcat () or
1027         g_string_append () where appropriate, to reduce the file creation time.
1028         Also, use g_string_sized_new () with an appropriate buffer size instead
1029         of g_string_new (NULL), to reduce time spent in memory reallocation.
1030         (#523877, Claudio Saavedra, Emmanuele Bassi)
1031
1032 2008-03-22  Emmanuele Bassi  <ebassi@gnome.org>
1033
1034         Bug 518160 - replace two g_strdup_printf calls in GBookmarkFile
1035
1036         * glib/gbookmarkfile.c (is_element_full): Compare the fragments
1037         instead of building two strings; this avoids two g_strdup_printf()
1038         per namespaced element enountered. (#518160, Felix Riemann)
1039
1040 2008-03-20  Alexander Larsson  <alexl@redhat.com>
1041
1042         * configure.in:
1043         Final fixes for struct statfs.f_fstypename checks (OpenBSD). (#521045)
1044         Patch from ephraim_owns@hotmail.com
1045
1046 2008-03-19  Tor Lillqvist  <tml@novell.com>
1047
1048         Bug 523298 - win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
1049
1050         * glib/win_iconv.c: Fixes for code page 54936 (GB18030)
1051         (mbtowc_flags): New function. Check if a code page is one of those
1052         for which the dwFlags parameter to MultiByteToWideChar() must be
1053         zero. Return 0 or MB_ERR_INVALID_CHARS.
1054         (mbcs_mblen): New function for multi-byte (more than two bytes for
1055         some characters) code pages. Only handles 54936 for now.
1056         (make_csconv): Use it for 54936.
1057         (kernel_mbtowc): Use mbtowc_flags().
1058
1059 2008-03-18  Sebastian Dröge  <slomo@circular-chaos.org>
1060
1061         Bug 522292 - Gives warnings in glib/gutils.h with GCC in C99 mode
1062
1063         * glib/gutils.h: Use "__attribute__ ((__gnu_inline__))" for inlining
1064         if either __GNUC_STDC_INLINE__ or __GNUC_GNU_INLINE__ are defined. In
1065         gcc version prior to 4.3 no correct C99-inline was implemented which
1066         has semantic differences to GNU inline.
1067
1068 2008-03-16  Tor Lillqvist  <tml@novell.com>
1069
1070         * configure.in: Don't bother defining Autoconf variables for
1071         glib.def, gmodule.def, gobject.def and gthread.def when this can
1072         be handled easily in */Makefile.am which are the only files that
1073         use them. Remove also TESTGMODULE_EXP which isn't used at all.
1074
1075         * glib/Makefile.am: Corrsponding change.
1076         
1077 2008-03-14  Michael Natterer  <mitch@imendio.com>
1078
1079         * glib/*.h: make it possible to disable single-file includes by
1080         defining G_DISABLE_SINGLE_INCLUDES when building against GLib.
1081         Approved by Tim Janik.
1082
1083         * glib/glib.h: include <glib/gslice.h>.
1084
1085         * glib/gi18n.h
1086         * glib/gi18n-lib.h
1087         * glib/gprintf.h: include <glib.h> so the above works when these
1088         files are included without including <glib.h> first.
1089
1090 2008-03-14  Alexander Larsson  <alexl@redhat.com>
1091
1092         * configure.in:
1093         Add required includes for f_fstypename member check.
1094
1095 2008-03-14  Alexander Larsson  <alexl@redhat.com>
1096
1097         * configure.in:
1098         Added checks for FEN (Solaris  File Event Notification)
1099
1100 2008-03-13  Tor Lillqvist  <tml@novell.com>
1101
1102         * glib-zip.in: Add lib/gio-2.0.lib and lib/gio-2.0.def.
1103
1104 2008-03-12  Tor Lillqvist  <tml@novell.com>
1105
1106         * configure.in: Expand gio/win32/Makefile.
1107
1108 2008-03-12  Matthias Clasen <mclasen@redhat.com>
1109
1110         * configure.in: Bump version to 2.17.0
1111
1112         * ChangeLog.pre-2-16: rotate ChangeLog
1113         
1114         * === branch for 2.16 ===