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