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