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