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