avoid creating negative values out of unsigned values using MAX, check to
[platform/upstream/glib.git] / ChangeLog.pre-2-2
1 Fri Oct 18 13:41:30 2002  Manish Singh  <yosh@gimp.org>
2
3         * glib/giochannel.c (g_io_channel_read_line_backend): avoid
4         creating negative values out of unsigned values using MAX,
5         check to see if the result would be positive before doing
6         the calculation.
7
8 Tue Oct 15 15:28:47 2002  Manish Singh  <yosh@gimp.org>
9
10         * tests/iochannel-test.c: use gsize instead of int where appropriate
11         (64-bit cleanliness fix). Removed leftover line_term cruft.
12
13 Tue Oct 15 15:07:45 2002  Manish Singh  <yosh@gimp.org>
14
15         * gmodule/Makefile.am gobject/Makefile.am gthread/Makefile.am:
16         add -DG_DISABLED_DEPRECATED
17
18         * tests/gio-test.c tests/mainloop-test.c tests/string-test.c
19         tests/testglib.c test/tree-test.c tests/unicode-collate.c
20         tests/unicode-normalize.c: Deprecation cleanup
21
22 Mon Oct 14 15:51:05 2002  Owen Taylor  <otaylor@redhat.com>
23
24         * glib/gdate.c (g_date_fill_parse_tokens): Fix a memory
25         leak. (#94550, Sebastian Rittau)
26
27 Mon Oct 14 15:36:11 2002  Owen Taylor  <otaylor@redhat.com>
28
29         * glib/gcompletion.[ch] (g_completion_complete): Make
30         prefix argument const. (#91662, Gustavo Carneiro) 
31
32 Mon Oct 14 15:32:14 2002  Owen Taylor  <otaylor@redhat.com>
33  
34         * tests/mainloop-test.c (adder_response): Fix a minor memory
35         leak.
36  
37 Sat Oct 12 21:30:41 2002  Tim Janik  <timj@gtk.org>
38
39         * merged up from glib-2-0:
40
41         * glib/gstrfuncs.c (g_ascii_strtod): fix comment.
42         (g_ascii_strtoull): new function, acting like strtoull(3) in the C
43         locale.
44
45         * glib/gscanner.[hc]: fix 32bit issues with integer parsing and
46         support storing 64bit values in GTokenValue by
47         using g_ascii_strtoull().
48
49 Sat Oct 12 12:34:22 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
50
51         * glib/gtree.c (g_tree_search), glib/gspawn.c
52         (g_spawn_async_with_pipes): 
53
54         Documentation fixes: #71778, Owen Taylor; #85095, Bill Janssen,
55         Owen Taylor. 
56
57 Thu Oct 10 23:27:02 2002  Tim Janik  <timj@gtk.org>
58
59         * glib/gscanner.c (g_scanner_msg_handler): if input_name is NULL,
60         print out "<memory>" instead of completely skipping input specification
61         and thusly loosing error line information.
62
63 Sun Sep 29 12:15:44 2002  Manish Singh  <yosh@gimp.org>
64
65         * tests/mainloop-test.c: use gsize instead of int where appropriate
66         (64-bit cleanliness fix)
67
68 2002-09-29  Tor Lillqvist  <tml@iki.fi>
69
70         * configure.in: Instead of forcing -fnative-struct into CFLAGS
71         when using gcc for Win32, check for gcc version 3.x which uses
72         -mms-bitfields instead. Also check if either of these switches is
73         actually available at all, and warn if not. Thanks to Soren
74         Andersen for the inspiration.
75
76         * HACKING: Say we require autoconf 2.52 as that is what
77         configure.in does.
78
79 2002-09-23  Arvind Samptur <arvind.samptur@wipro.com>
80         * glib/gspawn.c (fork_exec_with_pipes) : when the child fails
81         we need to reap it to avoid a zombie. This would
82         happen in case of g_spawn_sync. Fixes #92658
83
84 2002-09-20  Matthias Clasen  <maclas@gmx.de>
85
86         * glib/gscanner.c (g_scanner_msg_handler): Don't print
87         scanner->input_name when it is NULL.  (#93752)
88
89 2002-09-06  Havoc Pennington  <hp@redhat.com>
90
91         * autogen.sh: automake 1.4
92
93 2002-09-01  Soeren Sandmann  <sandmann@daimi.au.dk>
94
95         * docs/reference/glib/tmpl/datalist.sgml, glib/gmain.c:
96
97         Documentation fixes: (#75255, Martin Schulze; #76104, Daryll Strauss)
98
99 2002-08-26  Tor Lillqvist  <tml@iki.fi>
100
101         * configure.in (G_LIBS_EXTRA): Don't link with -lwsock32 on
102         Cygwin (#91696, Masahiro Sakai).
103
104 Tue Aug 20 16:01:03 2002  HideToshi Tajima  <hidetoshi.tajima@sun.com>
105
106         * glib/gconvert.c (strdup_len): validate 'len' argument properly
107         for the case that input string is not null-terminated. (#91222)
108
109 2002-08-10  Gustavo Noronha Silva  <kov@debian.org>
110
111         * configure.in: added pt_BR to ALL_LINGUAS
112
113 2002-08-07  Matthias Clasen  <maclas@gmx.de>
114
115         * glib/gmarkup.c (g_markup_parse_context_get_element): 
116         Use g_return_val_if_fail, no g_return_if_fail.
117
118 2002-08-06  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
119
120         * glib/gthread.c: Set the normal PID surrogate priority according
121         to getpid() to avoid errors for niced processes. (#86116)
122
123         * gthread/gthread-impl.c, gthread/gthread-posix.c,
124         gthread/gthread-solaris.c: Do the same for the posix/dce
125         implementation. Solaris still needs to set priority of the main
126         thread, because all unbound threads will schedule according to
127         that value and it defaults to 0 (the minimal value). 
128
129         * glib/gmain.c: Factor out g_main_context_init_pipe from
130         g_main_context_new to initialize the wakeup pipe of a
131         context. Call that function from g_main_context_new if threads are
132         initialized and for all contexts when threads are initialized
133         in g_main_thread_init. (#86872) 
134
135         * gthread/gthread-impl.c: Call g_main_thread_init. (#86872) 
136
137 Thu Jul 25 14:23:15 2002  Owen Taylor  <otaylor@redhat.com>
138
139         * glib/gfileutils.c: Clarify the behavior of g_build_path()
140         for empty elements and for leading and trailing copies
141         of the separator in the docs.
142  
143         * glib/gfileutils.c: Fix problems with leading elements
144         consisting only of "/" characters. (#85928, Guillaume Chazarain)
145  
146         * tests/strfunc-test.c (main): Add more test cases
147         for g_build_filename().
148  
149 2002-07-26  Matthias Clasen  <maclas@gmx.de>
150
151         * glib/gunicode.h: 
152         * glib/gutf8.c (g_utf8_strreverse): New function to revert
153         a utf8 string.
154         * glib/gpattern.c (g_utf8_reverse): Gone, replaced by 
155         g_utf8_strreverse.  (#87725)
156
157 Thu Jul 25 20:57:20 2002  Owen Taylor  <otaylor@redhat.com>
158
159         * glib/giochannel.c (g_io_channel_read_line): Fix 
160         docs for @str_return to conform to the main docs
161         and the implementation as to whether the terminator
162         is included. (#87964, Jacob Berkman)
163
164 Thu Jul 25 19:52:41 2002  Owen Taylor  <otaylor@redhat.com>
165
166         * glib/guniprop.c (real_tolower): Handle the 
167         end of the string properly when max_len is set.
168         (#88545, Morten Welinder.) Rename the next_t
169         variable to next_type to make cc-mode happy.
170
171         * glib/gconvert.c (g_iconv_open): Fix missing
172         label from previous commit.
173
174 Thu Jul 25 19:41:03 2002  Owen Taylor  <otaylor@redhat.com>
175
176         * glib/giochannel.c (g_io_channel_get_flags): Fix 
177         incorrect return value in g_return_val_if_fail 
178         (#85545, David L. Cooper II)
179
180 Thu Jul 25 19:12:43 2002  Owen Taylor  <otaylor@redhat.com>
181
182         * glib/giochannel.c (g_io_channel_set_encoding): Clarify
183         that only one of the conditions listed in the docs
184         need to be true, not all of them. (#87176,
185         Sebastian Rittau)
186
187         * glib/giochannel.c (g_io_channel_read_line): Fix 
188         description of the return value. (#87754, Manuel Clos)
189
190 Thu Jul 25 19:02:53 2002  Owen Taylor  <otaylor@redhat.com>
191
192         * glib/gmain.c (g_timeout_add): Remove reference
193         in the docs to @notify parameter. (#87768,
194         Manuel Clos)
195
196 Thu Jul 25 17:57:07 2002  Owen Taylor  <otaylor@redhat.com>
197
198         * glib/gconvert.c (g_iconv_open): Document the
199         (GIConv)-1 return value on failure. (#87559, 
200         Jarek Dukat)
201
202         * glib/gconvert.c (g_iconv_open): Fix potential
203         problems with the assumption that (GIConv)(iconv_t)-1
204         is the same as (GIConv)-1.
205         
206 2002-07-15  Matthias Clasen  <maclas@gmx.de>
207
208         * glib/gmarkup.h: 
209         * glib/gmarkup.c (g_markup_parse_context_get_element): New
210         function to get the currently open element.  (#70448)
211
212 2002-07-04  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
213
214         * tests/*.c: Added #undef G_DISABLE_ASSERT and #undef G_LOG_DOMAIN
215         throughout the files, which didn't already have them. (#87312)
216
217 2002-07-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
218
219         * configure.in: Made the thread flags determination tests first
220         check for the canonical form -pthread[s], then for other
221         possibilities. Also recognize some more platforms. Modeled after
222         patch from Miroslaw Dobrzanski-Neumann <mne@mosaic-ag.com>
223         (#77981).
224         
225         * configure.in: Fixed bugs in posix thread priority
226         resolution. Also added AIX priorities. Fix from
227         Laurent Vivier <Laurent.Vivier@bull.net>. (#82599)
228         
229         * gthread/gthread-solaris.c: Use thr_min_stack() instead of
230         sysconf (_SC_THREAD_STACK_MIN). if stack_size is 0 on entry to
231         g_thread_create_solaris_impl, also pass 0 to thr_create. Otherwise
232         the stack might be to small for any nontrivial thread. Discovered
233         on intel-solaris by Rajkumar Sivasamy <rajkumar.siva@wipro.com>.
234
235 2002-07-03  Anders Carlsson  <andersca@gnu.org>
236
237         * configure.in: Add a forgotten trailing ` in the 
238         GLIB_BINARY_AGE expression. Also fixup LT_CURRENT.
239
240 2002-07-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
241
242         * configure.in: Set binary age to 0 to make it compile.
243
244         * configure.in: Improve checks for dce/posix threads to also do
245         the right thing, if the thread functions are not declared in
246         pthread.h. Idea from Miroslaw Dobrzanski-Neumann
247         <mne@mosaic-ag.com> in #77981.
248
249 2002-07-01  Anders Carlsson  <andersca@gnu.org>
250
251         * configure.in: Up version to 2.1.0.
252
253 2002-07-01  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
254
255         * glib/garray.h: Add parenthesis to protect macro
256         argument. Spotted by Sam Couter <sam@topic.com.au>. (#86826)
257
258 2002-06-28  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
259
260         * glib/gmessages.h (g_assert, g_assert_not_reached,
261         g_return_if_fail, g_return_val_if_fail): In case of
262         G_DISABLE_ASSERT replace "G_STMT_START{ }G_STMT_END" with
263         "G_STMT_START{ (void)0; }G_STMT_END", because the former chokes
264         gcc prior to 3.0. (#86664)
265
266 2002-06-26  Yanko Kaneti <yaneti@declera.com>
267
268         * configure.in: (ALL_LINGUAS) Added Bulgarian (bg).
269
270 Thu Jun 13 16:12:04 2002  Owen Taylor  <otaylor@redhat.com>
271
272         * glib/gmain.c (struct _GTimeoutSource): Make 
273         interval unsigned to match g_timeout_source_new().
274         (#82624, Tim Janik.)
275
276         * glib/gmain.c (g_timeout_prepare): Add some
277         extra gymnastics to avoid signed/unisgned integer
278         overflows.
279
280 Thu Jun 13 15:57:46 2002  Owen Taylor  <otaylor@redhat.com>
281
282         * INSTALL.in: Add a note about the deficiency
283         of Tru64 iconv. (#81699, Manuel Op de Coul)
284
285 Tue Jun 11 17:03:39 2002  Owen Taylor  <otaylor@redhat.com>
286
287         * tests/patterntest.c (test_compilation)
288         * glib/gmem.c (profiler_try_realloc): A couple
289         of 64-bit printf format fix from George Lebl.
290         (#82817)
291
292         * glib/gconvert.c (open_converter): Fix gsize/gint
293         mixup for g_iconv() arguments. (#83270,
294         David L. Cooper II)
295
296 2002-06-03  Matthias Clasen  <maclas@gmx.de>
297
298         * glib/gwin32.c (g_win32_get_package_installation_directory):
299         Replace homegrown "hash" entity by standard ISO entity "num".
300
301 2002-05-26  Matthias Clasen  <maclas@gmx.de>
302
303         * glib/gmain.c: Remove references to nonexisting functions 
304         g_source_set_callback_closure(), g_source_poll(), g_source_add()
305         from docs.
306
307         * glib/gdir.c (g_dir_open): Typo fix in docs.
308
309         * glib/gasyncqueue.c (g_async_queue_lock):
310         (g_async_queue_unref_and_unlock): Fix markup to avoid erroneous 
311         <link>s in docs.
312
313         * glib/gwin32.c: Escape #'s leading to erroneous <link>s in docs.
314
315         * glib/gtree.c: Replace some occurances of Gtree by GTree in docs.
316
317         * glib/gstring.c (g_string_insert_unichar): Typo fix in docs.
318
319 2002-05-23  Havoc Pennington  <hp@redhat.com>
320
321         * glib/gspawn.c (fork_exec_with_pipes): on success, close the
322         pipes from the child. Fix from Tim.
323
324 2002-05-22  jacob berkman  <jacob@ximian.com>
325
326         * m4macros/glib-gettext.m4 (AM_GLIB_WITH_NLS): fix tyop
327
328 Wed May 22 15:40:47 2002  Owen Taylor  <otaylor@redhat.com>
329
330         * README.in: Remove notes about now-fixed-bugs.
331
332         * m4macros/glib-gettext.m4 acinclude.m4: Get rid
333         of AC_MSG_NOTICE() usage, since some broken systems
334         (Hi Debian!) might not be using autoconf-2.5x for
335         downstream packages even though we require it for
336         glib itself.
337
338         * INSTALL.in: Add a note about installing extra
339         converters for Solaris.
340
341         * glib/gutils.h (g_bit_nth_msf): Fix termination
342         condition. (#82582, Paolo Molaro)
343  
344 Tue May 21 15:51:17 2002  Owen Taylor  <otaylor@redhat.com>
345
346         * configure.in: $with_libiconv, not $with_iconv.
347
348 Mon May 20 18:02:46 2002  Owen Taylor  <otaylor@redhat.com>
349
350         * configure.in: Move iconv tests before gettext
351         checks. (#81999)
352
353         * m4macros/glib-gettext.m4 acinclude.m4: If we can't
354         link to gettext, try adding in -liconv. (#80076,
355         Boyd Lynn Gerber)
356
357         * m4macros/glib-gettext.m4 acinclude.m4: Suppress
358         warnings about xgettext not being GNU gettext when
359         libintl wasn't found at all. 
360         (#79016, Andrew P. Lentvorski, Jr.)
361          
362 2002-05-21  Matthias Clasen  <maclas@gmx.de>
363
364         * glib/gmarkup.c (g_markup_parse_context_parse): Added
365         proper support for CDATA sections.
366
367 2002-05-20  jacob berkman  <jacob@ximian.com>
368
369         * glib/gdir.c: include sys/types.h before dirent.h to build on
370         darwin (fixes #72859)
371
372 Mon May 20 15:35:59 2002  Owen Taylor  <otaylor@redhat.com>
373  
374         * glib/gfileutils.c (get_contents_regfile): Fix double
375         close of file descriptor on error. (#82139, Wayne Schuller)
376  
377         * glib/gspawn.c (close_and_invalidate): Don't close
378         fd's that have already been closed. (Fix from Michael
379         Meeks, #81959)
380  
381         * glib/giochannel.c (g_io_channel_close): If not flushing,
382         dump the contents of the write buffers, so we won't try
383         to write them to an invalid fd later. (Patch from Ron Steinke,
384         fixing #78290, Andreas Persenius.)
385  
386 2002-05-18  Matthias Clasen  <maclas@gmx.de>
387
388         * tests/markups/fail-36.gmarkup: 
389         * tests/markups/fail-35.gmarkup: 
390         * tests/markups/valid-8.gmarkup: 
391         * tests/markups/valid-7.gmarkup: 
392         * tests/markups/valid-6.gmarkup: 
393         * tests/markups/valid-5.gmarkup: New testcases.
394
395         * tests/markup-test.c (passthrough_handler): 
396         (text_handler): Don't ignore the text_len parameter.
397
398         * glib/gmarkup.c (find_current_text_end): Don't hang on embedded
399         nuls.  (#81977)
400         (g_markup_parse_context_parse): Fix passthrough handling to
401         correctly skip processing instructions, comments, doctype
402         declarations and CDATA marked sections.  (#81977)
403
404 Sat May 18 00:21:51 2002  Tim Janik  <timj@gtk.org>
405
406         [merged from stable]
407
408         * glib/gscanner.c (g_scanner_unexp_token): fix missing cases for
409         expected_token.
410
411 2002-05-17  Tor Lillqvist  <tml@iki.fi>
412
413         * config.h.win32.in: Match new additions in a configure-produced
414         config.h.
415
416         * glibconfig.h.win32.in: gssize and gsize as in a
417         configure-produced glibconfig.h.
418
419         * glib/glib.def: Add new functions.
420
421 Thu May 16 12:24:00 2002  Owen Taylor  <otaylor@redhat.com>
422  
423         * acinclude.m4 m4macros/glib-gettext.m4: Incorporate 
424         AM_LC_MESSAGES, AM_PATH_PROG_WITH_TEST as AM_GLIB_* to avoid 
425         dependencies on gettext m4 files. (#81885, Hidetoshi Tajima.)
426         
427 2002-05-14  Alex Larsson <alexl@redhat.com>
428         
429         * glib/gstrfuncs.c: 
430         * glib/gstrfuncs.h:
431         New functions g_str_has_suffix and g_str_has_prefix.
432         
433         * tests/string-test.c: (main):
434         Test the new functions.
435
436 Mon May 13 23:20:00 2002  Owen Taylor  <otaylor@redhat.com>
437
438         * autogen.sh (have_gettext): Add a check for GNU gettext.
439         (Pointed out by Dan Winship in #59386.)
440
441 Mon May 13 11:55:33 2002  Owen Taylor  <otaylor@redhat.com>
442
443         * configure.in acglib.m4: If sizeof(int) == sizeof(long)
444         run compilation tests to determine which way gsize should
445         be defined. (#74413, reported by Miroslaw Dobrzanski-Neumann)
446
447 Mon May 13 11:42:23 2002  Owen Taylor  <otaylor@redhat.com>
448  
449         * glib/libcharset/*: Update from libcharset CVS.
450         Includes additional encodings for Solaris (#80396,
451         Qingjiang Yuan)
452  
453         * configure.in: Add getc_unlocked to CHECK_FUNCS().
454  
455         * glib/gmessages.c (strdup_convert): If
456         g_convert_with_fallback() fails, print the error
457         message to stderr the first time, then return
458         the original string. (#78197)
459  
460 2002-05-10  Naba Kumar  <kh_naba@users.sourceforge.net>
461
462         * configure.in: Added "hi" to ALL_LINGUAS.
463
464 2002-05-08  Michael Natterer  <mitch@gimp.org>
465
466         * configure.in: fixed yesterdays fix for cross compiling: simply
467         check the variable "cross_compiling" which gets set by autoconf.
468
469 2002-05-07  Matthias Clasen  <maclas@gmx.de>
470
471         * glib/gmarkup.c (unescape_text): Report unfinished entity
472         references as errors rather than running into an assert.  (#80441)
473
474 2002-05-07  Michael Natterer  <mitch@gimp.org>
475
476         * configure.in: added a new conditional CROSS_COMPILING which
477         indicates ($build != $host). If it is set, look for
478         glib-genmarshal in PATH. Error out if it was not found.
479
480 Tue May  7 11:24:22 2002  Owen Taylor  <otaylor@redhat.com>
481
482         Fixes for #79347, Ron Arts.
483
484         * glib/gqsort.c (g_qsort_with_data): Handle 0 elements,
485         don't g_return_if_fail().
486
487         * tests/qsort-test.c (main): Add a 0 element test.
488
489         * glib/garray.c (g_[ptr_]array_sort_with[_data]): 
490         Remove invalid assertions that array->pdata != NULL ..
491         it's NULL for 0 elements which is a valid case.
492
493 Mon May  6 16:00:41 2002  Owen Taylor  <otaylor@redhat.com>
494
495         * glib/gbacktrace.h: Exclude OSF from alpha definition
496         of G_BREAKPOINT(), since the assembler apparently
497         doesn't support bpt. (#77852, Gareth Pierce) [from stable]
498
499 Mon May  6 11:48:08 2002  Owen Taylor  <otaylor@redhat.com>
500
501         [ merged from stable ]
502  
503         * Makefile.am (EXTRA_DIST): Add ChangeLog.pre-2-0 (#78641)
504  
505         * m4macros/glib-2.0.m4: save CFLAGS/LIBS properly when
506         compiling "what went wrong" test case. (#79330)
507  
508         * m4macros/glib-2.0.m4: Remove reference to editing
509         pkg-config script. (From Jim Gettys)
510  
511         * configure.in: (Look for dyld interfaces before dlopen()
512         since OS X can have both. Patch from Jacob Berkman, 
513         #80438)
514         
515 2002-05-01  jacob berkman  <jacob@ximian.com>
516
517         * configure.in: fix typo on 64-bit printf formatting string
518         configure message (fixes #80389)
519
520 2002-04-29  Pablo Saratxaga  <pablo@mandrakesoft.com>
521
522         * configure.in: Added Vietnamese (vi) to ALL_LINGUAS
523
524 2002-04-19  Tor Lillqvist  <tml@iki.fi>
525
526         * glib/gspawn.c (g_spawn_command_line_sync): Add Windows-specific
527         note to the gtk-doc comment.
528
529         * glib/gspawn-win32.c: Remove the copy-pasted gtk-doc comment
530         blocks. It's enough to have them in gspawn.c.
531
532 2002-04-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
533
534         * gthread/gthread-impl.c (g_thread_init): Fixed typo. (#78985)
535
536 2002-04-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
537
538         * glib/gthreadpool.c (g_thread_pool_thread_proxy): Unlock the pool
539         for all threads leaving it. (#78348)
540
541 2002-04-11  Matthias Clasen  <maclas@gmx.de>
542
543         * tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for
544         stuff fed to g_print.
545
546 2002-04-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
547
548         * tests/gio-test.c, tests/markup-test.c: Use gsize instead of
549         gint. From Miroslaw Dobrzanski-Neumann
550         <mne@mosaic-ag.com>. (#77982)
551         
552 2002-04-08  Stanislav Brabec  <utx@penguin.cz> 
553
554         * cs.po: Added Czech (cs) to ALL_LINGUAS.
555
556 2002-03-31  Hasbullah Bin Pit <sebol@ikhlas.com>
557
558         * configure.in: Added Malay (ms)to ALL_LINGUAS.
559
560 2002-03-29  Tor Lillqvist  <tml@iki.fi>
561
562         * glib/glib.def: Add g_convert_init.
563
564 Thu Mar 28 18:25:14 2002  Owen Taylor  <otaylor@redhat.com>
565
566         * Released 2.0.1
567
568         * configure.in: Version 2.0.1, interface, binary age 1.
569
570 Thu Mar 28 18:22:53 2002  Owen Taylor  <otaylor@redhat.com>
571
572         * README: Remove warning about g_print, etc, encoding.
573
574         * NEWS: Updates.
575
576         * glib/gmessages.c (g_log_default_handler): Use %lu
577         (plus a cast) when printing out pid_t arguments.
578         (#76770, Morten Welinder)
579
580         * glib/gstrfuncs.c (g_strdup_vprintf): Check the
581         result of vasprintf(), return NULL on failure.
582         (#76802, Akira Tagoh)
583
584         * tests/testglib.c (TEST): Supress a warning with
585         some GCC versions. 
586
587 Thu Mar 28 20:31:51 2002  Tim Janik  <timj@gtk.org>
588
589         * glib/gmessages.c:
590         (g_print): 
591         (g_printerr): convert prtinf() strings to local charset
592         when writing them to stdout or stderr.
593
594 Wed Mar 27 18:42:22 2002  Tim Janik  <timj@gtk.org>
595
596         * gmessages.[hc]:
597         major cleanups. introduced _g_log_fallback_handler() to handle
598         recursive messages which really doesn't call any GLib functions.
599         this allowes the default handler to use normal GLib functions and
600         also fixes user supplied log level handlers.
601         fixed locking issues, based on a patch from Sebastian Willhelmi,
602         attached to #74356. translate log messages from UTF-8, based
603         on the same patch. save fatal and recursion flags across flag
604         loop. use new integer format code from above patch.
605         move GLib functions out of locked mutex state to avoid deadlocks.
606         move the level prefix and filedescriptor logic into mklevel_prefix().
607         move _g_debug_init() into a place where we can figure and handle
608         recursion.
609
610 Mon Mar 25 18:13:06 2002  Owen Taylor  <otaylor@redhat.com>
611
612         * glib/gtypes.h (GUINT*_SWAP_LE_BE_X86): Remove __const__
613         qualifier from __asm__ statements... GCC since at least
614         2.96 has assumed no side effects automaticaly, and gcc-3.1
615         will warn about this usage. (#73308, Cody Russell)
616
617 Fri Mar 22 17:59:27 2002  Owen Taylor  <otaylor@redhat.com>
618
619         * glib/gmem.c (g_mem_chunk_reset): Fix problem where
620         if g_mem_chunk_reset() is called on an alloc-only
621         memchunk, then a useles GTree was created.
622
623 Wed Mar 20 18:20:21 2002  Owen Taylor  <otaylor@redhat.com>
624
625         * glib/gconvert.c (open_converter): Try to work around segfaults
626         on Solaris if NULL is passed for outbuf... supposedly gchar
627         *outbuf = NULL... &outbuf works. (#74336, Lauri Alanko)
628
629 Wed Mar 20 11:17:32 2002  Owen Taylor  <otaylor@redhat.com>
630
631         * glib/gfileutils.c (get_contents_regfile): Close the
632         file descriptor. (#75507, Matthias Clasen)
633
634 Wed Mar 20 11:00:59 2002  Owen Taylor  <otaylor@redhat.com>
635
636         * configure.in: Use $PKG_CONFIG, not pkg-config.
637         (LEE Sau Dan, #75572)
638
639 2002-03-20  Sven Neumann  <sven@gimp.org>
640
641         * glib/ghash.c (g_hash_table_resize): avoid repeated call of 
642         g_spaced_primes_closest() by moving it out of the CLAMP macro 
643         (spotted by Salmaso Raffaele).
644
645 2002-03-17  Tor Lillqvist  <tml@iki.fi>
646
647         * README.win32: Add MSVC-specific text by Hans Breuer.
648
649 2002-03-16  Tor Lillqvist  <tml@iki.fi>
650
651         * glib/giowin32.c: Some debugging output formatting changes. The
652         following changes fix a problem with buffered GIOChannels, noticed
653         with the help of Owen's test program, thanks! (#59969)
654         (g_io_win32_prepare): Return value that takes the buffer condition
655         into account, like g_io_unix_prepare() does.
656         (g_io_win32_check): Ditto, like g_io_unix_check().
657         (g_io_win32_dispatch): Ditto, like g_io_unix_dispatch().
658
659 Thu Mar 14 17:37:45 2002  Owen Taylor  <otaylor@redhat.com>
660
661         * glib/giochannel.c (g_io_channel_write_chars): Fix some
662         gsize/gint mismatches. (#74422, Miroslaw Dobrzanski-Neumann)
663
664 2002-03-14  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
665
666         * glib/gmessages.c: Fixed threading issues brought up by
667         #74577. Make g_log_find_domain, g_log_domain_new,
668         g_log_domain_check_free and g_log_domain_get_handler require being
669         called with g_messages_lock held and remove all internal locking
670         in them. Then added proper locking to g_log_set_handler,
671         g_log_remove_handler and g_logv. Problem spotted by Miroslaw
672         Dobrzanski-Neumann <mne@mosaic-ag.com>. (#74577)
673
674 2002-03-13  Erwann Chenede  <erwann.chenede@sun.com>
675         * glib/gconvert.c 
676           glib/gen-unicode-tables.pl
677           glib/gunidecomp.h : fixed cast/type problems to 
678           avoid warnings (with forte compiler) (#73898)
679         
680 2002-03-12  Alexander Larsson  <alla@lysator.liu.se>
681
682         * glib/gconvert.c:
683         Cache getenv("G_BROKEN_FILENAMES") in have_broken_filenames() and
684         use instead. Add g_convert_init() that calls have_broken_filenames()
685
686         * gthread/gthread-impl.c:
687         Have g_thread_init call g_convert_init.
688
689 2002-03-11  Matthias Clasen  <maclas@gmx.de>
690
691         * glib/gstrfuncs.c (g_strtod): 
692         (g_ascii_strtod): 
693         (g_ascii_dtostr): 
694         (g_ascii_formatd): Doc formatting fixes.
695