Matthias Clasen [Thu, 6 Mar 2003 22:41:03 +0000 (22:41 +0000)]
Fix FALSE/NULL confusion. (#107646, Morten Welinder)
2003-03-06 Matthias Clasen <maclas@gmx.de>
* glib/gmain.c (g_main_context_find_source_by_id):
(g_main_context_find_source_by_funcs_user_data): Fix FALSE/NULL
confusion. (#107646, Morten Welinder)
James Henstridge [Tue, 4 Mar 2003 10:10:48 +0000 (10:10 +0000)]
require automake 1.7. Add calls to libtoolize and gtkdocize. Clean up some
2003-03-01 James Henstridge <james@daa.com.au>
* autogen.sh: require automake 1.7. Add calls to libtoolize and
gtkdocize. Clean up some of the error messages.
* configure.in: move version declaration to the top of the file
(before AC_INIT), using M4 macros.
GLIB_AC_DIVERT_BEFORE_HELP() calls no longer necessary, due to use
of M4 macro expansion in help messages instead.
Convert AC_ARG_WITH/AC_ARG_ENABLE calls to use AC_HELP_STRING to
format help strings. Use quadrigraphs to get square brackets to
show correctly.
Replace gtk-doc checks with a call to GTK_DOC_CHECK() macro.
Use AC_CONFIG_COMMANDS([glibconfig.h], ...) to output
glibconfig.h, so that "./config.status glibconfig.h" works.
Add an extra AC_CONFIG_FILES call listing other files we want
generated by config.status protected by an "if false" block. This
way automake generates the rules needed to rebuild the files for
us.
Add quotes in various places.
* docs/reference/*/Makefile.am: convert to use the common
gtk-doc.make file. This localises the complexity to a single
makefile fragment maintained with gtk-doc itself.
* */Makefile.am: remove unneeded rules to build win32 files with
config.status. Automake now does this for us.
Replace instances of @FOO@ with $(FOO) where appropriate -- this
allows automake to do a better job checking the makefile.
Add some files to DISTCLEANFILES where appropriate
* Makefile.am: use the DISTCHECK_CONFIGURE_FLAGS variable to
ensure that --enable-gtk-doc is passed to configure during a
distcheck. Remove the custom distcheck, since the standard one
will now do.
* gobject/Makefile.am: switch to BUILT_SOURCES, since that now
works.
Matthias Clasen [Wed, 26 Feb 2003 00:12:42 +0000 (00:12 +0000)]
Use g_strndup, not g_strdup, since we know the length in advance.
2003-02-26 Matthias Clasen <maclas@gmx.de>
* glib/gstrfuncs.c (g_strdup_vprintf): Use g_strndup, not
g_strdup, since we know the length in advance.
Matthias Clasen [Tue, 25 Feb 2003 23:20:16 +0000 (23:20 +0000)]
Use g_malloc instead of directly using malloc.
2003-02-26 Matthias Clasen <maclas@gmx.de>
* glib/gunidecomp.c (g_unicode_canonical_decomposition): Use
g_malloc instead of directly using malloc.
Tor Lillqvist [Tue, 25 Feb 2003 21:19:05 +0000 (21:19 +0000)]
Add a couple of missing entries, thanks to Cedric Gustin. Thread
2003-02-25 Tor Lillqvist <tml@iki.fi>
* glib/glib.def: Add a couple of missing entries, thanks to Cedric
Gustin. Thread initialization function changes according to
Sebastian Wilhelmi's changes below (2003-02-14).
Roozbeh Pournader [Mon, 24 Feb 2003 09:57:04 +0000 (09:57 +0000)]
Updated Persian translation.
2003-02-24 Roozbeh Pournader <roozbeh@sharif.edu>
* fa.po: Updated Persian translation.
Matthias Clasen [Sun, 23 Feb 2003 22:55:47 +0000 (22:55 +0000)]
Clarify documentation.
2003-02-24 Matthias Clasen <maclas@gmx.de>
* glib/gdir.c (g_dir_read_name): Clarify documentation.
Metin Amiroff [Fri, 21 Feb 2003 09:47:06 +0000 (09:47 +0000)]
Updated Azerbaijani translation.
2003-02-21 Metin Amiroff <metin@karegen.com>
* az.po: Updated Azerbaijani translation.
Sebastian Wilhelmi [Tue, 18 Feb 2003 14:00:16 +0000 (14:00 +0000)]
Make glib_thread_test not unnecessarily convert between int and void*.
2003-02-18 Sebastian Wilhelmi <seppi@seppi.de>
* configure.in: Make glib_thread_test not unnecessarily convert
between int and void*. (#106278). Let main return int.
* configure.in: Add an argument to specify the default thread
attribute to glib_thread_test. Disappeared somewhere between 2.0
and 2.2.
Tim Janik [Mon, 17 Feb 2003 20:17:17 +0000 (20:17 +0000)]
don't assert the types passed in to have value tables. this prevents
Mon Feb 17 20:59:47 2003 Tim Janik <timj@gtk.org>
* gvalue.c (g_value_register_transform_func): don't assert the types
passed in to have value tables. this prevents dynamic types from
registering transform functions.
Sebastian Wilhelmi [Fri, 14 Feb 2003 15:08:46 +0000 (15:08 +0000)]
Fixes for #101264 and #99372:
2003-02-14 Sebastian Wilhelmi <seppi@seppi.de>
Fixes for #101264 and #99372:
* glib/gconvert.h, glib/gmain.c, glib/gmem.c, glib/gmessages.c,
glib/grand.c: Include gthreadinit.h and rename the thread
initialization functions a bit and let them start with _, so that
later we can stop exporting them.
* glib/gmem.c, glib/gmessages.c: Move the g_private_new() calls to
new functions. They have to be called after setting
g_threads_got_initialized to TRUE (see #101264).
* glib/gthread.c: Include gthreadinit.h. Renamed g_mutex_init() to
g_thread_init_glib(). Call the thread initialization functions
(which are not allowed to call g_private_new), then set
g_threads_got_initialized to TRUE, then call the other thread
initialization functions (which must not call anything but
g_private_new()).
* glib/gthreadinit.h: New private header to cleanly declare all
thread initialization functions.
* gthread/gthread-impl.c: Include gthreadinit.h. In
g_thread_init() just call g_thread_init_glib(), which in turn calls the
other functions (see #99372).
* glib/Makefile.am: Added gthreadinit.h.
Sebastian Wilhelmi [Wed, 12 Feb 2003 13:01:35 +0000 (13:01 +0000)]
Make GLib recognize Tru64Unix thread system. (#103020)
2003-02-12 Sebastian Wilhelmi <seppi@seppi.de>
* configure.in: Make GLib recognize Tru64Unix thread system. (#103020)
Tor Lillqvist [Tue, 11 Feb 2003 18:02:53 +0000 (18:02 +0000)]
Include ChangeLog.pre-2-2.
2003-02-11 Tor Lillqvist <tml@iki.fi>
* Makefile.am (EXTRA_DIST): Include ChangeLog.pre-2-2.
Tor Lillqvist [Tue, 11 Feb 2003 17:59:04 +0000 (17:59 +0000)]
Include also the gtk-doc/html documentation in the developer package.
2003-02-11 Tor Lillqvist <tml@iki.fi>
* glib-zip.in: Include also the gtk-doc/html documentation in the
developer package.
* README.win32: Updates.
Sebastian Wilhelmi [Tue, 11 Feb 2003 10:13:49 +0000 (10:13 +0000)]
Changed my e-mail address. Removed my e-mail address.
2003-02-11 Sebastian Wilhelmi <seppi@seppi.de>
* AUTHORS: Changed my e-mail address.
* glib/grand.c: Removed my e-mail address.
Matthias Clasen [Mon, 10 Feb 2003 23:56:45 +0000 (23:56 +0000)]
Fix an off-by-one error in the g_strescape() docs. (#105431, Phillip
2003-02-11 Matthias Clasen <maclas@gmx.de>
* glib/tmpl/string_utils.sgml: Fix an off-by-one error in the
g_strescape() docs. (#105431, Phillip Vandry)
Fatih Demir [Mon, 10 Feb 2003 23:43:22 +0000 (23:43 +0000)]
Take over
Mohammad DAMT [Mon, 10 Feb 2003 08:01:42 +0000 (08:01 +0000)]
Added Indonesian translation Added "id" to ALL_LINGUAS
2003-02-10 Mohammad DAMT <mdamt@bisnisweb.com>
* po/id.po: Added Indonesian translation
* configure.in: Added "id" to ALL_LINGUAS
Soeren Sandmann [Sun, 9 Feb 2003 12:40:53 +0000 (12:40 +0000)]
remove lookup of unused BoxedNode.
Sun Feb 9 13:44:01 2003 Soeren Sandmann <sandmann@daimi.au.dk>
* gboxed.c (boxed_proxy_value_init): remove lookup of unused
BoxedNode.
Matthias Clasen [Fri, 7 Feb 2003 22:08:53 +0000 (22:08 +0000)]
Move all docs out-of-line. Boy, what a waste of time.
2003-02-07 Matthias Clasen <maclas@gmx.de>
* gobject/tmpl/gtypemodule.sgml:
* gobject/tmpl/gtype.sgml:
* gobject/tmpl/gclosure.sgml:
* gobject/tmpl/param_value_types.sgml:
* gobject/tmpl/gparamspec.sgml:
* gobject/tmpl/objects.sgml:
* gobject/tmpl/signals.sgml: Move all docs out-of-line. Boy, what
a waste of time.
Matthias Clasen [Fri, 7 Feb 2003 22:04:24 +0000 (22:04 +0000)]
Remove all docs from gobject at Tims request. Documentation is only for
2003-02-07 Matthias Clasen <maclas@gmx.de>
* gtypemodule.c:
* gtype.c:
* gsourceclosure.c:
* gparamspecs.c:
* gparam.c:
* gobject.c:
* gsignal.c: Remove all docs from gobject at Tims
request. Documentation is only for weenies anyway...
Matthias Clasen [Thu, 6 Feb 2003 19:57:14 +0000 (19:57 +0000)]
Fix a bunch of typos in header comments. (#102422, Morten Welinder)
2003-02-06 Matthias Clasen <maclas@gmx.de>
* glib/gmessages.h:
* glib/gmem.h:
* glib/ghash.h:
* glib/gasyncqueue.h:
* glib/garray.h:
* glib/ghook.h:
* glib/gtypes.h: Fix a bunch of typos in header comments.
(#102422, Morten Welinder)
Tor Lillqvist [Tue, 4 Feb 2003 23:37:04 +0000 (23:37 +0000)]
Fix typo: Should be SOCKET_ERROR, not SO_ERROR. Noticed by Daniel
2003-02-04 Tor Lillqvist <tml@iki.fi>
* glib/giowin32.c (g_io_channel_unix_new): Fix typo: Should be
SOCKET_ERROR, not SO_ERROR. Noticed by Daniel Kaufmann.
Merge from stable branch:
Fix for bug #104014, reported by Alex Shaduri:
* glib/gspawn-win32.c (protect_argv): New function. Add
double-quotes around argv elements that need it, and escape
embedded double-quotes with backslash.
(do_spawn_with_pipes) Call protect_argv().
* glib/gspawn-win32-helper.c (WinMain): Call protect_argv().
* glib/gspawn.c (g_spawn_async_with_pipes): Document argument
vector vs. command line details on Win32.
(g_spawn_command_line_sync): Improve documentation about
backslashes in the command line on Windows.
Owen Taylor [Thu, 30 Jan 2003 21:47:23 +0000 (21:47 +0000)]
Remove references to glib.spec. (#102231)
Thu Jan 30 16:45:13 2003 Owen Taylor <otaylor@redhat.com>
* Makefile.am: Remove references to glib.spec.
(#102231)
* configure.in: Don't generate glib.spec.
Tõivo Leedjärv [Wed, 29 Jan 2003 11:14:42 +0000 (11:14 +0000)]
Fixed a small bug in Estonian translation.
2003-01-29 Tõivo Leedjärv <toivo@linux.ee>
* et.po: Fixed a small bug in Estonian translation.
Owen Taylor [Tue, 28 Jan 2003 21:13:43 +0000 (21:13 +0000)]
If msgfmt isn't found, unset gt_cv_have_gettext. (#102552, Tim Mooney)
Tue Jan 28 16:08:56 2003 Owen Taylor <otaylor@redhat.com>
* m4macros/glib-gettext.m4: If msgfmt isn't found,
unset gt_cv_have_gettext. (#102552, Tim Mooney)
Owen Taylor [Tue, 28 Jan 2003 20:26:05 +0000 (20:26 +0000)]
Fix version in complaint message about automake. (#104366, Rich Burridge)
Tue Jan 28 15:18:24 2003 Owen Taylor <otaylor@redhat.com>
* autogen.sh (have_automake): Fix version in complaint
message about automake. (#104366, Rich Burridge)
Yuri Syrota [Mon, 27 Jan 2003 17:57:24 +0000 (17:57 +0000)]
Updated Ukrainian translation
Paisa Seeluangsawat [Sun, 26 Jan 2003 00:05:48 +0000 (00:05 +0000)]
Added Thai translation.
2003-01-22 Paisa Seeluangsawat <paisa@colorado.edu>
* th.po: Added Thai translation.
Pablo Saratxaga [Thu, 23 Jan 2003 11:42:49 +0000 (11:42 +0000)]
Added Bengali file
Yuri Syrota [Wed, 22 Jan 2003 14:52:48 +0000 (14:52 +0000)]
Updated Ukrainian translation
Abel Cheung [Wed, 22 Jan 2003 13:15:15 +0000 (13:15 +0000)]
Updated traditional Chinese translation.
2003-01-22 Abel Cheung <maddog@linux.org.hk>
* zh_TW.po: Updated traditional Chinese translation.
Christian Rose [Tue, 21 Jan 2003 22:43:17 +0000 (22:43 +0000)]
Added "mn" to ALL_LINGUAS. Added Mongolian translation by Sanlig Badral
2003-01-21 Christian Rose <menthos@menthos.com>
* configure.in: Added "mn" to ALL_LINGUAS.
* po/mn.po: Added Mongolian translation by
Sanlig Badral <badral@chinggis.com>.
Matthias Clasen [Tue, 21 Jan 2003 22:24:00 +0000 (22:24 +0000)]
Document the return value of g_string_free().
2003-01-21 Matthias Clasen <maclas@gmx.de>
* glib/tmpl/strings.sgml: Document the return value of g_string_free().
Christian Neumair [Mon, 20 Jan 2003 21:53:13 +0000 (21:53 +0000)]
Updated German translation.
Pablo Saratxaga [Mon, 20 Jan 2003 18:38:54 +0000 (18:38 +0000)]
updated Vietnamese file;
added missing langs to ALL_LINGUAS
Christian Neumair [Mon, 20 Jan 2003 16:33:31 +0000 (16:33 +0000)]
Updated German translation.
Daniel Yacob [Thu, 16 Jan 2003 16:28:30 +0000 (16:28 +0000)]
Adding Amharic translation.
Dmitry Mastrukov [Wed, 15 Jan 2003 06:03:29 +0000 (06:03 +0000)]
ru.po: Updated Russian translation from Russian team <gnome-cyr@gnome.org>.
Yanko Kaneti [Wed, 15 Jan 2003 00:06:17 +0000 (00:06 +0000)]
Updated Bulgarian translation (style) by Alexander Shopov
2003-01-14 Yanko Kaneti <yaneti@declera.com>
* bg.po: Updated Bulgarian translation (style) by
Alexander Shopov <al_shopov@yahoo.com>.
Matthias Clasen [Tue, 14 Jan 2003 23:38:34 +0000 (23:38 +0000)]
Fix the description of G_TYPE_FUNDAMENTAL. (#103119, Josh Parsons)
2003-01-15 Matthias Clasen <maclas@gmx.de>
* gobject/tmpl/gtype.sgml: Fix the description of
G_TYPE_FUNDAMENTAL. (#103119, Josh Parsons)
Andraz Tori [Tue, 14 Jan 2003 18:38:52 +0000 (18:38 +0000)]
Updated Slovenian translation
Thomas Vander Stichele [Mon, 13 Jan 2003 10:36:37 +0000 (10:36 +0000)]
doc update
Tor Lillqvist [Sun, 12 Jan 2003 02:36:33 +0000 (02:36 +0000)]
Add g_type_interface_prerequisites. Thanks to Kenichi SUTO.
2003-01-12 Tor Lillqvist <tml@iki.fi>
* gobject.def: Add g_type_interface_prerequisites. Thanks to
Kenichi SUTO.
Tor Lillqvist [Sun, 12 Jan 2003 02:35:15 +0000 (02:35 +0000)]
Add some missing entries. Thanks to Kenichi SUTO.
2003-01-12 Tor Lillqvist <tml@iki.fi>
* glib/glib.def: Add some missing entries. Thanks to Kenichi SUTO.
Dmitry Mastrukov [Mon, 6 Jan 2003 11:21:01 +0000 (11:21 +0000)]
ru.po: Updated Russian translation from Russian team <gnome-cyr@gnome.org>.
Tor Lillqvist [Sun, 5 Jan 2003 22:51:09 +0000 (22:51 +0000)]
Updates.
2003-01-05 Tor Lillqvist <tml@iki.fi>
* README.win32: Updates.
* configure.in: Don't use -lm in TRIO_LIBS on Windows, with no
libm. (Mingw has a dummy libm.a, but the .pc file should be
useable by MSVC users, too.)
Ron Steinke [Sun, 5 Jan 2003 18:11:15 +0000 (18:11 +0000)]
(Ancient, binary compatible fixes found sitting in my tree)
* Added early checks for count == 0 and buf == NULL in g_io_channel_read()
* Better error message for EFAULT in g_io_channel_error_from_errno()
Pauli Virtanen [Sun, 5 Jan 2003 15:36:39 +0000 (15:36 +0000)]
Updated Finnish translation from Lauri Nurmi.
2003-01-05 Pauli Virtanen <pauli.virtanen@hut.fi>
* fi.po: Updated Finnish translation from Lauri Nurmi.
Tor Lillqvist [Sat, 4 Jan 2003 17:14:35 +0000 (17:14 +0000)]
Don't distribute glib-zip.
2003-01-04 Tor Lillqvist <tml@iki.fi>
* Makefile.am (BUILT_EXTRA_DIST): Don't distribute glib-zip.
Tor Lillqvist [Sat, 4 Jan 2003 06:47:14 +0000 (06:47 +0000)]
[Win32] Install also the .def files, to help users generate import
2003-01-04 Tor Lillqvist <tml@iki.fi>
* {glib,gmodule,gobject,gthread}/Makefile.am:
[Win32] Install also the .def files, to help users generate
import libraries for other compilers. Uninstall, too.
* glib-zip.in: Include .def files from above.
Tor Lillqvist [Sat, 4 Jan 2003 05:43:06 +0000 (05:43 +0000)]
Don't claim broken pipes are unreadable. (Well, they are, but read()
2003-01-04 Tor Lillqvist <tml@iki.fi>
* glib/giowin32.c (g_io_win32_fd_get_flags_internal): Don't claim
broken pipes are unreadable. (Well, they are, but read() handles
it, and treats it like EOF.)
Tor Lillqvist [Sat, 4 Jan 2003 03:54:35 +0000 (03:54 +0000)]
Use g_ascii_strcasecmp().
2003-01-01 Tor Lillqvist <tml@iki.fi>
* gmodule-win32.c (_g_module_build_path): Use g_ascii_strcasecmp().
Manish Singh [Fri, 3 Jan 2003 00:16:09 +0000 (00:16 +0000)]
use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE for tests for inline
Thu Jan 2 16:19:15 2003 Manish Singh <yosh@gimp.org>
* configure.in: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE for
tests for inline keywords. Fixes #101976.
Tor Lillqvist [Thu, 2 Jan 2003 00:30:22 +0000 (00:30 +0000)]
Correct the comment telling what headers have the declarations of some
2003-01-02 Tor Lillqvist <tml@iki.fi>
* glib/gwin32.h: Correct the comment telling what headers have
the declarations of some POSIXish functions.
* glib/giowin32.c (g_io_win32_fd_get_flags_internal): Fix braino:
The checks for readability/writeability were backwards.
Chyla Zbigniew [Thu, 2 Jan 2003 00:18:46 +0000 (00:18 +0000)]
Updated Polish translation by GNOME PL Team <translators@gnome.pl>
Chyla Zbigniew [Thu, 2 Jan 2003 00:16:57 +0000 (00:16 +0000)]
Updated Polish translation by GNOME PL Team <translators@gnome.pl>
Tor Lillqvist [Wed, 1 Jan 2003 23:18:44 +0000 (23:18 +0000)]
Check the C stdout and stderr streams for validity, instead of what
2003-01-01 Tor Lillqvist <tml@iki.fi>
* glib/gmessages.c (ensure_stdout_valid, ensure_stderr_valid):
Check the C stdout and stderr streams for validity, instead of
what GetStdHandle() returns.
Abel Cheung [Wed, 1 Jan 2003 19:44:30 +0000 (19:44 +0000)]
Updated traditional Chinese translation.
2003-01-02 Abel Cheung <maddog@linux.org.hk>
* zh_TW.po: Updated traditional Chinese translation.
Tor Lillqvist [Wed, 1 Jan 2003 17:00:51 +0000 (17:00 +0000)]
Move the alloc_console_called static flag inside these two functions.
2003-01-01 Tor Lillqvist <tml@iki.fi>
* glib/gmessages.c (ensure_stderr_valid, ensure_stdout_valid): Move the
alloc_console_called static flag inside these two functions.
Tor Lillqvist [Wed, 1 Jan 2003 01:40:52 +0000 (01:40 +0000)]
Remove comment that only stdout would be used on Windows, no longer true.
2003-01-01 Tor Lillqvist <tml@iki.fi>
* glib/tmpl/messages.sgml: Remove comment that only stdout would
be used on Windows, no longer true.
Tor Lillqvist [Wed, 1 Jan 2003 01:19:47 +0000 (01:19 +0000)]
New function, parallel to ensure_stdout_valid(). #defined as empty on
2003-01-01 Tor Lillqvist <tml@iki.fi>
* glib/gmessages.c (ensure_stderr_valid): New function, parallel
to ensure_stdout_valid(). #defined as empty on Unix.
(mklevel_prefix): Do use either stderr or stdout on Windows,
too. Otherwise g_warning() messages (that are just warnings, by
definition) will get mixed with proper stdout output. Noticed in
GIMP's gimpconfig-dump.
(strdup_convert, mklevel_prefix, g_printerr): Call
ensure_stderr_valid() before trying to use stderr.
(g_logv): [Win32] Convert message to current codepage before
display with MessageBox().
Gil Osher [Mon, 30 Dec 2002 10:13:46 +0000 (10:13 +0000)]
*** empty log message ***
Owen Taylor [Sat, 28 Dec 2002 21:16:55 +0000 (21:16 +0000)]
Split ChangeLog
Vincent van Adrighem [Sat, 28 Dec 2002 14:29:46 +0000 (14:29 +0000)]
Dutch translation updated by Tino Meinen.
2002-12-28 Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
* nl.po: Dutch translation updated by Tino Meinen.
Tõivo Leedjärv [Fri, 27 Dec 2002 23:43:22 +0000 (23:43 +0000)]
Added Estonian translation by Allan Sims <allsi@eau.ee>.
2002-12-28 Tõivo Leedjärv <toivo@linux.ee>
* et.po: Added Estonian translation
by Allan Sims <allsi@eau.ee>.
Tõivo Leedjärv [Fri, 27 Dec 2002 23:41:33 +0000 (23:41 +0000)]
Added et to ALL_LINGUAS.
2002-12-28 Tõivo Leedjärv <toivo@linux.ee>
* configure.in: Added et to ALL_LINGUAS.
Vincent van Adrighem [Fri, 27 Dec 2002 08:31:54 +0000 (08:31 +0000)]
Dutch translation updated by Tino Meinen.
2002-12-27 Vincent van Adrighem <V.vanAdrighem@dirck.mine.nu>
* nl.po: Dutch translation updated by Tino Meinen.
Ivan Stojmirov [Wed, 25 Dec 2002 11:32:42 +0000 (11:32 +0000)]
Added Macedonian translation
Owen Taylor [Fri, 20 Dec 2002 15:48:15 +0000 (15:48 +0000)]
=== Released 2.2.0 ===
Fri Dec 20 10:45:29 2002 Owen Taylor <otaylor@redhat.com>
* === Released 2.2.0 ===
* INSTALL.in: --enable-included-printf, not --enable-trio.
(Matthias Clasen)
Owen Taylor [Fri, 20 Dec 2002 15:23:12 +0000 (15:23 +0000)]
=== Released 2.2.0 ===
Fri Dec 20 09:52:15 2002 Owen Taylor <otaylor@redhat.com>
* === Released 2.2.0 ===
* INSTALL.in: Document --enable-trio, --disable-mempools,
--enable-debug. Include docs on cross compilation.
* NEWS: Update.
* configure.in: Version 2.2.0, interface age 0.
Owen Taylor [Fri, 20 Dec 2002 14:42:56 +0000 (14:42 +0000)]
Call g_main_thread_init() after setting g_threads_got_initialized.
Fri Dec 20 09:37:27 2002 Owen Taylor <otaylor@redhat.com>
* gthread/gthread-impl.c (g_thread_init): Call g_main_thread_init()
after setting g_threads_got_initialized. (#101624,
Alceste Scalas, Sebastian Wilhelmi)
Jordi Mallach [Thu, 19 Dec 2002 14:57:39 +0000 (14:57 +0000)]
Updated Catalan translation.
Yanko Kaneti [Thu, 19 Dec 2002 12:04:05 +0000 (12:04 +0000)]
Updated Bulgarian translation (style) by Alexander Shopov
2002-12-19 Yanko Kaneti <yaneti@declera.com>
* bg.po: Updated Bulgarian translation (style) by
Alexander Shopov <al_shopov@yahoo.com>.
Manish Singh [Thu, 19 Dec 2002 00:20:03 +0000 (00:20 +0000)]
new endian asm for ia64 and x86_64, general reorg and clean up. New
Wed Dec 18 16:19:08 2002 Manish Singh <yosh@gimp.org>
* glib/gtypes.h: new endian asm for ia64 and x86_64, general
reorg and clean up. New implementation of GUINT16_SWAP_LE_BE_CONSTANT()
that should optimize better. (#101318)
Matthias Clasen [Wed, 18 Dec 2002 23:46:18 +0000 (23:46 +0000)]
Add docs.
Peteris Krisjanis [Wed, 18 Dec 2002 23:05:52 +0000 (23:05 +0000)]
2002-12-18 Artis Trops <hornet@navigator.lv> * lv.po: Updated Latvian translation
Michael Natterer [Wed, 18 Dec 2002 18:16:07 +0000 (18:16 +0000)]
applied patch I got from Tim Janik for testing which fixes bug #101521.
2002-12-18 Michael Natterer <mitch@gimp.org>
* gobject/gtype.c (type_data_finalize_class_ifaces_Wm): applied
patch I got from Tim Janik for testing which fixes bug #101521.
(restart iterating the interface enties each time we finalized one
because they might have been modified).
Ole Laursen [Wed, 18 Dec 2002 17:06:36 +0000 (17:06 +0000)]
Updated Danish translation.
2002-12-18 Ole Laursen <olau@hardworking.dk>
* da.po: Updated Danish translation.
Stanislav Visnovsky [Wed, 18 Dec 2002 12:38:31 +0000 (12:38 +0000)]
Updated Slovak translation.
2002-12-18 Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>
* sk.po: Updated Slovak translation.
Dmitry Mastrukov [Wed, 18 Dec 2002 04:31:52 +0000 (04:31 +0000)]
ru.po: Updated Russian translation from Russian team <gnome-cyr@gnome.org>.
Germán Poó Caamaño [Wed, 18 Dec 2002 00:17:31 +0000 (00:17 +0000)]
2002-12-17 German Poo-Caaman~o
* es.po: Updated Spanish translation
Tor Lillqvist [Tue, 17 Dec 2002 04:48:03 +0000 (04:48 +0000)]
Improvement based on suggestion by Thorsten Maerz:
2002-12-17 Tor Lillqvist <tml@iki.fi>
Improvement based on suggestion by Thorsten Maerz:
* glib/giowin32.c (struct _GIOWin32Channel): Don't need thread_handle.
(create_thread): We can close thread handle right away, it isn't
used for anything.
(read_thread, select_thread): Thus, don't close it here.
Fix #57690, partial fix for #57689:
* glib/giowin32.c (g_io_win32_set_flags): Don't set the GError,
instead call g_warning().
(g_io_win32_fd_get_flags_internal): New function, sets the
is_readable, is_writeable and is_seekable flags based on the
actual access modes of the underlying Win32 HANDLE, by trying
Win32 ReadFile() and WriteFile() of zero bytes, and
PeekNamedPipe(). Should work for disk files and pipes. For devices
(consoles) unfortunately not.
(g_io_win32_fd_get_flags): Don't set the
G_IO_FLAG_IS_{READ,WRITE}ABLE flags, g_io_channel_get_flags()
already does. Call g_io_win32_fd_get_flags_internal() to set the
is_* flags.
(g_io_win32_msg_get_flags, g_io_win32_sock_get_flags): Splice the
generic g_io_win32_get_flags() into these specific functions, as
they need to do different things. Not implemented yet, though.
(g_io_channel_win32_new_fd_internal): New function, to avoid
duplicate fstat() calls. Most code from g_io_channel_win32_new_fd()
moved here. Call g_io_win32_fd_get_flags_internal() to set the
is_* flags.
(g_io_channel_win32_new_fd, g_io_channel_unix_new): Call
g_io_channel_win32_new_fd_internal().
(g_io_win32_no_seek): Remove. Don't set is_seekable for those
channel types.
Matthias Clasen [Mon, 16 Dec 2002 23:33:08 +0000 (23:33 +0000)]
Remove markup from doc comment, as GObject doesn't use --sgml-mode yet.
* gparam.c (g_param_spec_internal): Remove markup from doc
comment, as GObject doesn't use --sgml-mode yet.
Owen Taylor [Mon, 16 Dec 2002 22:58:40 +0000 (22:58 +0000)]
=== Released 2.1.5 ===
Mon Dec 16 17:31:50 2002 Owen Taylor <otaylor@redhat.com>
* === Released 2.1.5 ===
* configure.in: Version 2.1.5, interface age 2.
* NEWS: Updated.
Owen Taylor [Mon, 16 Dec 2002 22:14:40 +0000 (22:14 +0000)]
Add a hack to mostly deal with problems in support of -pthread and
Mon Dec 16 14:58:33 2002 Owen Taylor <otaylor@redhat.com>
* configure.in: Add a hack to mostly deal with
problems in support of -pthread and -lpthread;
pass -lpthread (for linux) or -Wc,-pthread (for
other platforms) to libtool when linking libgthread.
(#100697)
Tor Lillqvist [Mon, 16 Dec 2002 05:24:07 +0000 (05:24 +0000)]
In the admittedly strangely worded "Channel set flags unsupported"
2002-12-16 Tor Lillqvist <tml@iki.fi>
* fi.po: In the admittedly strangely worded "Channel set flags
unsupported" message, "set" is a verb.
Tor Lillqvist [Mon, 16 Dec 2002 05:22:08 +0000 (05:22 +0000)]
Fix potential heap corruption. Sometimes called g_free() on string
2002-12-16 Tor Lillqvist <tml@iki.fi>
* glib/gspawn-win32.c (do_spawn): Fix potential heap
corruption. Sometimes called g_free() on string literal.
Owen Taylor [Mon, 16 Dec 2002 00:53:45 +0000 (00:53 +0000)]
AC_SUBST() DATADIRNAME, not DATADIR.
Sun Dec 15 19:51:58 2002 Owen Taylor <otaylor@redhat.com>
* m4macros/glib-gettext.m4: AC_SUBST() DATADIRNAME, not
DATADIR.
Owen Taylor [Mon, 16 Dec 2002 00:25:26 +0000 (00:25 +0000)]
Restore a missing AC_SUBST() for DATADIRNAME. (Found by Kjartan Maraas)
Sun Dec 15 19:22:58 2002 Owen Taylor <otaylor@redhat.com>
* m4macros/glib-gettext.m4: Restore a missing AC_SUBST()
for DATADIRNAME. (Found by Kjartan Maraas)
Christian Neumair [Sun, 15 Dec 2002 20:53:49 +0000 (20:53 +0000)]
Updated German translation.
Owen Taylor [Sun, 15 Dec 2002 16:26:58 +0000 (16:26 +0000)]
Actually set INTLLIBS when needed. (Reported by Tor Lillqvist)
Sun Dec 15 11:24:29 2002 Owen Taylor <otaylor@redhat.com>
* m4macros/glib-gettext.m4: Actually set INTLLIBS
when needed. (Reported by Tor Lillqvist)
Christophe Merlet [Sun, 15 Dec 2002 15:54:58 +0000 (15:54 +0000)]
Updated French translation.
Tor Lillqvist [Sun, 15 Dec 2002 15:51:20 +0000 (15:51 +0000)]
Add g_rand_init.
2002-12-15 Tor Lillqvist <tml@iki.fi>
* glib/glib.def: Add g_rand_init.
Tor Lillqvist [Sun, 15 Dec 2002 05:37:52 +0000 (05:37 +0000)]
Slight update to match what is currently produced by configure.
2002-12-15 Tor Lillqvist <tml@iki.fi>
* config.h.win32.in: Slight update to match what is currently
produced by configure.
Owen Taylor [Sun, 15 Dec 2002 02:51:33 +0000 (02:51 +0000)]
Fixes from Johannes Stezenbach [...] Remove a stray setting of $LIBS.
Thu Dec 12 23:08:29 2002 Owen Taylor <otaylor@redhat.com>
Fixes from Johannes Stezenbach
[...]
* m4macros/glib-gettext.m4: Remove a stray setting of $LIBS.
Matthias Clasen [Sun, 15 Dec 2002 02:38:49 +0000 (02:38 +0000)]
Move some docs inline.
* gobject/tmpl/param_value_types.sgml: Move some docs inline.
* gsignal.c (g_signal_new): Typo fix.
* gparamspecs.c:
* gparam.c (g_param_spec_internal):
* gobject.c (g_object_class_install_property): Add docs.
Owen Taylor [Sun, 15 Dec 2002 02:35:28 +0000 (02:35 +0000)]
HP-UX 10 xshares the same non-posix getpwuid_r signature as AIX. (#100756,
Sat Dec 14 21:24:04 2002 Owen Taylor <otaylor@redhat.com>
* glib/gutils.c (g_get_any_init): HP-UX 10 xshares the
same non-posix getpwuid_r signature as AIX.
(#100756, Kai Poitschke)
Owen Taylor [Sun, 15 Dec 2002 02:19:06 +0000 (02:19 +0000)]
Mark the contents of the strucures in this file /*< private >*/
Sat Dec 14 21:10:57 2002 Owen Taylor <otaylor@redhat.com>
* glib/gthread.h: Mark the contents of the strucures
in this file /*< private >*/
* glib/gthread.[ch]: Rename the 'write' field of the
structure to 'have_writer' to avoid any possible
conflict with system headers. (#90549, Morten Welinder)
Owen Taylor [Sun, 15 Dec 2002 01:35:07 +0000 (01:35 +0000)]
Break _g_locale_charset() into two pieces - a fast "raw" piece, and a slow
Sat Dec 14 20:11:41 2002 Owen Taylor <otaylor@redhat.com>
* glib/libcharset/{localcharset.[ch] libcharset-glib.patch}
glib/gutf8.c: Break _g_locale_charset() into two pieces
- a fast "raw" piece, and a slow "unalias pieces".
Always call the "raw" piece, and call the unalias bit
if it changes. Use a per-thread cache. (#79529)