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