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