1 Mon Mar 25 18:13:06 2002 Owen Taylor <otaylor@redhat.com>
3 * glib/gtypes.h (GUINT*_SWAP_LE_BE_X86): Remove __const__
4 qualifier from __asm__ statements... GCC since at least
5 2.96 has assumed no side effects automaticaly, and gcc-3.1
6 will warn about this usage. (#73308, Cody Russell)
8 Fri Mar 22 17:59:27 2002 Owen Taylor <otaylor@redhat.com>
10 * glib/gmem.c (g_mem_chunk_reset): Fix problem where
11 if g_mem_chunk_reset() is called on an alloc-only
12 memchunk, then a useles GTree was created.
14 Wed Mar 20 18:20:21 2002 Owen Taylor <otaylor@redhat.com>
16 * glib/gconvert.c (open_converter): Try to work around segfaults
17 on Solaris if NULL is passed for outbuf... supposedly gchar
18 *outbuf = NULL... &outbuf works. (#74336, Lauri Alanko)
20 Wed Mar 20 11:17:32 2002 Owen Taylor <otaylor@redhat.com>
22 * glib/gfileutils.c (get_contents_regfile): Close the
23 file descriptor. (#75507, Matthias Clasen)
25 Wed Mar 20 11:00:59 2002 Owen Taylor <otaylor@redhat.com>
27 * configure.in: Use $PKG_CONFIG, not pkg-config.
30 2002-03-20 Sven Neumann <sven@gimp.org>
32 * glib/ghash.c (g_hash_table_resize): avoid repeated call of
33 g_spaced_primes_closest() by moving it out of the CLAMP macro
34 (spotted by Salmaso Raffaele).
36 2002-03-17 Tor Lillqvist <tml@iki.fi>
38 * README.win32: Add MSVC-specific text by Hans Breuer.
40 2002-03-16 Tor Lillqvist <tml@iki.fi>
42 * glib/giowin32.c: Some debugging output formatting changes. The
43 following changes fix a problem with buffered GIOChannels, noticed
44 with the help of Owen's test program, thanks! (#59969)
45 (g_io_win32_prepare): Return value that takes the buffer condition
46 into account, like g_io_unix_prepare() does.
47 (g_io_win32_check): Ditto, like g_io_unix_check().
48 (g_io_win32_dispatch): Ditto, like g_io_unix_dispatch().
50 Thu Mar 14 17:37:45 2002 Owen Taylor <otaylor@redhat.com>
52 * glib/giochannel.c (g_io_channel_write_chars): Fix some
53 gsize/gint mismatches. (#74422, Miroslaw Dobrzanski-Neumann)
55 2002-03-14 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
57 * glib/gmessages.c: Fixed threading issues brought up by
58 #74577. Make g_log_find_domain, g_log_domain_new,
59 g_log_domain_check_free and g_log_domain_get_handler require being
60 called with g_messages_lock held and remove all internal locking
61 in them. Then added proper locking to g_log_set_handler,
62 g_log_remove_handler and g_logv. Problem spotted by Miroslaw
63 Dobrzanski-Neumann <mne@mosaic-ag.com>. (#74577)
65 2002-03-13 Erwann Chenede <erwann.chenede@sun.com>
67 glib/gen-unicode-tables.pl
68 glib/gunidecomp.h : fixed cast/type problems to
69 avoid warnings (with forte compiler) (#73898)
71 2002-03-12 Alexander Larsson <alla@lysator.liu.se>
74 Cache getenv("G_BROKEN_FILENAMES") in have_broken_filenames() and
75 use instead. Add g_convert_init() that calls have_broken_filenames()
77 * gthread/gthread-impl.c:
78 Have g_thread_init call g_convert_init.
80 2002-03-11 Matthias Clasen <maclas@gmx.de>
82 * glib/gstrfuncs.c (g_strtod):
85 (g_ascii_formatd): Doc formatting fixes.