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