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