summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2003-06-17New macros to check for XML catalog contents and path, borrowed fromMatthias Clasen22-8/+1612
2003-06-17 Matthias Clasen <maclas@gmx.de> * acinclude.m4 (JH_PATH_XML_CATALOG, JH_CHECK_XML_CATALOG): New macros to check for XML catalog contents and path, borrowed from gtk-doc. * configure.in: New option --enable-man to enable regeneration of man pages from Docbook, if the necessary tools are found. * gobject/Makefile.am: Add rule to regenerate man pages from Docbook. (man_MANS): Add glib-mkenums.1, glib-genmarshal.1 and gobject-query.1. (content_files): Add glib-mkenums.xml, glib-genmarshal.xml and gobject-query.xml. * gobject/glib-mkenums.xml: * gobject/glib-genmarshal.xml: * gobject/gobject-query.xml: New refentries. * gobject/glib-mkenums.1: * gobject/glib-genmarshal.1: * gobject/gobject-query.1: Man pages generated from the .xml sources. * gobject/gobject-docs.sgml: Include glib-mkenums.xml, glib-genmarshal.xml and gobject-query.xml. * glib/Makefile.am: Add rule to regenerate man pages from Docbook. (man_MANS): Add glib-gettextize.1. (content_files): Add glib-gettextize.xml. * glib/glib-gettextize.xml: New refentry. * glib/glib-gettextize.1: Man page generated from the .xml source. * glib/glib-docs.sgml: Include glib-gettextize.xml.
2003-06-16Add an autogenerated index.Matthias Clasen4-1/+29
2003-06-17 Matthias Clasen <mc2@YAST_ASK> * gobject/gobject-docs.sgml: * glib/glib-docs.sgml: Add an autogenerated index. 2003-06-17 Matthias Clasen <maclas@gmx.de> * glib/tmpl/macros_misc.sgml: Document G_GNUC_DEPRECATED.
2003-06-15Test where the DLLs actually are.Tor Lillqvist8-14/+61
2003-06-15 Tor Lillqvist <tml@iki.fi> * glib-zip.in (DLLDIR): Test where the DLLs actually are. * README.win32: Point to FSF's binary Win32 distributions of libiconv and gettext-runtime.
2003-06-11libtool 1.5 installs DLLs in the bin subdirectory, so get them from there.Tor Lillqvist8-15/+56
2003-06-11 Tor Lillqvist <tml@iki.fi> * glib-zip.in (DEVZIP): libtool 1.5 installs DLLs in the bin subdirectory, so get them from there. * glib/gwin32.c (g_win32_getlocale): Use "sr@Latn" and "sr" in the same way as the po files for Serbian in Latin and Cyrillic script.
2003-06-11A small addition.Matthias Clasen2-0/+8
2003-06-11 Matthias Clasen <maclas@gmx.de> * gobject/tmpl/objects.sgml: A small addition.
2003-06-11Remove false &. Spotted by Albert ChinSebastian Wilhelmi7-1/+31
2003-06-11 Sebastian Wilhelmi <seppi@seppi.de> * configure.in: Remove false &. Spotted by Albert Chin <gtk-devel-list@thewrittenword.com>.
2003-06-08XML fix.Owen Taylor3-5/+18
Sun Jun 8 12:28:39 2003 Owen Taylor <otaylor@redhat.com> * glib/tmpl/error_reporting.sgml: XML fix. * glib/glib-sections.txt: Updated.
2003-06-08Fix indentation and spacing. Use INADDR_LOOPBACK instead ofTor Lillqvist7-121/+152
2003-06-08 Tor Lillqvist <tml@iki.fi> * glib/giowin32.c: Fix indentation and spacing. Use INADDR_LOOPBACK instead of inet_addr("127.0.0.1") and gethostbyaddr().
2003-06-07Resolved thread deadlocks in socket ichannel code to supportAndy Lanoix7-71/+233
* glib/giowin32.c: Resolved thread deadlocks in socket ichannel code to support Add-Cancel-Add watch functionality on windows. Also cleaned up socket error handling to not segfault and do the right thing.
2003-06-06Correct the documentation for G_MINFLOAT and G_MINDOUBLE. (#114513,Matthias Clasen2-3/+13
* glib/tmpl/limits.sgml: Correct the documentation for G_MINFLOAT and G_MINDOUBLE. (#114513, Christophe Fergeau)
2003-06-06Test for Solaris native gettext in libc, seeing if it supports GNU catalogHidetoshi Tajima7-2/+48
Fri Jun 6 10:24:23 2003 Hidetoshi Tajima <hidetoshi.tajima@sun.com> * m4macros/glib-gettext.m4: Test for Solaris native gettext in libc, seeing if it supports GNU catalog format (#85217).
2003-06-06When dispatching a source that is !CAN_RECURSE, temporarily remove anyOwen Taylor7-19/+160
Thu Jun 5 23:40:31 2003 Owen Taylor <otaylor@redhat.com> * glib/gmain.c: When dispatching a source that is !CAN_RECURSE, temporarily remove any file descriptors that that source has registered from the main loop, to keep recursive main loops from busy-waiting if input becomes available on one of those file descriptors. (#112222, Christian Krause) * glib/gmain.c (g_source_set_priority): Properly remove the source from the context's source list and reinsert it sorted, rather than simply setting source->next/prev to NULL! (#114274)
2003-06-05Use g_vasprintf() and g_string_append_len(), thus enabling embedded nulsMatthias Clasen8-3/+51
2003-06-06 Matthias Clasen <maclas@gmx.de> * glib/gstring.c (g_string_append_printf_internal): Use g_vasprintf() and g_string_append_len(), thus enabling embedded nuls in the result of g_string_printf(). (#92492, Owen Taylor) * tests/string-test.c: Add a test for embedded nuls in the result of g_string_printf().
2003-06-05Add g_vasprintf().Matthias Clasen3-0/+12
2003-06-06 Matthias Clasen <maclas@gmx.de> * glib/glib-sections.txt: Add g_vasprintf(). * glib/tmpl/string_utils.sgml: Add a hint about g_vasprintf() to the g_strdup_printf() docs.
2003-06-05Synchronize argument names with headers and docs. (g_vasprintf): AnMatthias Clasen9-55/+142
2003-06-06 Matthias Clasen <maclas@gmx.de> * glib/gprintf.[ch]: Synchronize argument names with headers and docs. (g_vasprintf): An implementation of vasprintf(), code was lifted from g_strdup_vprintf(). (#112365) * glib/gstrfuncs.c (g_strdup_vprintf): Just use g_vasprintf().
2003-06-05glib/giochannel.h Remove bogus (Win32-only) declaration ofTor Lillqvist9-25/+85
2003-06-05 Tor Lillqvist <tml@iki.fi> * glib/giochannel.h * glib/gmain.h: Remove bogus (Win32-only) declaration of g_main_poll_win32_msg_add(). No such function exists. * glib/gmain.c (g_poll) [Win32]: Use g_win32_error_message() for better warning messages.
2003-06-04Use the current g_file_get_contents() as example.Matthias Clasen1-8/+9
2003-06-04Fix typo (#114375). Also, make the function static.Noah Levitt7-2/+32
2003-06-04 Noah Levitt <nlevitt@columbia.edu> * glib/gunidecomp.h (combine): Fix typo (#114375). Also, make the function static.
2003-06-04Global fix of tamil translation encodingKwok-Koon Cheung2-82/+86
2003-06-04file li.po was initially added on branch glib-2-2.Kenneth Christiansen0-0/+0
2003-06-03Test for pthread_setschedparam. If not existant, disable priorities.Sebastian Wilhelmi7-1/+37
2003-06-03 Sebastian Wilhelmi <seppi@seppi.de> * configure.in: Test for pthread_setschedparam. If not existant, disable priorities. (#104718)
2003-06-02Patch from Jeffrey Stedfast <fejj@ximian.com> (#104825)Owen Taylor7-6/+89
Mon Jun 2 14:18:21 2003 Owen Taylor <otaylor@redhat.com> Patch from Jeffrey Stedfast <fejj@ximian.com> (#104825) * glib/gspawn.c (read_data): Don't read() into '&buf', while this is technically okay - it is clearer as just 'buf'. (write_all): New helper function that handles write() interrupts. (write_err_and_exit): Use write_all() instead of write(). (fork_exec_with_pipes): Same here.
2003-06-01Put the g_return_val_if_fail() in the right place.Owen Taylor7-2/+32
Sun Jun 1 09:42:36 2003 Owen Taylor <otaylor@redhat.com> * glib/giochannel.c (g_io_error_get_from_g_error): Put the g_return_val_if_fail() in the right place.
2003-05-31Fix typo: should be G_IO_ERROR_UNKNOWN not G_ERROR_ERROR_UNKNOWNRay Strode7-1/+37
Fri May 31 1:17:45 2003 Ray Strode <halfline@hawaii.rr.com> * glib/giochannel.c (g_io_channel_error_from_errno): Fix typo: should be G_IO_ERROR_UNKNOWN not G_ERROR_ERROR_UNKNOWN
2003-05-30glib/gstrfuncs.c (g_ascii_strncasecmp) Use TOLOWER() macro instead ofOwen Taylor7-4/+40
Fri May 30 19:23:47 2003 Owen Taylor <otaylor@redhat.com> * glib/gstrfuncs.c (g_ascii_strncasecmp) * glib/gstrfuncs.c (g_ascii_strcasecmp): Use TOLOWER() macro instead of g_ascii_tolower() (#107138)
2003-05-30Backport better handling of ALL_LINGUAS from gettext.m4. (#103808, AndrasOwen Taylor7-8/+65
Fri May 30 19:09:25 2003 Owen Taylor <otaylor@redhat.com> * m4macros/glib-gettext.m4: Backport better handling of ALL_LINGUAS from gettext.m4. (#103808, Andras Salamon)
2003-05-30expand $exec_prefix as well as $prefix. (#107290, reported by MortenOwen Taylor7-0/+39
Fri May 30 18:46:05 2003 Owen Taylor <otaylor@redhat.com> * m4macros/glib-gettext.m4: expand $exec_prefix as well as $prefix. (#107290, reported by Morten Welinder, patch from Raja Harinath)
2003-05-30Quote $srcdir to handle $srcdir with spaces (#107850, Evan Martin)Owen Taylor7-11/+41
Fri May 30 17:24:23 2003 Owen Taylor <otaylor@redhat.com> * glib-gettextize.in: Quote $srcdir to handle $srcdir with spaces (#107850, Evan Martin)
2003-05-30Silently return G_IO_CHANNEL_ERROR_FAILED for EINTR, since close() canOwen Taylor7-3/+48
Fri May 30 16:48:26 2003 Owen Taylor <otaylor@redhat.com> * glib/giochannel.c (g_io_channel_error_from_errno): Silently return G_IO_CHANNEL_ERROR_FAILED for EINTR, since close() can return EINTR. (#11842, Balazs Scheidler)
2003-05-30Do a g_return_val_if_fail() on err == NULL to be a bit more robuts onOwen Taylor7-0/+44
Fri May 30 15:51:43 2003 Owen Taylor <otaylor@redhat.com> * glib/giochannel.c (g_io_error_get_from_g_error): Do a g_return_val_if_fail() on err == NULL to be a bit more robuts on buggy IO channel implementations. (#113396, Dan Winship)
2003-05-30Order refs/unrefs so setting the same object back is safe. (#112861,Owen Taylor2-6/+15
Fri May 30 14:42:24 2003 Owen Taylor <otaylor@redhat.com> * gobject.c (g_value_set_object): Order refs/unrefs so setting the same object back is safe. (#112861, Morten Welinder)
2003-05-28__PRETTY_FUNCTION__ was made a non-token before gcc-3.0.0 for C++. (FixOwen Taylor7-1/+37
Tue May 27 19:56:35 2003 Owen Taylor <otaylor@redhat.com> * glib/gmacros.h: __PRETTY_FUNCTION__ was made a non-token before gcc-3.0.0 for C++. (Fix from Martin Kretzschmar, #113797)
2003-05-27Document that g_strdup() and g_strndup() accept NULL. (#106987, ChristianMatthias Clasen2-1/+8
2003-05-28 Matthias Clasen <maclas@gmx.de> * glib/tmpl/string_utils.sgml: Document that g_strdup() and g_strndup() accept NULL. (#106987, Christian Biere)
2003-05-27Remain silent when sucessful.Matthias Clasen8-13/+99
2003-05-28 Matthias Clasen <maclas@gmx.de> * tests/patterntest.c: Remain silent when sucessful. * tests/Makefile.am: Add patterntest to make check. (#113143, Zach Frey)
2003-05-27Use memcpy instead of strcpy. (#106988, Christian Biere)Matthias Clasen7-2/+34
2003-05-27 Matthias Clasen <maclas@gmx.de> * glib/gstrfuncs.c (g_strdup): Use memcpy instead of strcpy. (#106988, Christian Biere)
2003-05-27Updated traditional Chinese translation.Kwok-Koon Cheung2-77/+78
* zh_TW.po: Updated traditional Chinese translation.
2003-05-23Fix typo in UNICODE_VALID (related to #107427).Noah Levitt7-1/+25
2003-05-23 Noah Levitt <nlevitt@columbia.edu> * glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
2003-05-23Remove stale comment.Noah Levitt7-2/+24
2003-05-23 Noah Levitt <nlevitt@columbia.edu> * glib/guniprop.c: Remove stale comment.
2003-05-22Update g_unichar_iswide to Unicode 4.0 (#113404).Noah Levitt7-10/+37
2003-05-22 Noah Levitt <nlevitt@columbia.edu> * glib/guniprop.c: Update g_unichar_iswide to Unicode 4.0 (#113404).
2003-05-21Fix obscure typo in case conversion routine (#113469).Noah Levitt7-1/+31
2003-05-21 Noah Levitt <nlevitt@columbia.edu> * glib/guniprop.c: Fix obscure typo in case conversion routine (#113469).
2003-05-20ytpoManish Singh6-6/+6
2003-05-20wrap 64-bit MIN/MAX limit constants in G_GINT64_CONSTANT. Fixes bugPDT 2003 Manish Singh7-3/+33
Tue May 20 14:14:55 PDT 2003 Manish Singh <yosh@gimp.org> * configure.in: wrap 64-bit MIN/MAX limit constants in G_GINT64_CONSTANT. Fixes bug #108699.
2003-05-20Fix cut-and-pasto: g_unichar_break_type should returnNoah Levitt7-1/+37
2003-05-19 Noah Levitt <nlevitt@columbia.edu> * glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should return G_UNICODE_BREAK_UNKNOWN if the character is greater than G_UNICODE_LAST_CHAR.
2003-05-19Remove unused function g_list_sort2 (bug #113203).Noah Levitt7-59/+24
2003-05-19 Noah Levitt <nlevitt@columbia.edu> * glib/glist.c: Remove unused function g_list_sort2 (bug #113203).
2003-05-19Fix off-by-one error in g_unicode_canonical_ordering (bug #113260).Noah Levitt7-5/+35
2003-05-19 Noah Levitt <nlevitt@columbia.edu> * glib/gunidecomp.c: Fix off-by-one error in g_unicode_canonical_ordering (bug #113260).
2003-05-19*ar.po: Added Arabic translation by Arabeyes <doc@arabeyes.org>Arafat Medini9-1/+520
2003-05-19 Arafat Medini <lumina@silverpen.de> *ar.po: Added Arabic translation by Arabeyes <doc@arabeyes.org>
2003-05-17Welsh translation from Dafydd HarriesTelsa Gwynne9-1/+536
2003-05-11Fix a duplicate id left by copy-and-paste. (#112785, Owen Taylor)Matthias Clasen2-1/+6
2003-05-12 Matthias Clasen <maclas@gmx.de> * glib/cross.sgml: Fix a duplicate id left by copy-and-paste. (#112785, Owen Taylor)
2003-05-08Updated French translation.Christophe Merlet2-73/+77
2003-05-05Some doc fixes. (#111805)Matthias Clasen7-4/+40
2003-05-05 Matthias Clasen <maclas@gmx.de> * glib/gstrfuncs.c (g_ascii_dtostr): (g_ascii_formatd): (g_ascii_strtod): Some doc fixes. (#111805)