Don't set on Win32, only causes trouble.
[platform/upstream/glib.git] / ChangeLog.pre-2-8
index 646aeaa..ed112c0 100644 (file)
@@ -1,3 +1,119 @@
+2002-10-27  Tor Lillqvist  <tml@iki.fi>
+
+       * configure.in (G_MODULE_LDFLAGS): Don't set on Win32, only causes
+       trouble.
+       
+       * glib/gmain.c (g_poll): Fix for bug reported by Herman Bloggs
+       (http://mail.gnome.org/archives/gtk-devel-list/2002-October/msg00101.html)
+       and others. We waited for events only for GPollFDs whose events
+       field had G_IO_IN set. We need to wait also for events for
+       GPollFDs that have just G_IO_OUT set. Non-blocking sockets in the
+       process of being connect()ed are one such case. Also silence a
+       couple of gcc warnings.
+
+Fri Oct 18 13:41:30 2002  Manish Singh  <yosh@gimp.org>
+
+       * glib/giochannel.c (g_io_channel_read_line_backend): avoid
+       creating negative values out of unsigned values using MAX,
+       check to see if the result would be positive before doing
+       the calculation.
+
+Tue Oct 15 15:28:47 2002  Manish Singh  <yosh@gimp.org>
+
+       * tests/iochannel-test.c: use gsize instead of int where appropriate
+        (64-bit cleanliness fix). Removed leftover line_term cruft.
+
+Tue Oct 15 15:07:45 2002  Manish Singh  <yosh@gimp.org>
+
+       * gmodule/Makefile.am gobject/Makefile.am gthread/Makefile.am:
+       add -DG_DISABLED_DEPRECATED
+
+       * tests/gio-test.c tests/mainloop-test.c tests/string-test.c
+       tests/testglib.c test/tree-test.c tests/unicode-collate.c
+       tests/unicode-normalize.c: Deprecation cleanup
+
+Mon Oct 14 15:51:05 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gdate.c (g_date_fill_parse_tokens): Fix a memory
+       leak. (#94550, Sebastian Rittau)
+
+Mon Oct 14 15:36:11 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * glib/gcompletion.[ch] (g_completion_complete): Make
+       prefix argument const. (#91662, Gustavo Carneiro) 
+
+Mon Oct 14 15:32:14 2002  Owen Taylor  <otaylor@redhat.com>
+       * tests/mainloop-test.c (adder_response): Fix a minor memory
+       leak.
+Sat Oct 12 21:30:41 2002  Tim Janik  <timj@gtk.org>
+
+       * merged up from glib-2-0:
+
+        * glib/gstrfuncs.c (g_ascii_strtod): fix comment.
+        (g_ascii_strtoull): new function, acting like strtoull(3) in the C
+        locale.
+
+        * glib/gscanner.[hc]: fix 32bit issues with integer parsing and
+        support storing 64bit values in GTokenValue by
+        using g_ascii_strtoull().
+
+Sat Oct 12 12:34:22 2002  Soeren Sandmann  <sandmann@daimi.au.dk>
+
+       * glib/gtree.c (g_tree_search), glib/gspawn.c
+       (g_spawn_async_with_pipes): 
+
+       Documentation fixes: #71778, Owen Taylor; #85095, Bill Janssen,
+       Owen Taylor. 
+
+Thu Oct 10 23:27:02 2002  Tim Janik  <timj@gtk.org>
+
+        * glib/gscanner.c (g_scanner_msg_handler): if input_name is NULL,
+        print out "<memory>" instead of completely skipping input specification
+        and thusly loosing error line information.
+
+Sun Sep 29 12:15:44 2002  Manish Singh  <yosh@gimp.org>
+
+       * tests/mainloop-test.c: use gsize instead of int where appropriate
+       (64-bit cleanliness fix)
+
+2002-09-29  Tor Lillqvist  <tml@iki.fi>
+
+       * configure.in: Instead of forcing -fnative-struct into CFLAGS
+       when using gcc for Win32, check for gcc version 3.x which uses
+       -mms-bitfields instead. Also check if either of these switches is
+       actually available at all, and warn if not. Thanks to Soren
+       Andersen for the inspiration.
+
+       * HACKING: Say we require autoconf 2.52 as that is what
+       configure.in does.
+
+2002-09-23  Arvind Samptur <arvind.samptur@wipro.com>
+       * glib/gspawn.c (fork_exec_with_pipes) : when the child fails
+       we need to reap it to avoid a zombie. This would
+       happen in case of g_spawn_sync. Fixes #92658
+
+2002-09-20  Matthias Clasen  <maclas@gmx.de>
+
+       * glib/gscanner.c (g_scanner_msg_handler): Don't print
+       scanner->input_name when it is NULL.  (#93752)
+
+2002-09-06  Havoc Pennington  <hp@redhat.com>
+
+       * autogen.sh: automake 1.4
+
+2002-09-01  Soeren Sandmann  <sandmann@daimi.au.dk>
+
+       * docs/reference/glib/tmpl/datalist.sgml, glib/gmain.c:
+
+       Documentation fixes: (#75255, Martin Schulze; #76104, Daryll Strauss)
+
+2002-08-26  Tor Lillqvist  <tml@iki.fi>
+
+       * configure.in (G_LIBS_EXTRA): Don't link with -lwsock32 on
+       Cygwin (#91696, Masahiro Sakai).
+
 Tue Aug 20 16:01:03 2002  HideToshi Tajima  <hidetoshi.tajima@sun.com>
 
        * glib/gconvert.c (strdup_len): validate 'len' argument properly