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