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