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