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