Add Since and Deprecation info for symbols documented in the templates.
[platform/upstream/glib.git] / ChangeLog.pre-2-2
1 2002-12-05  Matthias Clasen  <maclas@gmx.de>
2
3         * glib/gstrfuncs.c (g_strncasecmp): Break long deprecation
4         info into two paragraphs.
5
6 Thu Dec  5 15:43:46 2002  Owen Taylor  <otaylor@redhat.com>
7
8         * configure.in: Fix multiple problems with the programs
9         in the argument of AC_TRY_RUN() having preprocessor
10         defines not in the first column.
11
12 Thu Dec  5 15:24:14 2002  Owen Taylor  <otaylor@redhat.com>
13
14         Start of fixes for cross-compilation. Based on
15         patches from Dimi Shahbaz, Dan Kegel, Johannes Stenzenbach,
16         Amy Lin. (#58786)
17
18         * configure.in: Don't run the Digital-Unix 4 -std1 check
19         when cross_compiling.
20
21         * configure.in: Use AC_TRY_COMPILE() rather than 
22         AC_TRY_RUN() for inline checks. (Daniel Egger)
23
24         * configure.in: use AC_CHECK_SIZEOF rather than
25         GLIB_SIZEOF for size_t. Remove unused checks for
26         size of ptrdiff_t/intmax_t.
27
28         * acglib.m4: Resync GLIB_SIZEOF of to the current
29         AC_CHECK_SIZEOF, which handles cross-compilation.
30
31         * acglib.m4: Remove no longer needed GLIB_SYSDEFS(),
32         add GLIB_CHECK_VALUE() as a wrapper around the
33         amazing _AC_COMPUTE_INT() autoconf 2.5x internal.
34
35         * configure.in: Redo the POLL* value checks in a
36         cross-compilation friendly way.
37
38 Thu Dec  5 15:28:37 2002  Owen Taylor  <otaylor@redhat.com>
39
40         * glib/gtimer.c: Include glibconfig.h early so
41         that we include <windows.h> when needed.
42
43         * glib/gstrfuncs.c: Fix typo.
44
45 Tue Dec  3 21:10:28 2002  Owen Taylor  <otaylor@redhat.com>
46
47         * configure.in: Add 3rd argument to remaining AC_DEFINES(),
48         so we can get rid of acconfig.h. (#76334, Daniel Egger)
49
50         * acconfig.h: Removed.
51
52 Tue Dec  3 20:22:27 2002  Owen Taylor  <otaylor@redhat.com>
53
54         * glib/*.c: Patch from Sven Neumann to make the
55         include order consistent. (#71704)
56
57 2002-12-03  Matthias Clasen  <maclas@gmx.de>
58
59         * configure.in: Check that strlcpy behaves as per the OpenBSD 
60         man page before wrapping it.  (#53933)
61
62 2002-12-03  Frederic Crozat  <fcrozat@mandrakesoft.com>
63
64         * glib/gunicollate.c: (g_utf8_collate_key):
65         Fix typo from previous commit
66
67 Tue Dec  3 01:05:00 2002  James M. Cape  <jcape@ignore-your.tv>
68
69         * glib/gunicollate.c (g_utf8_collate, g_utf8_collate_key):
70         Check for NULL before doing anything.
71
72 Mon Dec  2 16:34:13 2002  Owen Taylor  <otaylor@redhat.com>
73
74         * === Released 2.1.3 ===
75
76         * NEWS: Updated.
77
78         [ Unmerged change from stable from May 16 ]
79
80         * autogen.sh: Remove check for GNU gettext, since it
81         was causing problems for Solaris CVS builds.
82         (#81885, Hidetoshi Tajima.)
83
84 Tue Nov 26 09:51:43 2002  Owen Taylor  <otaylor@redhat.com>
85
86         * glib/gstrfuncs.c (g_strchomp): Avoid non-ANSI pointer
87         comparison. (#54344, Morten Welinder)
88
89         * tests/strfunc-test.c (main): Add tests for strchomp().
90
91 2002-11-30  Ole Laursen  <olau@hardworking.dk>
92
93         * configure.in: Added "da" to ALL_LINGUAS.
94
95 2002-11-29  Matthias Clasen  <maclas@gmx.de>
96
97         * glib/gstrfuncs.c (g_ascii_strtoull): It is a 2.2 addition.
98
99         * glib/gtimer.c (g_time_val_add): Adjust to changed parameter names.
100
101         * glib/gutils.c (g_get_application_name): Mark as 2.2. addition.
102
103         * glib/gstrfuncs.c (g_ascii_strtoull): Mark as 2.0.7 addition. 
104
105 2002-11-28  Matthias Clasen  <maclas@gmx.de>
106
107         * glib/gutils.c:
108         * glib/gtree.c: 
109         * glib/gstring.c: 
110         * glib/gstrfuncs.c: 
111         * glib/giochannel.c: Move some docs inline, and add deprecation
112         information. To see the list of affected functions, grep for
113         "Deprecated:". 
114
115         * configure.in: Fix the definitions around printf: either we use
116         system printf in which case HAVE_VASPRINTF, HAVE_C99_VSNPRINTF and
117         HAVE_UNIX98_PRINTF have already been determined by earlier tests,
118         or we use the included printf, in which case we know that these
119         three can be defined as 1.  (#99826)
120
121         * glib/gutf8.c (g_utf8_strreverse): 
122         * glib/gstrfuncs.c (g_str_has_suffix): 
123         (g_str_has_prefix): 
124         * glib/gprintf.c (g_printf): 
125         (g_fprintf): 
126         (g_sprintf): 
127         (g_vprintf): 
128         (g_vfprintf): 
129         (g_vsprintf): 
130         * glib/gmarkup.c (g_markup_parse_context_get_element): 
131         Mark as 2.2 API additions.
132
133         * configure.in: Fix the gtk-doc version check.
134
135 2002-11-27  Matthias Clasen  <maclas@gmx.de>
136
137         * glib/gmessages.h: Use G_LIKELY without surrounding parentheses 
138         in g_assert() and g_return_[val]_if_fail() so that we always trigger
139         the gcc warning about "assignment used as truth value".
140
141         * glib/gmacros.h: Always put parentheses in G_LIKELY and G_UNLIKELY.
142
143 2002-11-26  Matthias Clasen  <maclas@gmx.de>
144
145         * glib/gmessages.h: Only use G_LIKELY in g_assert() and 
146         g_return_[val]_if_fail() if it is actually doing something.
147
148 2002-11-26  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
149
150         * glib/grand.c, gthread/gthread-impl.c, tests/rand-test.c: 
151         Changed the seeding algorithm. Old behaviour can be achived by
152         setting envvar G_RANDOM_VERSION to "2.0". (#99262)
153
154         * docs/reference/glib/glib-docs.sgml,
155         docs/reference/glib/Makefile.am: Renamed
156         docs/reference/glib/changes-2.0.sgml to
157         docs/reference/glib/changes.sgml and added section for changes
158         from 2.0 to 2.2 (Also corrected 1.0 to 1.2).
159
160         * README.in, docs/reference/glib/running.sgml,
161         docs/reference/glib/tmpl/random_numbers.sgml,
162         docs/reference/glib/changes.sgml: Added notes about the new
163         seeding algorithm.
164
165         * configure.in: Make CPPFLAGS, not CFLAGS, include
166         G_THREAD_CFLAGS. CFLAGS is used while linking too and thus GLib
167         programs would link to the threads library on some platforms. Also
168         fixed a bug manifesting through this change. (#77981)
169
170 2002-11-26  Matthias Clasen  <maclas@gmx.de>
171
172         * glib/gmacros.h: Fix the non-gcc-3.x definitions of G_LIKELY 
173         and G_UNLIKELY.  (Reported by Dan Mills)
174
175 2002-11-25  Matthias Clasen  <maclas@gmx.de>
176
177         * glib/gfileutils.c (g_build_path): 
178         (g_build_filename): Document that the varargs must be 
179         NULL-terminated. (#99510)
180
181         * glib/gmessages.h (g_assert): 
182         (g_return_if_fail): 
183         (g_return_val_if_fail): Remove the (no longer effective) empty
184         if-branch.
185
186         * glib/gmacros.h: Change the definition of G_LIKELY, so that
187         g_return_if_fail() and friends still trigger a gcc warning if
188         the expr is an assignment. 
189
190 2002-11-23  Matthias Clasen  <maclas@gmx.de>
191
192         * configure.in: Generate docs/reference/*/version.xml.
193
194         * glib/gdir.h: Add Copyright notice.
195
196 2002-11-22  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
197
198         * configure.in: Fixed typo: PTHREAD_PRIO_MIN ->
199         PTHREAD_PRIO_MAX. (Laurent Vivier, #99293)
200
201 Fri Nov 22 09:39:09 2002  Owen Taylor  <otaylor@redhat.com>
202
203         * glib/gmacros.h: Remove broken G_HIDDEN_SYMBOL
204         definition which wasn't supposed to be committed
205         at all.
206
207 Thu Nov 21 16:19:21 2002  Owen Taylor  <otaylor@redhat.com>
208
209         * glib/ghash.c: Patch from Morten Welinder to 
210         make ghash.c properly obey DISABLE_MEM_POOLS. (#96600)
211
212 Thu Nov 21 14:09:44 2002  Owen Taylor  <otaylor@redhat.com>
213
214         * glib/gmacros.h: Add G_GNUC_DEPRECATED. (Tom Tromey,
215         #87969)
216
217 2002-11-21  Tor Lillqvist  <tml@iki.fi>
218
219         * config.h.win32.in: Update to match what is currently produced by
220         autotools.
221
222         * configure.in: Remove superfluous spaces on two shell variable
223         assignment lines. Don't define HAVE_GOOD_PRINTF as 0 if we don't
224         have a good printf, it is tested with #ifdef.
225
226         * glib/glib.def: Add new functions.
227
228         * glib/Makefile.am: If !HAVE_GOOD_PRINTF, add libtrio.la to LIBADD
229         and DEPENDENCIES.
230
231         * glib/glib.rc.in
232         * gmodule/gmodule.rc.in
233         * gobject/gobject.rc.in
234         * gthread/gthread.rc.in
235         * {glib,gmodule,gobject,gthread}/makefile.{mingw,msc}.in:
236         Hardcode 2.0 in the names, as that is what Makefile.am does.
237
238 2002-11-21  Matthias Clasen  <maclas@gmx.de>
239
240         Include a printf implementation supporting C99 snprintf and SUS
241         positional parameters:  (#79488)
242         
243         * glib/gstrfuncs.c:
244         * glib/gspawn-win32.c:
245         * glib/gscanner.c:
246         * glib/gconvert.c: 
247         * glib/gbacktrace.c: Use _g_printf wrappers. 
248
249         * glib/gutils.c (g_vsnprintf): Simplify, since we can assume C99
250         snprintf semantics now.
251
252         * glib/gmessages.c (printf_string_upper_bound): No longer needed,
253         since we can assume C99 snprintf semantics now.
254         (g_logv): Simplify.
255         
256         * acinclude.m4 (AC_FUNC_PRINTF_UNIX98): New macro to check wether
257         printf supports SUS positional parameters.
258
259         * configure.in: New option --enable-included-printf to force
260         compilation of trio; otherwise trio is compiled if the system
261         printf misses either C99 snprintf semantics of SUS positional 
262         parameters.
263
264         * glib/Makefile.am (SUBDIRS): Conditionally compile trio.
265         (libglib_2_0_la_SOURCES): Add gprintf.c and gprintfint.h.
266         (glibsubinclude_HEADERS): Add gprintf.h.
267
268         * glib/gprintfint.h: New private wrapping either system printf
269         or trio printf variants in _g_printf wrappers for use inside glib.
270
271         * glib/gprintf.h: New public header declaring g_printf variants.
272         * glib/gprintf.c: Corresponding implementations.
273
274         * glib/trio/*: New directory, containing the trio-1.9 sources. 
275
276 2002-11-20  Matthias Clasen  <maclas@gmx.de>
277
278         * glib/gmessages.h (g_return_if_fail): 
279         (g_return_val_if_fail): Use G_LIKELY.  (#69022)
280
281         * glib/gmacros.h (G_LIKELY): 
282         (G_UNLIKELY): New macros for hinting the compiler about the
283         expected result of expressions. For gcc 3.x, define these
284         using __builtin_expect.  (#69022)
285
286 Tue Nov 19 14:38:18 2002  Owen Taylor  <otaylor@redhat.com>
287
288         * glib/gstrfuncs.c (g_ascii_strtoull): Fix 
289         strtull/strtoull type in docs (#99012, Morten
290         Welinder.) Add copyright information for code
291         taken from GNU libc.
292
293 2002-11-18  Tor Lillqvist  <tml@iki.fi>
294
295         * glib/gspawn-win32.c (do_spawn_with_pipes): Do handle
296         G_SPAWN_DO_NOT_REAP_CHILD after all, similarily as on Unix. If the
297         flag is not set, don't call DuplicateHandle() on the handle
298         returned by the helper process, and set the "child pid" returned
299         to the called to zero. Close the handle to the helper process in
300         all cases.
301
302         * glib/gspawn.c (g_spawn_async_with_pipes): Document Windows
303         behaviour of G_SPAWN_DO_NOT_REAP_CHILD.
304
305 2002-11-18  Tor Lillqvist  <tml@iki.fi>
306
307         [Win32] Fix the asynchronous g_spawn* to return the process handle
308         of the started program properly. (Note: not the process id. The
309         spawn*() functions in the C runtime return the created process's
310         handle. There doesn't seem to be any way to get the process id of
311         a child process if you have the handle. But then, the process
312         handle usually is more useful anyway.)
313
314         * glib/gspawn-win32-helper.c (WinMain): If the spawning of the
315         child process succeeded, and if asynchronous spawn (P_NOWAIT),
316         write the result handle up to the parent process, waiting to read
317         it in do_spawn_with_pipes().
318
319         * glib/gspawn-win32.c (do_spawn): Use return value from spawning
320         the helper. If it is -1 the helper wasn't found or couldn't be run
321         for some reason. Otherwise it is the helper's process handle.
322
323         (g_spawn_async_with_pipes): Pass the child_pid parameter on to
324         do_spawn_with_pipes().
325
326         (do_spawn_with_pipes): Take also a child_pid parameter. If
327         do_spawn() returned -1, fail immediately. Otherwise make the
328         handle passed to us by the helper process into a handle valid in
329         this process by calling DuplicateHandle().
330
331 2002-11-17  Tor Lillqvist  <tml@iki.fi>
332
333         * glib/gspawn-win32.c (g_spawn_async_with_pipes): Ignore the
334         G_SPAWN_DO_NOT_REAP_CHILD flag, can't be meaninfully implemented
335         on Windows, at least not now. Always pass dont_wait as TRUE to
336         do_spawn_with_pipes(). The semantics of the dont_wait parameter is
337         very different from the semantics of the intermediate_child
338         parameter to fork_exec_with_pipes() in the Unix version. This
339         fixes a serious bug, g_spawn_async() in fact behaved
340         synchronously.
341
342         (do_spawn_with_pipes, do_spawn): Rename from
343         fork_exec_with_pipes() and do_exec(), those names were from the
344         Unix bersion, and misleading.
345
346         (close_and_invalidate): Don't try to close invalid fds.
347
348         * glib/gspawn.c (g_spawn_async_with_pipes): Add warning about
349         Windows behaviour. There is no fork(), so the child_setup()
350         function is in fact called in the parent.
351         
352         * glib/gspawn-win32-helper.c (WinMain): Insert spaces in argv
353         debugging output.
354
355         * tests/spawn-test-win32-gui.c: New file. Test program to be
356         linked as a GUI application. Behaves differently depending on how
357         invoked (by spawn-test).
358
359         * tests/spawn-test.c (run_tests): On Win32, run the
360         spawn-test-win32-gui program, too, in several ways, synchronously
361         and asynchronously.
362
363         * tests/Makefile.am: Corresponding change.
364
365 Fri Nov  8 19:44:20 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
366
367         * docs/reference/glib/tmpl/arrays.sgml:
368         * docs/reference/glib/tmpl/arrays_byte.sgml:
369         * docs/reference/glib/tmpl/arrays_pointer.sgml:
370         * docs/reference/glib/tmpl/date.sgml:
371         * docs/reference/glib/tmpl/linked_lists_double.sgml:
372         * docs/reference/glib/tmpl/linked_lists_single.sgml:
373         * docs/reference/glib/tmpl/main.sgml:
374         * docs/reference/glib/tmpl/queue.sgml:
375         * docs/reference/glib/tmpl/random_numbers.sgml:
376         * docs/reference/glib/tmpl/relations.sgml:
377         * docs/reference/glib/tmpl/scanner.sgml:
378         * docs/reference/gobject/tmpl/gtype.sgml:
379         * docs/reference/gobject/tmpl/value_arrays.sgml glib/garray.h:
380         * glib/gdate.h glib/giochannel.h glib/glist.h glib/gmain.c:
381         * glib/gmain.h glib/gqueue.c glib/gqueue.h glib/grand.c glib/grand.h:
382         * glib/grel.h glib/gslist.h glib/gtimer.h gobject/gvaluearray.h:
383
384         Trivial s/foo/foo_/ fixes to make <glib.h> includable with
385         -Wshadow without warnings (#91680)
386
387 Thu Nov  7 19:32:26 2002  Owen Taylor  <otaylor@redhat.com>
388
389         * glib/gutils.[ch] (g_set/get_application_name): 
390         Patch from Havoc Pennington to add functions for 
391         setting and getting a human readable application
392         name.
393
394         * configure.in: Up to version 2.1.3, since we'll
395         need to depend on last addition for GTK+.
396
397 2002-11-06  Tor Lillqvist  <tml@iki.fi>
398
399         * glib/glib.def: Add g_main_thread_init.
400
401 2002-11-06  Matthias Clasen  <maclas@gmx.de>
402
403         * glib/gstrfuncs.c (g_str_has_suffix): 
404         (g_str_has_prefix): Minor doc markup fix.
405
406 Mon Nov  4 10:45:48 2002  Owen Taylor  <otaylor@redhat.com>
407
408         * configure.in: Add -DG_DISABLE_CAST_CHECKS for 
409         everything but --enable-debug.
410
411         * configure.in: Require pkg-config 0.14. (#97553)
412
413 Mon Nov  4 14:41:48 2002  Owen Taylor  <otaylor@redhat.com>
414  
415         * glib/gbsearcharray.c: Include config.h
416         so DISABLE_MEMPOOLS actually has an effect.
417         (#96437, Morten Welinder)
418  
419         * tests/uri-test.c: Include <config.h>
420
421 2002-11-03  Dmitry G. Mastrukov  <dmitry@taurussoft.org>
422
423         * configure.in: Added Belarusian to ALL_LINGUAS
424
425 2002-11-02  Daniel Elstner  <daniel.elstner@gmx.net>
426
427         * glib/giochannel.c (g_io_channel_write_chars): Fix left_len
428         calculation in the from UTF-8 to UTF-8 case: left_len should
429         be the number of bytes left in the input buffer rather than
430         channel->write_buf. (#96373)
431
432 2002-10-27  Tor Lillqvist  <tml@iki.fi>
433
434         * configure.in (G_MODULE_LDFLAGS): Don't set on Win32, only causes
435         trouble.
436         
437         * glib/gmain.c (g_poll): Fix for bug reported by Herman Bloggs
438         (http://mail.gnome.org/archives/gtk-devel-list/2002-October/msg00101.html)
439         and others. We waited for events only for GPollFDs whose events
440         field had G_IO_IN set. We need to wait also for events for
441         GPollFDs that have just G_IO_OUT set. Non-blocking sockets in the
442         process of being connect()ed are one such case. Also silence a
443         couple of gcc warnings.
444
445 Fri Oct 18 13:41:30 2002  Manish Singh  <yosh@gimp.org>
446
447         * glib/giochannel.c (g_io_channel_read_line_backend): avoid
448         creating negative values out of unsigned values using MAX,
449         check to see if the result would be positive before doing
450         the calculation.
451
452 Tue Oct 15 15:28:47 2002  Manish Singh  <yosh@gimp.org>
453
454         * tests/iochannel-test.c: use gsize instead of int where appropriate
455         (64-bit cleanliness fix). Removed leftover line_term cruft.
456
457 Tue Oct 15 15:07:45 2002  Manish Singh  <yosh@gimp.org>
458
459         * gmodule/Makefile.am gobject/Makefile.am gthread/Makefile.am:
460         add -DG_DISABLED_DEPRECATED
461
462         * tests/gio-test.c tests/mainloop-test.c tests/string-test.c
463         tests/testglib.c test/tree-test.c tests/unicode-collate.c
464         tests/unicode-normalize.c: Deprecation cleanup
465
466 Mon Oct 14 15:51:05 2002  Owen Taylor  <otaylor@redhat.com>
467
468         * glib/gdate.c (g_date_fill_parse_tokens): Fix a memory
469         leak. (#94550, Sebastian Rittau)
470
471 Mon Oct 14 15:36:11 2002  Owen Taylor  <otaylor@redhat.com>
472
473         * glib/gcompletion.[ch] (g_completion_complete): Make
474         prefix argument const. (#91662, Gustavo Carneiro) 
475
476 Mon Oct 14 15:32:14 2002  Owen Taylor  <otaylor@redhat.com>
477  
478         * tests/mainloop-test.c (adder_response): Fix a minor memory
479         leak.
480  
481 Sat Oct 12 21:30:41 2002  Tim Janik  <timj@gtk.org>
482
483         * merged up from glib-2-0:
484
485         * glib/gstrfuncs.c (g_ascii_strtod): fix comment.
486         (g_ascii_strtoull): new function, acting like strtoull(3) in the C
487         locale.
488
489         * glib/gscanner.[hc]: fix 32bit issues with integer parsing and
490         support storing 64bit values in GTokenValue by
491         using g_ascii_strtoull().
492
493 Sat Oct 12 12:34:22 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
494
495         * glib/gtree.c (g_tree_search), glib/gspawn.c
496         (g_spawn_async_with_pipes): 
497
498         Documentation fixes: #71778, Owen Taylor; #85095, Bill Janssen,
499         Owen Taylor. 
500
501 Thu Oct 10 23:27:02 2002  Tim Janik  <timj@gtk.org>
502
503         * glib/gscanner.c (g_scanner_msg_handler): if input_name is NULL,
504         print out "<memory>" instead of completely skipping input specification
505         and thusly loosing error line information.
506
507 Sun Sep 29 12:15:44 2002  Manish Singh  <yosh@gimp.org>
508
509         * tests/mainloop-test.c: use gsize instead of int where appropriate
510         (64-bit cleanliness fix)
511
512 2002-09-29  Tor Lillqvist  <tml@iki.fi>
513
514         * configure.in: Instead of forcing -fnative-struct into CFLAGS
515         when using gcc for Win32, check for gcc version 3.x which uses
516         -mms-bitfields instead. Also check if either of these switches is
517         actually available at all, and warn if not. Thanks to Soren
518         Andersen for the inspiration.
519
520         * HACKING: Say we require autoconf 2.52 as that is what
521         configure.in does.
522
523 2002-09-23  Arvind Samptur <arvind.samptur@wipro.com>
524         * glib/gspawn.c (fork_exec_with_pipes) : when the child fails
525         we need to reap it to avoid a zombie. This would
526         happen in case of g_spawn_sync. Fixes #92658
527
528 2002-09-20  Matthias Clasen  <maclas@gmx.de>
529
530         * glib/gscanner.c (g_scanner_msg_handler): Don't print
531         scanner->input_name when it is NULL.  (#93752)
532
533 2002-09-06  Havoc Pennington  <hp@redhat.com>
534
535         * autogen.sh: automake 1.4
536
537 2002-09-01  Soeren Sandmann  <sandmann@daimi.au.dk>
538
539         * docs/reference/glib/tmpl/datalist.sgml, glib/gmain.c:
540
541         Documentation fixes: (#75255, Martin Schulze; #76104, Daryll Strauss)
542
543 2002-08-26  Tor Lillqvist  <tml@iki.fi>
544
545         * configure.in (G_LIBS_EXTRA): Don't link with -lwsock32 on
546         Cygwin (#91696, Masahiro Sakai).
547
548 Tue Aug 20 16:01:03 2002  HideToshi Tajima  <hidetoshi.tajima@sun.com>
549
550         * glib/gconvert.c (strdup_len): validate 'len' argument properly
551         for the case that input string is not null-terminated. (#91222)
552
553 2002-08-10  Gustavo Noronha Silva  <kov@debian.org>
554
555         * configure.in: added pt_BR to ALL_LINGUAS
556
557 2002-08-07  Matthias Clasen  <maclas@gmx.de>
558
559         * glib/gmarkup.c (g_markup_parse_context_get_element): 
560         Use g_return_val_if_fail, no g_return_if_fail.
561
562 2002-08-06  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
563
564         * glib/gthread.c: Set the normal PID surrogate priority according
565         to getpid() to avoid errors for niced processes. (#86116)
566
567         * gthread/gthread-impl.c, gthread/gthread-posix.c,
568         gthread/gthread-solaris.c: Do the same for the posix/dce
569         implementation. Solaris still needs to set priority of the main
570         thread, because all unbound threads will schedule according to
571         that value and it defaults to 0 (the minimal value). 
572
573         * glib/gmain.c: Factor out g_main_context_init_pipe from
574         g_main_context_new to initialize the wakeup pipe of a
575         context. Call that function from g_main_context_new if threads are
576         initialized and for all contexts when threads are initialized
577         in g_main_thread_init. (#86872) 
578
579         * gthread/gthread-impl.c: Call g_main_thread_init. (#86872) 
580
581 Thu Jul 25 14:23:15 2002  Owen Taylor  <otaylor@redhat.com>
582
583         * glib/gfileutils.c: Clarify the behavior of g_build_path()
584         for empty elements and for leading and trailing copies
585         of the separator in the docs.
586  
587         * glib/gfileutils.c: Fix problems with leading elements
588         consisting only of "/" characters. (#85928, Guillaume Chazarain)
589  
590         * tests/strfunc-test.c (main): Add more test cases
591         for g_build_filename().
592  
593 2002-07-26  Matthias Clasen  <maclas@gmx.de>
594
595         * glib/gunicode.h: 
596         * glib/gutf8.c (g_utf8_strreverse): New function to revert
597         a utf8 string.
598         * glib/gpattern.c (g_utf8_reverse): Gone, replaced by 
599         g_utf8_strreverse.  (#87725)
600
601 Thu Jul 25 20:57:20 2002  Owen Taylor  <otaylor@redhat.com>
602
603         * glib/giochannel.c (g_io_channel_read_line): Fix 
604         docs for @str_return to conform to the main docs
605         and the implementation as to whether the terminator
606         is included. (#87964, Jacob Berkman)
607
608 Thu Jul 25 19:52:41 2002  Owen Taylor  <otaylor@redhat.com>
609
610         * glib/guniprop.c (real_tolower): Handle the 
611         end of the string properly when max_len is set.
612         (#88545, Morten Welinder.) Rename the next_t
613         variable to next_type to make cc-mode happy.
614
615         * glib/gconvert.c (g_iconv_open): Fix missing
616         label from previous commit.
617
618 Thu Jul 25 19:41:03 2002  Owen Taylor  <otaylor@redhat.com>
619
620         * glib/giochannel.c (g_io_channel_get_flags): Fix 
621         incorrect return value in g_return_val_if_fail 
622         (#85545, David L. Cooper II)
623
624 Thu Jul 25 19:12:43 2002  Owen Taylor  <otaylor@redhat.com>
625
626         * glib/giochannel.c (g_io_channel_set_encoding): Clarify
627         that only one of the conditions listed in the docs
628         need to be true, not all of them. (#87176,
629         Sebastian Rittau)
630
631         * glib/giochannel.c (g_io_channel_read_line): Fix 
632         description of the return value. (#87754, Manuel Clos)
633
634 Thu Jul 25 19:02:53 2002  Owen Taylor  <otaylor@redhat.com>
635
636         * glib/gmain.c (g_timeout_add): Remove reference
637         in the docs to @notify parameter. (#87768,
638         Manuel Clos)
639
640 Thu Jul 25 17:57:07 2002  Owen Taylor  <otaylor@redhat.com>
641
642         * glib/gconvert.c (g_iconv_open): Document the
643         (GIConv)-1 return value on failure. (#87559, 
644         Jarek Dukat)
645
646         * glib/gconvert.c (g_iconv_open): Fix potential
647         problems with the assumption that (GIConv)(iconv_t)-1
648         is the same as (GIConv)-1.
649         
650 2002-07-15  Matthias Clasen  <maclas@gmx.de>
651
652         * glib/gmarkup.h: 
653         * glib/gmarkup.c (g_markup_parse_context_get_element): New
654         function to get the currently open element.  (#70448)
655
656 2002-07-04  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
657
658         * tests/*.c: Added #undef G_DISABLE_ASSERT and #undef G_LOG_DOMAIN
659         throughout the files, which didn't already have them. (#87312)
660
661 2002-07-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
662
663         * configure.in: Made the thread flags determination tests first
664         check for the canonical form -pthread[s], then for other
665         possibilities. Also recognize some more platforms. Modeled after
666         patch from Miroslaw Dobrzanski-Neumann <mne@mosaic-ag.com>
667         (#77981).
668         
669         * configure.in: Fixed bugs in posix thread priority
670         resolution. Also added AIX priorities. Fix from
671         Laurent Vivier <Laurent.Vivier@bull.net>. (#82599)
672         
673         * gthread/gthread-solaris.c: Use thr_min_stack() instead of
674         sysconf (_SC_THREAD_STACK_MIN). if stack_size is 0 on entry to
675         g_thread_create_solaris_impl, also pass 0 to thr_create. Otherwise
676         the stack might be to small for any nontrivial thread. Discovered
677         on intel-solaris by Rajkumar Sivasamy <rajkumar.siva@wipro.com>.
678
679 2002-07-03  Anders Carlsson  <andersca@gnu.org>
680
681         * configure.in: Add a forgotten trailing ` in the 
682         GLIB_BINARY_AGE expression. Also fixup LT_CURRENT.
683
684 2002-07-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
685
686         * configure.in: Set binary age to 0 to make it compile.
687
688         * configure.in: Improve checks for dce/posix threads to also do
689         the right thing, if the thread functions are not declared in
690         pthread.h. Idea from Miroslaw Dobrzanski-Neumann
691         <mne@mosaic-ag.com> in #77981.
692
693 2002-07-01  Anders Carlsson  <andersca@gnu.org>
694
695         * configure.in: Up version to 2.1.0.
696
697 2002-07-01  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
698
699         * glib/garray.h: Add parenthesis to protect macro
700         argument. Spotted by Sam Couter <sam@topic.com.au>. (#86826)
701
702 2002-06-28  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
703
704         * glib/gmessages.h (g_assert, g_assert_not_reached,
705         g_return_if_fail, g_return_val_if_fail): In case of
706         G_DISABLE_ASSERT replace "G_STMT_START{ }G_STMT_END" with
707         "G_STMT_START{ (void)0; }G_STMT_END", because the former chokes
708         gcc prior to 3.0. (#86664)
709
710 2002-06-26  Yanko Kaneti <yaneti@declera.com>
711
712         * configure.in: (ALL_LINGUAS) Added Bulgarian (bg).
713
714 Thu Jun 13 16:12:04 2002  Owen Taylor  <otaylor@redhat.com>
715
716         * glib/gmain.c (struct _GTimeoutSource): Make 
717         interval unsigned to match g_timeout_source_new().
718         (#82624, Tim Janik.)
719
720         * glib/gmain.c (g_timeout_prepare): Add some
721         extra gymnastics to avoid signed/unisgned integer
722         overflows.
723
724 Thu Jun 13 15:57:46 2002  Owen Taylor  <otaylor@redhat.com>
725
726         * INSTALL.in: Add a note about the deficiency
727         of Tru64 iconv. (#81699, Manuel Op de Coul)
728
729 Tue Jun 11 17:03:39 2002  Owen Taylor  <otaylor@redhat.com>
730
731         * tests/patterntest.c (test_compilation)
732         * glib/gmem.c (profiler_try_realloc): A couple
733         of 64-bit printf format fix from George Lebl.
734         (#82817)
735
736         * glib/gconvert.c (open_converter): Fix gsize/gint
737         mixup for g_iconv() arguments. (#83270,
738         David L. Cooper II)
739
740 2002-06-03  Matthias Clasen  <maclas@gmx.de>
741
742         * glib/gwin32.c (g_win32_get_package_installation_directory):
743         Replace homegrown "hash" entity by standard ISO entity "num".
744
745 2002-05-26  Matthias Clasen  <maclas@gmx.de>
746
747         * glib/gmain.c: Remove references to nonexisting functions 
748         g_source_set_callback_closure(), g_source_poll(), g_source_add()
749         from docs.
750
751         * glib/gdir.c (g_dir_open): Typo fix in docs.
752
753         * glib/gasyncqueue.c (g_async_queue_lock):
754         (g_async_queue_unref_and_unlock): Fix markup to avoid erroneous 
755         <link>s in docs.
756
757         * glib/gwin32.c: Escape #'s leading to erroneous <link>s in docs.
758
759         * glib/gtree.c: Replace some occurances of Gtree by GTree in docs.
760
761         * glib/gstring.c (g_string_insert_unichar): Typo fix in docs.
762
763 2002-05-23  Havoc Pennington  <hp@redhat.com>
764
765         * glib/gspawn.c (fork_exec_with_pipes): on success, close the
766         pipes from the child. Fix from Tim.
767
768 2002-05-22  jacob berkman  <jacob@ximian.com>
769
770         * m4macros/glib-gettext.m4 (AM_GLIB_WITH_NLS): fix tyop
771
772 Wed May 22 15:40:47 2002  Owen Taylor  <otaylor@redhat.com>
773
774         * README.in: Remove notes about now-fixed-bugs.
775
776         * m4macros/glib-gettext.m4 acinclude.m4: Get rid
777         of AC_MSG_NOTICE() usage, since some broken systems
778         (Hi Debian!) might not be using autoconf-2.5x for
779         downstream packages even though we require it for
780         glib itself.
781
782         * INSTALL.in: Add a note about installing extra
783         converters for Solaris.
784
785         * glib/gutils.h (g_bit_nth_msf): Fix termination
786         condition. (#82582, Paolo Molaro)
787  
788 Tue May 21 15:51:17 2002  Owen Taylor  <otaylor@redhat.com>
789
790         * configure.in: $with_libiconv, not $with_iconv.
791
792 Mon May 20 18:02:46 2002  Owen Taylor  <otaylor@redhat.com>
793
794         * configure.in: Move iconv tests before gettext
795         checks. (#81999)
796
797         * m4macros/glib-gettext.m4 acinclude.m4: If we can't
798         link to gettext, try adding in -liconv. (#80076,
799         Boyd Lynn Gerber)
800
801         * m4macros/glib-gettext.m4 acinclude.m4: Suppress
802         warnings about xgettext not being GNU gettext when
803         libintl wasn't found at all. 
804         (#79016, Andrew P. Lentvorski, Jr.)
805          
806 2002-05-21  Matthias Clasen  <maclas@gmx.de>
807
808         * glib/gmarkup.c (g_markup_parse_context_parse): Added
809         proper support for CDATA sections.
810
811 2002-05-20  jacob berkman  <jacob@ximian.com>
812
813         * glib/gdir.c: include sys/types.h before dirent.h to build on
814         darwin (fixes #72859)
815
816 Mon May 20 15:35:59 2002  Owen Taylor  <otaylor@redhat.com>
817  
818         * glib/gfileutils.c (get_contents_regfile): Fix double
819         close of file descriptor on error. (#82139, Wayne Schuller)
820  
821         * glib/gspawn.c (close_and_invalidate): Don't close
822         fd's that have already been closed. (Fix from Michael
823         Meeks, #81959)
824  
825         * glib/giochannel.c (g_io_channel_close): If not flushing,
826         dump the contents of the write buffers, so we won't try
827         to write them to an invalid fd later. (Patch from Ron Steinke,
828         fixing #78290, Andreas Persenius.)
829  
830 2002-05-18  Matthias Clasen  <maclas@gmx.de>
831
832         * tests/markups/fail-36.gmarkup: 
833         * tests/markups/fail-35.gmarkup: 
834         * tests/markups/valid-8.gmarkup: 
835         * tests/markups/valid-7.gmarkup: 
836         * tests/markups/valid-6.gmarkup: 
837         * tests/markups/valid-5.gmarkup: New testcases.
838
839         * tests/markup-test.c (passthrough_handler): 
840         (text_handler): Don't ignore the text_len parameter.
841
842         * glib/gmarkup.c (find_current_text_end): Don't hang on embedded
843         nuls.  (#81977)
844         (g_markup_parse_context_parse): Fix passthrough handling to
845         correctly skip processing instructions, comments, doctype
846         declarations and CDATA marked sections.  (#81977)
847
848 Sat May 18 00:21:51 2002  Tim Janik  <timj@gtk.org>
849
850         [merged from stable]
851
852         * glib/gscanner.c (g_scanner_unexp_token): fix missing cases for
853         expected_token.
854
855 2002-05-17  Tor Lillqvist  <tml@iki.fi>
856
857         * config.h.win32.in: Match new additions in a configure-produced
858         config.h.
859
860         * glibconfig.h.win32.in: gssize and gsize as in a
861         configure-produced glibconfig.h.
862
863         * glib/glib.def: Add new functions.
864
865 Thu May 16 12:24:00 2002  Owen Taylor  <otaylor@redhat.com>
866  
867         * acinclude.m4 m4macros/glib-gettext.m4: Incorporate 
868         AM_LC_MESSAGES, AM_PATH_PROG_WITH_TEST as AM_GLIB_* to avoid 
869         dependencies on gettext m4 files. (#81885, Hidetoshi Tajima.)
870         
871 2002-05-14  Alex Larsson <alexl@redhat.com>
872         
873         * glib/gstrfuncs.c: 
874         * glib/gstrfuncs.h:
875         New functions g_str_has_suffix and g_str_has_prefix.
876         
877         * tests/string-test.c: (main):
878         Test the new functions.
879
880 Mon May 13 23:20:00 2002  Owen Taylor  <otaylor@redhat.com>
881
882         * autogen.sh (have_gettext): Add a check for GNU gettext.
883         (Pointed out by Dan Winship in #59386.)
884
885 Mon May 13 11:55:33 2002  Owen Taylor  <otaylor@redhat.com>
886
887         * configure.in acglib.m4: If sizeof(int) == sizeof(long)
888         run compilation tests to determine which way gsize should
889         be defined. (#74413, reported by Miroslaw Dobrzanski-Neumann)
890
891 Mon May 13 11:42:23 2002  Owen Taylor  <otaylor@redhat.com>
892  
893         * glib/libcharset/*: Update from libcharset CVS.
894         Includes additional encodings for Solaris (#80396,
895         Qingjiang Yuan)
896  
897         * configure.in: Add getc_unlocked to CHECK_FUNCS().
898  
899         * glib/gmessages.c (strdup_convert): If
900         g_convert_with_fallback() fails, print the error
901         message to stderr the first time, then return
902         the original string. (#78197)
903  
904 2002-05-10  Naba Kumar  <kh_naba@users.sourceforge.net>
905
906         * configure.in: Added "hi" to ALL_LINGUAS.
907
908 2002-05-08  Michael Natterer  <mitch@gimp.org>
909
910         * configure.in: fixed yesterdays fix for cross compiling: simply
911         check the variable "cross_compiling" which gets set by autoconf.
912
913 2002-05-07  Matthias Clasen  <maclas@gmx.de>
914
915         * glib/gmarkup.c (unescape_text): Report unfinished entity
916         references as errors rather than running into an assert.  (#80441)
917
918 2002-05-07  Michael Natterer  <mitch@gimp.org>
919
920         * configure.in: added a new conditional CROSS_COMPILING which
921         indicates ($build != $host). If it is set, look for
922         glib-genmarshal in PATH. Error out if it was not found.
923
924 Tue May  7 11:24:22 2002  Owen Taylor  <otaylor@redhat.com>
925
926         Fixes for #79347, Ron Arts.
927
928         * glib/gqsort.c (g_qsort_with_data): Handle 0 elements,
929         don't g_return_if_fail().
930
931         * tests/qsort-test.c (main): Add a 0 element test.
932
933         * glib/garray.c (g_[ptr_]array_sort_with[_data]): 
934         Remove invalid assertions that array->pdata != NULL ..
935         it's NULL for 0 elements which is a valid case.
936
937 Mon May  6 16:00:41 2002  Owen Taylor  <otaylor@redhat.com>
938
939         * glib/gbacktrace.h: Exclude OSF from alpha definition
940         of G_BREAKPOINT(), since the assembler apparently
941         doesn't support bpt. (#77852, Gareth Pierce) [from stable]
942
943 Mon May  6 11:48:08 2002  Owen Taylor  <otaylor@redhat.com>
944
945         [ merged from stable ]
946  
947         * Makefile.am (EXTRA_DIST): Add ChangeLog.pre-2-0 (#78641)
948  
949         * m4macros/glib-2.0.m4: save CFLAGS/LIBS properly when
950         compiling "what went wrong" test case. (#79330)
951  
952         * m4macros/glib-2.0.m4: Remove reference to editing
953         pkg-config script. (From Jim Gettys)
954  
955         * configure.in: (Look for dyld interfaces before dlopen()
956         since OS X can have both. Patch from Jacob Berkman, 
957         #80438)
958         
959 2002-05-01  jacob berkman  <jacob@ximian.com>
960
961         * configure.in: fix typo on 64-bit printf formatting string
962         configure message (fixes #80389)
963
964 2002-04-29  Pablo Saratxaga  <pablo@mandrakesoft.com>
965
966         * configure.in: Added Vietnamese (vi) to ALL_LINGUAS
967
968 2002-04-19  Tor Lillqvist  <tml@iki.fi>
969
970         * glib/gspawn.c (g_spawn_command_line_sync): Add Windows-specific
971         note to the gtk-doc comment.
972
973         * glib/gspawn-win32.c: Remove the copy-pasted gtk-doc comment
974         blocks. It's enough to have them in gspawn.c.
975
976 2002-04-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
977
978         * gthread/gthread-impl.c (g_thread_init): Fixed typo. (#78985)
979
980 2002-04-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
981
982         * glib/gthreadpool.c (g_thread_pool_thread_proxy): Unlock the pool
983         for all threads leaving it. (#78348)
984
985 2002-04-11  Matthias Clasen  <maclas@gmx.de>
986
987         * tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for
988         stuff fed to g_print.
989
990 2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
991
992         * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
993         gint. From Miroslaw Dobrzanski-Neumann
994         <mne@mosaic-ag.com>. (#77982)
995         
996 2002-04-08  Stanislav Brabec  <utx@penguin.cz> 
997
998         * cs.po: Added Czech (cs) to ALL_LINGUAS.
999
1000 2002-03-31  Hasbullah Bin Pit <sebol@ikhlas.com>
1001
1002         * configure.in: Added Malay (ms)to ALL_LINGUAS.
1003
1004 2002-03-29  Tor Lillqvist  <tml@iki.fi>
1005
1006         * glib/glib.def: Add g_convert_init.
1007
1008 Thu Mar 28 18:25:14 2002  Owen Taylor  <otaylor@redhat.com>
1009
1010         * Released 2.0.1
1011
1012         * configure.in: Version 2.0.1, interface, binary age 1.
1013
1014 Thu Mar 28 18:22:53 2002  Owen Taylor  <otaylor@redhat.com>
1015
1016         * README: Remove warning about g_print, etc, encoding.
1017
1018         * NEWS: Updates.
1019
1020         * glib/gmessages.c (g_log_default_handler): Use %lu
1021         (plus a cast) when printing out pid_t arguments.
1022         (#76770, Morten Welinder)
1023
1024         * glib/gstrfuncs.c (g_strdup_vprintf): Check the
1025         result of vasprintf(), return NULL on failure.
1026         (#76802, Akira Tagoh)
1027
1028         * tests/testglib.c (TEST): Supress a warning with
1029         some GCC versions. 
1030
1031 Thu Mar 28 20:31:51 2002  Tim Janik  <timj@gtk.org>
1032
1033         * glib/gmessages.c:
1034         (g_print): 
1035         (g_printerr): convert prtinf() strings to local charset
1036         when writing them to stdout or stderr.
1037
1038 Wed Mar 27 18:42:22 2002  Tim Janik  <timj@gtk.org>
1039
1040         * gmessages.[hc]:
1041         major cleanups. introduced _g_log_fallback_handler() to handle
1042         recursive messages which really doesn't call any GLib functions.
1043         this allowes the default handler to use normal GLib functions and
1044         also fixes user supplied log level handlers.
1045         fixed locking issues, based on a patch from Sebastian Willhelmi,
1046         attached to #74356. translate log messages from UTF-8, based
1047         on the same patch. save fatal and recursion flags across flag
1048         loop. use new integer format code from above patch.
1049         move GLib functions out of locked mutex state to avoid deadlocks.
1050         move the level prefix and filedescriptor logic into mklevel_prefix().
1051         move _g_debug_init() into a place where we can figure and handle
1052         recursion.
1053
1054 Mon Mar 25 18:13:06 2002  Owen Taylor  <otaylor@redhat.com>
1055
1056         * glib/gtypes.h (GUINT*_SWAP_LE_BE_X86): Remove __const__
1057         qualifier from __asm__ statements... GCC since at least
1058         2.96 has assumed no side effects automaticaly, and gcc-3.1
1059         will warn about this usage. (#73308, Cody Russell)
1060
1061 Fri Mar 22 17:59:27 2002  Owen Taylor  <otaylor@redhat.com>
1062
1063         * glib/gmem.c (g_mem_chunk_reset): Fix problem where
1064         if g_mem_chunk_reset() is called on an alloc-only
1065         memchunk, then a useles GTree was created.
1066
1067 Wed Mar 20 18:20:21 2002  Owen Taylor  <otaylor@redhat.com>
1068
1069         * glib/gconvert.c (open_converter): Try to work around segfaults
1070         on Solaris if NULL is passed for outbuf... supposedly gchar
1071         *outbuf = NULL... &outbuf works. (#74336, Lauri Alanko)
1072
1073 Wed Mar 20 11:17:32 2002  Owen Taylor  <otaylor@redhat.com>
1074
1075         * glib/gfileutils.c (get_contents_regfile): Close the
1076         file descriptor. (#75507, Matthias Clasen)
1077
1078 Wed Mar 20 11:00:59 2002  Owen Taylor  <otaylor@redhat.com>
1079
1080         * configure.in: Use $PKG_CONFIG, not pkg-config.
1081         (LEE Sau Dan, #75572)
1082
1083 2002-03-20  Sven Neumann  <sven@gimp.org>
1084
1085         * glib/ghash.c (g_hash_table_resize): avoid repeated call of 
1086         g_spaced_primes_closest() by moving it out of the CLAMP macro 
1087         (spotted by Salmaso Raffaele).
1088
1089 2002-03-17  Tor Lillqvist  <tml@iki.fi>
1090
1091         * README.win32: Add MSVC-specific text by Hans Breuer.
1092
1093 2002-03-16  Tor Lillqvist  <tml@iki.fi>
1094
1095         * glib/giowin32.c: Some debugging output formatting changes. The
1096         following changes fix a problem with buffered GIOChannels, noticed
1097         with the help of Owen's test program, thanks! (#59969)
1098         (g_io_win32_prepare): Return value that takes the buffer condition
1099         into account, like g_io_unix_prepare() does.
1100         (g_io_win32_check): Ditto, like g_io_unix_check().
1101         (g_io_win32_dispatch): Ditto, like g_io_unix_dispatch().
1102
1103 Thu Mar 14 17:37:45 2002  Owen Taylor  <otaylor@redhat.com>
1104
1105         * glib/giochannel.c (g_io_channel_write_chars): Fix some
1106         gsize/gint mismatches. (#74422, Miroslaw Dobrzanski-Neumann)
1107
1108 2002-03-14  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1109
1110         * glib/gmessages.c: Fixed threading issues brought up by
1111         #74577. Make g_log_find_domain, g_log_domain_new,
1112         g_log_domain_check_free and g_log_domain_get_handler require being
1113         called with g_messages_lock held and remove all internal locking
1114         in them. Then added proper locking to g_log_set_handler,
1115         g_log_remove_handler and g_logv. Problem spotted by Miroslaw
1116         Dobrzanski-Neumann <mne@mosaic-ag.com>. (#74577)
1117
1118 2002-03-13  Erwann Chenede  <erwann.chenede@sun.com>
1119         * glib/gconvert.c 
1120           glib/gen-unicode-tables.pl
1121           glib/gunidecomp.h : fixed cast/type problems to 
1122           avoid warnings (with forte compiler) (#73898)
1123         
1124 2002-03-12  Alexander Larsson  <alla@lysator.liu.se>
1125
1126         * glib/gconvert.c:
1127         Cache getenv("G_BROKEN_FILENAMES") in have_broken_filenames() and
1128         use instead. Add g_convert_init() that calls have_broken_filenames()
1129
1130         * gthread/gthread-impl.c:
1131         Have g_thread_init call g_convert_init.
1132
1133 2002-03-11  Matthias Clasen  <maclas@gmx.de>
1134
1135         * glib/gstrfuncs.c (g_strtod): 
1136         (g_ascii_strtod): 
1137         (g_ascii_dtostr): 
1138         (g_ascii_formatd): Doc formatting fixes.
1139