Look up prefix at run-time on Win32, assuming the standard directory
[platform/upstream/glib.git] / ChangeLog.pre-2-10
1 2005-12-07  Tor Lillqvist  <tml@novell.com>
2
3         * glib-gettextize.in: Look up prefix at run-time on Win32,
4         assuming the standard directory structure with glib-gettextize in
5         $prefix/bin.
6
7 2005-12-06  Matthias Clasen  <mclasen@redhat.com>
8
9         * glib/gmem.h: Exempt GTK+ from the mem chunk deprecation, since
10         we need GTK+ 2.8 to compile against GLib 2.10.
11
12 2005-12-05  Manish Singh  <yosh@gimp.org>
13
14         * tests/run-collate-test.sh: set LC_COLLATE, not LANG, to be sure
15         to override any user settings.
16
17 2005-12-05  Matthias Clasen  <mclasen@redhat.com>
18
19         * configure.in: Revert an accidential commit
20
21 2005-12-05  Matthias Clasen  <mclasen@redhat.com>
22
23         * glib/gutf8.c: Documentation updates.  (#323291, Morten Welinder)
24
25         * tests/Makefile.am (TESTS_ENVIRONMENT): 
26         * tests/gobject/Makefile.am (TESTS_ENVIRONMENT): Set
27         MALLOC_CHECK_ and MALLOC_PERTURB_
28
29         * tests/run-collate-tests.sh: Run the collation tests explicitly 
30         in en_US locale. (#320463)
31
32         * glib/gmem.h: Really deprecate GMemChunk.
33
34         * glib/gdate.c: 
35         * glib/gutils.c: 
36         * glib/gtree.c: 
37         * glib/gstring.c: 
38         * glib/giochannel.c: 
39         * glib/gstrfuncs.c: Add versioned deprecation docs. 
40
41 2005-12-05  Martyn Russell  <martyn@imendio.com>
42
43         * docs/reference/glib/glib-sections.txt:
44         * glib/gasyncqueue.[ch]:
45         - Added support for sorting async queues by with _push_sorted(),
46         _push_sorted_unlocked(), _sort() and _sort_unlocked() (#323047).
47         
48         * tests/Makefile.am:
49         * tests/asyncqueue-test.c:
50         - Added test case for gasyncqueue.c
51
52 Mon Dec  5 15:53:20 2005  Tim Janik  <timj@imendio.com>
53
54         * glib/gslice.c: implement chain walking for arbitrary ->next pointer
55         offsets in g_slice_free_chain_with_offset() based on a patch by behdad
56         in bug 323178. moved time consuming logic from g_slice_free() out of
57         the inner loop, so g_slice_free_chain_with_offset() provides a real
58         performance benefit over g_slice_free1() now.
59         
60         * glib/gslice.h: renamed g_slice_free_chain() to
61         g_slice_free_chain_with_offset(). implemented g_slice_free_chain() as
62         a type-safe macro as suggested in bug 323178.
63         simplified the macro implementation of g_slice_free() and implemented
64         it in a type safe manner for all compliers as suggested by Morten
65         Welinder <mortenw@gnome.org>.
66
67         * glib/gmain.c:
68         * glib/glist.c:
69         * glib/gslist.c:
70         * glib/glib.symbols: s/g_slice_free_chain/g_slice_free_chain_with_offset/
71
72 2005-12-05  Matthias Clasen  <mclasen@redhat.com>
73
74         * glib/gasyncqueue.c: Add some docs.
75
76         * tests/libmoduletestplugin_a.c: Fix compiler warnings.
77
78         * glib/gatomic.c: In the ia64 implementation, use
79         __sync builtin without _si or _di suffix.  (#321229,
80         Stanislav Brabec, patch by Andreas Schwab)
81
82 2005-12-04  Behdad Esfahbod  <behdad@gnome.org>
83
84         * glib/gslice.h: Remove comma at the end of enum.
85
86 2005-12-04  Matthias Clasen  <mclasen@redhat.com>
87
88         Handle multiple user names with the same UID better.
89         (#319535, Laszlo Peter)
90         
91         * glib/gutils.c (g_get_any_init_do): When determining user
92         data, first look up $LOGNAME. If the UID doesn't match
93         getuid(), fall back to the current behaviour of looking
94         up the user data based on getuid().
95
96 2005-12-04  Matthias Clasen  <mclasen@redhat.com>
97
98         * glib/gmacros.h (G_GNUC_WARN_UNUSED_RESULT): Add a macro
99         to make gcc warn if a function result is ignored.  (#145466,
100         Arjan van de Ven, Alex Larsson)
101
102         * glib/gmem.h: Add the new attribute to g_realloc and 
103         g_try_realloc.
104
105 2005-12-03  Matthias Clasen  <mclasen@redhat.com>
106
107         * glib/glib.symbols: 
108         * glib/gcache.h: Deprecate g_cache_value_foreach. (#322956,
109         Nicolas Caniart)
110
111         * glib/gmappedfile.c: Make mapping of empty files
112         work.  (#321530)
113         
114         * glib/gfileutils.c: Don't fork a new process just to 
115         fix the permissions of the created temp file.  (#321318,
116         Alexis S. L. Carvalho)
117
118 2005-12-02  Matthias Clasen  <mclasen@redhat.com>
119
120         * README.in: Add a note about Solaris threads.
121
122         * glib/gspawn.c:
123         * configure.in: Remove support for Solaris threads. 
124         (#136971, Sebastian Wilhelmi, patch by Andrew Paprocki)
125
126 2005-12-02  Matthias Clasen  <mclasen@redhat.com>
127
128         * configure.in: Define G_GUINT64_CONSTANT in analogy to
129         G_GINT64_CONSTANT.  (#322568, Andrew Paprocki)
130
131 2005-12-02  Matthias Clasen  <mclasen@redhat.com>
132
133         * glib/gslice.c: Win32 portability fixes and C99ism removal,
134         pointed out by Kazuki Iwamoto.  (#323052)
135         
136 2005-12-02  Matthias Clasen  <mclasen@redhat.com>
137
138         * glib/gatomic.c (g_atomic_int_add): Add a missing volatile for
139         the IA64 implementation.
140
141 Fri Dec  2 16:18:09 2005  Tim Janik  <timj@imendio.com>
142
143         * glib/gslice.c: some naming and type size fixups.
144
145 Fri Dec  2 13:08:58 2005  Tim Janik  <timj@gtk.org>
146
147         * glib/gslice.h (g_slice_free): reworked GCC-specific type-safe macro
148         variant into something less verbose, but digestible for gcc-3.4.
149
150 Fri Dec  2 10:55:07 2005  Tim Janik  <timj@imendio.com>
151
152         * tests/slice-test.c: extended to perform the benchmarking on the old
153         memchunk code if 'O' is selected.
154
155         * tests/memchunks.c: new file which contains the old GLib mem chunks
156         implementation with prefix old_mem_chunk_.
157
158         * tests/Makefile.am: added memchunks.c
159
160 Fri Dec  2 00:16:59 2005  Tim Janik  <timj@imendio.com>
161
162         * glib/gslice.c: improved gettimeofday() timer resolution by maintaining
163         acceptable load distribution of the syscall.
164         (allocator_get_magazine_threshold): reduce minimum/single-thread magazine
165         sizes to approximately page_size/2.5 to avoid excessive startup allocations.
166
167 2005-12-01  Matthias Clasen  <mclasen@redhat.com>
168
169         * tests/gobject/ifacecheck.c (test_iface_base_init): Don't
170         double-free base interface members.
171
172         * tests/Makefile.am: Remove duplicate variable.
173
174 Thu Dec  1 17:32:46 2005  Tim Janik  <timj@imendio.com>
175
176         * glib/gslice.[hc]: new slice allocator implementation.
177
178         * tests/slice-test.c: added random slice allocation test.
179
180         * glib/gthread.[hc]: removed newly added private thread mem API.
181
182         * glib/gthreadinit.h:
183         * glib/gmessages.c:
184         * glib/gthread.c:
185         * glib/gmem.c: divided glib threading initialisation into three phases,
186         initialisation where private keys and messaging are not available (only
187         needed by gmem.c), initialisation without messaging but private keys
188         available (gslice.c, gmessage.c), and full fledged initialisers that
189         server the rest of glib. initialisation functions got renamed to reflect
190         the limitations of their corresponding phases.
191
192         * glib/gmem.c: removed memchunk code, defer allocations to 
193         g_slice_* instead.
194
195         * glib/gmem.[hc]: removed g_slice_* skeletons.
196
197         * glib/glib.symbols: added g_slice_* symbols.
198
199         * configure.in: check for availability of posix_memalign(3), memalign(3)
200         and valloc(3). 
201
202         * glib/Makefile.am: added gslice.[hc].
203
204 2005-12-01  Tor Lillqvist  <tml@novell.com>
205
206         * glib/gstdio.c (g_stat): In the Win32 implementation, strip
207         trailing slash(es) for non-root folders. stat() fails if non-root
208         folders are specified with trailing slashes. It's too much hassle
209         to demand that callers strip such slashes themselves, especially
210         as it is easy to get it wrong and strip the slash of a root
211         folder.
212         (g_rename): On NT-based Windows, use MoveFileEx() with
213         MOVEFILE_REPLACE_EXISTING to better match Unix behaviour.
214
215 2005-11-28  Matthias Clasen  <mclasen@redhat.com>
216
217         Fix G_STMT_START / G_STMT_END on Solaris.  (#321972,
218         Andrew Paprocki)
219         
220         * configure.in: Check whether do { } while (0) works.
221
222         * glib/gmacros.h: Use do { } while (0) for G_STMT_START / 
223         G_STMT_END if it works.
224         
225 2005-11-28  Matthias Clasen  <mclasen@redhat.com>
226
227         * glib/gthread.c (g_static_rw_lock_wait, g_static_rw_lock_signal): 
228         * glib/gnode.c (g_node_depth_traverse_level): 
229         * glib/gmem.c (g_allocator_new): 
230         * glib/ghash.c (g_hash_table_unref, g_hash_table_destroy) 
231         (g_hash_table_foreach_remove_or_steal): Silence compiler
232         warnings.
233
234 2005-11-27  Matthias Clasen  <mclasen@redhat.com>
235
236         * glib/gunicollate.c (g_utf8_collate_key_for_filename): 
237         Don't read beyond len.  (#322520, Christian Persch)
238
239 Wed Nov 23 17:34:01 2005  Tim Janik  <timj@imendio.com>
240
241         * glib/gdataset.c: access datalist flags via atomic pointer access
242         functions, instead of acquiring the dataset lock. this is faster and
243         also matches the atomic pointer readouts in gdatalistprivate.h and
244         direct pointer modifications required by gobject.c.
245
246 Wed Nov 23 13:35:31 2005  Tim Janik  <timj@gtk.org>
247
248         * glib/gdataset.c: streamlined initialization code somewhat,
249         removed GData node cache.
250
251 2005-11-22  Matthias Clasen  <mclasen@redhat.com>
252
253         * glib/ghash.c (g_hash_table_ref): 
254         (g_hash_table_unref): Mark these as new API.
255
256         Avoid double locking in g_intern_string (#322133,
257         Benedikt Meurer)
258
259         * glib/gdataset.c (g_quark_from_string_internal): New 
260         internal function which factors out common parts of 
261         g_quark_from[_static]_string.
262         (g_quark_from_string, g_quark_from_static_string):
263         Use g_quark_from_string_internal.
264         (g_intern_string, g_intern_static_string): Use
265         g_quark_from_string_internal, and only take the
266         lock once.
267         (g_quark_new): Don't store the strings shifted by -1
268         in the g_quarks array.
269         (g_quark_to_string): Adapt to the previous change.
270
271 Tue Nov 22 14:04:26 2005  Tim Janik  <timj@imendio.com>
272
273         * glib/ghash.h: 
274         * glib/ghash.c: 
275         g_hash_table_new_full(): create hash tables with a ref count of 1.
276         g_hash_table_ref(): atomically ref_count+=1
277         g_hash_table_unref(): atomically ref_count-=1, destroys hash table
278         when refcount reaches 0.
279         g_hash_table_destroy(): just destroy keys and values, unref by 1.
280         g_hash_table_insert(): 
281         g_hash_table_replace(): assert ref_count>0.
282
283         * glib/gatomic.h: 
284         * glib/gatomic.c: added 'volatile' qualifier to all atomic pointer and
285         integer pointers.
286
287 2005-11-20  Behdad Esfahbod  <behdad@gnome.org>
288
289         * glib/guniprop.c (g_unichar_get_mirror_char): Remove unused
290         variables. (#321984, Andrew Paprocki)
291
292 2005-11-18  Matthias Clasen  <mclasen@redhat.com>
293
294         * configure.in: Bump version
295
296 2005-11-17  Matthias Clasen  <mclasen@redhat.com>
297
298         * === Released 2.9.0 ===
299
300         * glib/glib.symbols: Updates
301
302         * glib/gutf8.c (g_utf8_offset_to_pointer): Add some performance
303         hints to the docs. (Paolo Borelli)
304         
305         * NEWS: Updates
306
307         * glib/gthread.c (g_thread_foreach): Mark as new api.
308
309         * README.in: Updates.
310
311         * glib/glib.symbols: 
312         * glib/gdate.h: 
313         * glib/gdate.c (g_date_set_time_t): 
314         (g_date_set_time_val): Add functions to set a date from
315         a time_t and from a GTimeVal.
316         (g_date_set_time): Deprecate.  (#314067, Roger Leigh)
317         
318         * tests/Makefile.am:
319         * tests/utf8-pointer.c: Unit tests for g_utf8_pointer_to_offset
320         and g_utf8_offset_to_pointer.
321
322         * glib/gutf8.c (g_utf8_pointer_to_offset) 
323         (g_utf8_offset_to_pointer): Handle negative offsets, and use
324         "stutter stepping" for going backwards. (#320638, Larry
325         Ewing)
326
327         * glib/gbacktrace.c:
328         * glib/gdate.c:
329         * glib/gthread.c: const correctness fixes, found
330         by Arjan van de Ven and gcc.
331         
332 2005-11-16  Behdad Esfahbod  <behdad@gnome.org>
333
334         * docs/reference/glib/tmpl/unicode.sgml: Correct typo on mentioning
335         @G_UNICODE_BREAK_UNKNOWN that should be #G_UNICODE_BREAK_UNKNOWN.
336
337 2005-11-09  Behdad Esfahbod  <behdad@gnome.org>
338
339         * glib/guniprop.c: Use bit hacks instead when checking a general
340         category value against multiple values.
341
342         * glib/gutf8.c: Change ISO10646 to Unicode in docs.
343
344 2005-11-10  Simos Xenitellis  <simos@gnome.org>
345
346         * configure.in: Added tt (Tatar) to ALL_LINGUAS.
347
348 2005-11-05  Tor Lillqvist  <tml@novell.com>
349
350         * glib/giowin32.c (g_io_win32_set_flags): Don't call g_warning().
351         (#320688) Instead set error and return failure.
352
353 2005-11-07  Matthias Clasen  <mclasen@redhat.com>
354
355         * glib/gmain.c (g_main_dispatch): Don't call cb_funcs->unref
356         while holding the context lock.  (#320886, Andy Wingo)
357
358 2005-11-07  Billy Biggs <vektor@dumbterm.net>
359
360         * tests/refcount/Makefile.am: Add a missing reference to libglib
361         in the LDADD for this test.
362
363 2005-11-07  Matthias Clasen  <mclasen@redhat.com>
364
365         * glib/gmem.c (g_allocator_new): We need to set n_preallocs to a
366         nonzero value, otherwise GTK+ 2.8 breaks when compiled against
367         GLib 2.9.  (#320755, Luca Ferretti)
368
369 2005-11-04  Matthias Clasen  <mclasen@redhat.com>
370
371         * glib/Makefile.am: Apply a patch from Behdad Esfahbod to 
372         use a faster lookup table for g_unichar_get_mirror_char().
373         * glib/gmirroringtable.h: The new table.
374         * glib/gunichartables.h: Remove bidi_mirroring_table.
375         * glib/gen-unicode-tables.pl: Don't generate the mirroring
376         table.
377         * glib/glib-mirroring-tab/*: Sources for the program
378         which generated gmirroringtable.h.
379
380         * glib/glist.c: Avoid some code duplication.
381
382         * glib/gscanner.h: Include gdataset.h.  (#320322)
383
384         * glib/gdebug.h: add new GDebugFlag for fatal_criticals
385         * glib/gmessages.c: (_g_debug_init): handle G_DEBUG=fatal_criticals,
386         to help find critical warnings in applications.  (#320017,
387         Vincent Untz)
388
389 2005-11-02  Tor Lillqvist  <tml@novell.com>
390
391         * glib/glib.symbols: Remove large amount of trailing whitespace
392         from one line. Remove #ifdef G_UNDEFINED from around
393         g_hash_table_new and g_hash_table_new_full symbols, what was the
394         purpose of that? Add the g_slice functions.
395
396 Tue Nov  1 16:24:20 2005  Tim Janik  <timj@imendio.com>
397
398         * glib/gmem.[hc]: prepared deprecation of GMemChunk and GAllocator.
399         added g_slice_*() API to allocate and cache small bits of memory.
400         an actuall allocator implementation for g_slice_*() is still pending.
401
402         * glib/gthread.[hc]: changes from a patch by Matthias Clasen.
403         changed GRealThread list to use in-structure *next; fields instead
404         of GSList, in order for thread iteration to not depenend on g_slice_*()
405         indirectly.
406         _g_thread_mem_private_get():
407         _g_thread_mem_private_set(): added accessors for private memory,
408         needed because the ordinary GPrivate implementation relies on GArray
409         and GSList and therefore indirectly on working g_slice_*() allocations.
410
411         * glib/gthread.[hc]:
412         g_thread_foreach(): new public API function to loop over all existing threads.
413
414         * glib/gdataset.c:
415         * glib/gstring.c:
416         * glib/gcache.c:
417         * glib/garray.c: 
418         * glib/gqueue.c:
419         * glib/gslist.c:
420         * glib/glist.c:
421         * glib/ghash.c:
422         * glib/gtree.c:
423         * glib/ghook.c:
424         * glib/gmain.c:
425         * glib/gnode.c:
426         removed GAllocator and free list usages and accompanying locks.
427         use g_slice_*() API to allocate and cache small bits of memory.
428
429         * glib/ghook.h: removed GMemChunk field from public API.
430
431         * glib/gslist.h:
432         * glib/glist.h: deprecate allocator API, provide _free1() for consistency.
433
434         * glib/gnode.h: deprecate allocator API.
435
436         * glib/gmain.c: reordered GPollRec fields so g_slice_free_chain() can
437         be used for poll rec lists.
438
439         * glib/grel.c: removed mem chunk usage, and allocated tuples via g_slice_*().
440         g_relation_destroy(): free all tuples from the all_tuples hash table,
441         this effectively maintains the life time track keeping of tuples.
442         g_relation_delete_tuple(): free tuples which are removed from the
443         all_tuples hash table. this fixes a temporary leak that was present
444         in the memchunk code until the destruction of the relation.
445
446 2005-10-29  Matthias Clasen  <mclasen@redhat.com>
447
448         * tests/convert-test.c: Add some tests for conversions between
449         UTF-8, UCS-4 and UTF-16.
450
451         * glib/gutf8.c (g_utf8_to_ucs4, g_utf8_to_utf16): Fix handling
452         of len == -1, noticed by Morten Welinder.
453
454 2005-10-27  Erdal Ronahi  <erdal.ronahi@gmail.com>
455
456         * configure.in: Added ku (Kurdish) to ALL_LINGUAS
457
458 2005-10-26  Matthias Clasen  <mclasen@redhat.com>
459
460         * glib/gutf8.c (g_ucs4_to_utf8): Don't set items_read twice
461         in the error case, and add some documentation.  (#319806, Morten
462         Welinder)
463
464 2005-10-19  Manish Singh  <yosh@gimp.org>
465
466         * configure.in: Use AC_CHECK_FUNCS for _NSGetEnviron, to get the
467         config.h symbol automatically. Fixes bug #313731.
468
469 2005-10-19  Tor Lillqvist  <tml@novell.com>
470
471         * glib/gwin32.c (g_win32_get_package_installation_directory):
472         Return a g_strdup()ed copy of the value stored in the hash table,
473         so that it can be g_free()d without leaving a dangling pointer in
474         the hash table. (#319232)
475
476 2005-10-06  Matthias Clasen  <mclasen@redhat.com>
477
478         * glib/gunicollate.c (g_utf8_collate_key_for_filename): Handle
479         all-zero sequences correctly.  (#317930, Sebastien Bacher)
480
481 2005-10-05  Matthias Clasen  <mclasen@redhat.com>
482
483         * glib/gmarkup.c (g_markup_escape_text): Doc addition
484
485         * Makefile.am: Add Collation tests.
486
487         * tests/collate/*: Inputs and expected outputs for collation tests.
488
489         * tests/run-collate-tests.sh: Script to run collation tests.
490
491         * tests/unicode-collate.c (main): Rework slightly to make
492         it usable in unit tests. Also test g_utf8_collate_key_for_filename().
493
494 2005-10-01  Behdad Esfahbod  <behdad@gnome.org>
495
496         * docs/reference/glib/tmpl/unicode.sgml:
497         * glib/gen-unicode-tables.pl:
498         * glib/gunibreak.h:
499         * glib/gunichartables.h:
500         * glib/gunicode.h:
501         * tests/casefold.txt:
502         * tests/casemap.txt: Updated to Unicode 4.1.  There are five new
503         GUnicodeBreakType types.  That may break some applications, like
504         Pango <= 1.10.
505
506 2005-09-26  Matthias Clasen  <mclasen@redhat.com>
507
508         * glib/gstrfuncs.c (g_ascii_strtoull): Add details to the 
509         docs.  (#314393, Matthew F. Barnes)
510
511         * glib/glib.symbols:
512         * glib/gprintf.h: Remove g_snprintf() and g_vsnprintf(), since
513         they are already declared in glib.h. This doesn't break documented
514         use of gprintf.h, but should probably be pointed out in the 
515         release notes for 2.10. (#314232, Behdad Esfahbod)
516
517 Tue Sep 20 13:16:04 2005  Tim Janik  <timj@imendio.com>
518
519         * glib/gpattern.c (g_pattern_ph_match): applied significant recursion
520         complexity optimization, based on a patch from Matthias Clasen.
521
522         * tests/patterntest.c: more tests, mostly from matthias.
523
524 2005-09-20  Matthias Clasen  <mclasen@redhat.com>
525
526         * glib/gqueue.c (g_queue_insert_sorted): Correct the docs.
527         (#316703, Mark Drago)
528
529 Mon Sep 19 17:23:23 2005  Tim Janik  <timj@imendio.com>
530
531         * glib/gpattern.c: applied a patch from matthias which checks on the
532         upper bound of GPatternSpec length to optimize matches.
533         cosmetic fixups.
534
535         * tests/patterntest.c: added more match cases.
536
537 2005-09-16  Tor Lillqvist  <tml@novell.com>
538
539         * glib/gstrfuncs.c (g_ascii_strcasecmp, g_ascii_strncasecmp): Add
540         warning to doc comment that these functions should not be used on
541         encodings like CP932.
542
543 2005-09-14  Matthias Clasen  <mclasen@redhat.com>
544
545         * tests/keyfile-test.c: Add a test for grup names of length 1.
546
547         * glib/gkeyfile.c (g_key_file_line_is_group): Accept group names
548         of length 1.  (#316309)
549         
550 2005-09-12  Matthias Clasen  <mclasen@redhat.com>
551
552         * glib/gmarkup.c (g_markup_escape_text): Clarify docs.
553
554 2005-09-11  Sebastian Wilhelmi  <seppi@seppi.de>
555
556         * tests/refcount/Makefile.am (INCLUDES): Link the the refcount
557         tests to the system thread library $(G_THREAD_LIBS). Fixes #313744
558         and #314217.
559
560 2005-09-11  Kjartan Maraas  <kmaraas@gnome.org>
561
562         * glib/gmain.c: (g_child_watch_prepare), (g_child_watch_check),
563         (child_watch_helper_thread): Remove some dead code. Closes
564         bug #315278.
565
566 2005-09-07  Tor Lillqvist  <tml@novell.com>
567
568         * glib/Makefile.am: Create also a console version of the
569         gspawn-win32-helper program, gspawn-win32-helper-console.exe.
570         It's otherwise identical to gspawn-win32-helper.exe, except marked
571         as a console application (linked without the -mwindows option).
572         
573         * glib/gspawn-win32.c (do_spawn_directly, do_spawn_with_pipes):
574         Drop the dont_wait parameter. Its truth value correlated 100% with
575         the NULLness of the exit_status parameter anyway, so it's enough
576         to check whether exit_status is NULL. Invert the sense of the
577         dont_return_handle parameter and rename it to do_return_handle, to
578         make the code easier to read by avoiding double negations.
579
580         (g_spawn_sync_utf8, g_spawn_async_with_pipes_utf8): Modify calls
581         to do_spawn_with_pipes() accordingly.
582
583         (do_spawn_with_pipes): If we have a console, use the console
584         version of the helper program, otherwise use the GUI one. This
585         avoids extra console windows opening up in some situations. (In
586         case a console application uses the GUI gspawn-win32-helper.exe to
587         spawn another console application we would get a separate console
588         for the spawned console application).
589
590         * glib-zip.in: Distribute also gspawn-win32-helper-console.exe.
591
592 2005-09-05  Matthias Clasen  <mclasen@redhat.com>
593
594         * glib/gmappedfile.c (g_mapped_file_new): Report an error
595         if the file is too large.  (#315275, Kjartan Maraas)
596
597         * glib/gkeyfile.c (g_key_file_load_from_fd): The return value
598         of read() is signed.  (#315273, Kjartan Maraas)
599         
600 2005-08-31  Tor Lillqvist  <tml@novell.com>
601
602         * glib/gutils.h: Wrapping atexit() is a bad idea on Windows, where
603         the EXE and each DLL have their own atexit function chains.
604
605         #define g_atexit as atexit instead. This means it has a
606         better chance of doing what the caller wants. For instance,
607         gtkhtml calls g_atexit() registering a function in gtkhtml
608         itself. This caused a crash when g_atexit() was implemented as a
609         function in the GLib DLL. The gtkhtml DLL was already unloaded by
610         the time the GLib DLL got unloaded.
611
612         * glib/gutils.c: #undef the #define mentioned above, to also get a
613         real g_atexit() into the DLL for backward compatibility. Document
614         the Windows behaviour of g_atexit(), and document the varying ways
615         atexit() can behave in the context of dynamically loaded modules
616         on Unix.
617
618 2005-08-31  Matthias Clasen  <mclasen@redhat.com>
619
620         * glib/glib.symbols: 
621         * glib/gquark.h: 
622         * glib/gdataset.c: Add string interning functions.
623
624 2005-08-28  Matthias Clasen  <mclasen@redhat.com>
625
626         * glib/giochannel.c: Unify some near-duplicate strings. (#314654,
627         Clytie Siddall)
628         
629 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
630
631         * configure.in: Bump version to 2.9.0
632
633 2005-08-25  Tor Lillqvist  <tml@novell.com>
634
635         Make also the g_spawn*() functions take parameters in the GLib
636         file name encoding, i.e. UTF-8, on Windows. Has no impact on Unix
637         API or ABI. Like the other GLib API that was earlier changed to
638         use UTF-8 on Windows, the names of the functions that take UTF-8
639         have _utf8 suffixes added by using preprocessor macros in the
640         header file. The old names are kept for functions with the old
641         behaviour, taking parameters in the system codepage, for DLL ABI
642         stability.
643         
644         * glib/gspawn.h: On Win32 add the suffix _utf8 to the names of the
645         g_spawn*() functions.
646         
647         * glib/gspawn-win32.c: Use wide-char API on NT-based
648         Windows. Convert parameters from UTF-8 to wide chars (NT) or
649         system codepage (Win9x) and call the C library _wspawn*() or
650         spawn*() functions respectvely. Add DLL ABI stability versions
651         that take parameters in the system codepage.
652
653         * glib/gspawn-win32-helper.c: On NT-based Windows use the
654         wide-char versions of argv and envp, and use wide-char API to
655         change directory and spawn the program to run. Remove the verbose
656         debugging output, it was too complex to modify for the wide-char
657         features. (Just add temporary debugging printouts if needed, no
658         need to have them permanently in the source.)
659
660         * glib/gspawn.c: Corresponding documentation updates.
661
662         * glib/glib.symbols: Corresponding changes: Mark the ABI stability
663         symbols as PRIVATE, add the new _utf8-suffixed ones.
664
665 2005-08-24  Stepan Kasal  <kasal@ucw.cz>
666
667         * glib/gtypes.h (G_MININT64): Cast the constant to gint64; it is
668         guint64 otherwise and that can produce warnings about comparison
669         between signed and unsigned.
670
671 2005-08-23  Matthias Clasen  <mclasen@redhat.com>
672
673         * glib/gutils.c: Fix the crt_externs.h include.
674
675 2005-08-23  Stepan Kasal  <kasal@ucw.cz>
676
677         * NEWS: Fix spelling of my first name.
678
679 2005-08-23  Matthias Clasen  <mclasen@redhat.com>
680
681         * Bump version
682
683         * === Released 2.8.1 ===
684
685         * NEWS: Updates
686
687 2005-08-20  Hans Breuer  <hans@breuer.org>
688
689         * glib/makefile.msc.in : link with ws2_32.lib
690
691 2005-08-18  Tor Lillqvist  <tml@novell.com>
692
693         * configure.in: Check for <sys/wait.h>
694
695         * glib/gbacktrace.c: Include <sys/wait.h> on if HAVE_SYS_WAIT_H.
696
697 2005-08-18  Ross Burton  <ross@burtonini.com>
698
699         * glib/gstring.c:
700         Optimise single-character insertions.
701         
702         * glib/gutf8.c:
703         Note copied code.
704         
705         * tests/string-test.c:
706         Add tests for new optimisation, and fix a leak.
707
708 2005-08-17  Matthias Clasen  <mclasen@redhat.com>
709
710         * configure.in: Check for crt_externs.h and _NSGetEnviron.
711
712         * glib/gutils.c: On Darwin, include crt-externs.h and
713         define environ using _NSGetEnviron().  (#313731)
714
715 2005-08-16  Stepan Kasal  <kasal@ucw.cz>
716
717         * glib/gutils.c (g_get_any_init): Move the body of the big if...
718         (g_get_any_init_do): ... to this new function.
719         (g_get_any_init): Declare as inline.
720         (g_get_any_init_locked): New inline function, does the locking.
721         Make use of these two throughout the code.
722
723 2005-08-15  Matthias Clasen  <mclasen@redhat.com>
724
725         * glib/gbacktrace.c (g_on_error_stack_trace): Wait for
726         the child process and then simply return. This makes 
727         The "S" option work as documented in g_on_error_query().
728         (#313125, Matthew F. Barnes)
729
730         * glib/gunicode.h: Update the link to Unicode category
731         values.  (#313369, Behnam Esfahbod)
732
733         * glib/gqueue.c (g_queue_find_custom): Clarify docs
734         a little.  (#311727, Tristan van Berkom)
735
736         * glib/abicheck.sh, gobject/abicheck.sh: Make the 
737         check work on ia64 too, where some symbols ended up 
738         in yet another section.
739