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