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