Fix docs.
[platform/upstream/glib.git] / ChangeLog.pre-2-10
1 2003-03-19  Matthias Clasen  <maclas@gmx.de>
2
3         * glib/giochannel.c (g_io_channel_read_to_end): Fix docs.
4
5 2003-03-19  Anders Carlsson  <andersca@codefactory.se>
6
7         * configure.in: Bump version to 2.3.0
8
9 2003-03-14  Sebastian Wilhelmi  <seppi@seppi.de>
10
11         * glib/gthread.c: Do not define function g_thread_init_glib, if
12         not G_THREADS_ENABLED. It's not called bu g_thread_init() then,
13         but calls other, in that case undefined functions.
14
15 2003-03-06  Matthias Clasen  <maclas@gmx.de>
16
17         * glib/gmain.c (g_main_context_find_source_by_id): 
18         (g_main_context_find_source_by_funcs_user_data): Fix FALSE/NULL
19         confusion.  (#107646, Morten Welinder)
20
21 2003-03-01  James Henstridge  <james@daa.com.au>
22
23         * autogen.sh: require automake 1.7.  Add calls to libtoolize and
24         gtkdocize.  Clean up some of the error messages.
25
26         * configure.in: move version declaration to the top of the file
27         (before AC_INIT), using M4 macros.
28         GLIB_AC_DIVERT_BEFORE_HELP() calls no longer necessary, due to use
29         of M4 macro expansion in help messages instead.
30         Convert AC_ARG_WITH/AC_ARG_ENABLE calls to use AC_HELP_STRING to
31         format help strings.  Use quadrigraphs to get square brackets to
32         show correctly.
33         Replace gtk-doc checks with a call to GTK_DOC_CHECK() macro.
34         Use AC_CONFIG_COMMANDS([glibconfig.h], ...) to output
35         glibconfig.h, so that "./config.status glibconfig.h" works.
36         Add an extra AC_CONFIG_FILES call listing other files we want
37         generated by config.status protected by an "if false" block.  This
38         way automake generates the rules needed to rebuild the files for
39         us.
40         Add quotes in various places.
41
42         * docs/reference/*/Makefile.am: convert to use the common
43         gtk-doc.make file.  This localises the complexity to a single
44         makefile fragment maintained with gtk-doc itself.
45
46         * */Makefile.am: remove unneeded rules to build win32 files with
47         config.status.  Automake now does this for us.
48         Replace instances of @FOO@ with $(FOO) where appropriate -- this
49         allows automake to do a better job checking the makefile.
50         Add some files to DISTCLEANFILES where appropriate
51
52         * Makefile.am: use the DISTCHECK_CONFIGURE_FLAGS variable to
53         ensure that --enable-gtk-doc is passed to configure during a
54         distcheck.  Remove the custom distcheck, since the standard one
55         will now do.
56
57         * gobject/Makefile.am: switch to BUILT_SOURCES, since that now
58         works.
59
60 2003-02-26  Matthias Clasen  <maclas@gmx.de>
61
62         * glib/gstrfuncs.c (g_strdup_vprintf): Use g_strndup, not
63         g_strdup, since we know the length in advance.
64
65         * glib/gunidecomp.c (g_unicode_canonical_decomposition): Use
66         g_malloc instead of directly using malloc.
67
68 2003-02-25  Tor Lillqvist  <tml@iki.fi>
69
70         * glib/glib.def: Add a couple of missing entries, thanks to Cedric
71         Gustin. Thread initialization function changes according to
72         Sebastian Wilhelmi's changes below (2003-02-14).
73
74 2003-02-24  Matthias Clasen  <maclas@gmx.de>
75
76         * glib/gdir.c (g_dir_read_name): Clarify documentation.
77
78 2003-02-18  Sebastian Wilhelmi  <seppi@seppi.de>
79
80         * configure.in: Make glib_thread_test not unnecessarily convert
81         between int and void*. (#106278). Let main return int.
82
83         * configure.in: Add an argument to specify the default thread
84         attribute to glib_thread_test. Disappeared somewhere between 2.0
85         and 2.2.
86
87 2003-02-14  Sebastian Wilhelmi  <seppi@seppi.de>
88
89         Fixes for #101264 and #99372:
90
91         * glib/gconvert.h, glib/gmain.c, glib/gmem.c, glib/gmessages.c,
92         glib/grand.c: Include gthreadinit.h and rename the thread
93         initialization functions a bit and let them start with _, so that
94         later we can stop exporting them.
95         
96         * glib/gmem.c, glib/gmessages.c: Move the g_private_new() calls to
97         new functions. They have to be called after setting
98         g_threads_got_initialized to TRUE (see #101264).
99
100         * glib/gthread.c: Include gthreadinit.h. Renamed g_mutex_init() to
101         g_thread_init_glib(). Call the thread initialization functions
102         (which are not allowed to call g_private_new), then set
103         g_threads_got_initialized to TRUE, then call the other thread
104         initialization functions (which must not call anything but
105         g_private_new()).
106         
107         * glib/gthreadinit.h: New private header to cleanly declare all
108         thread initialization functions.
109
110         * gthread/gthread-impl.c: Include gthreadinit.h. In
111         g_thread_init() just call g_thread_init_glib(), which in turn calls the
112         other functions (see #99372).
113         
114         * glib/Makefile.am: Added gthreadinit.h.
115
116 2003-02-12  Sebastian Wilhelmi  <seppi@seppi.de>
117
118         * configure.in: Make GLib recognize Tru64Unix thread system. (#103020)
119
120 2003-02-11  Tor Lillqvist  <tml@iki.fi>
121
122         * Makefile.am (EXTRA_DIST): Include ChangeLog.pre-2-2.
123
124         * glib-zip.in: Include also the gtk-doc/html documentation in the
125         developer package.
126
127         * README.win32: Updates.
128
129 2003-02-11  Sebastian Wilhelmi  <seppi@seppi.de>
130
131         * AUTHORS: Changed my e-mail address.
132         * glib/grand.c: Removed my e-mail address.
133
134 2003-02-10  Mohammad DAMT  <mdamt@bisnisweb.com>
135
136         * po/id.po: Added Indonesian translation
137         * configure.in: Added "id" to ALL_LINGUAS
138
139 2003-02-06  Matthias Clasen  <maclas@gmx.de>
140
141         * glib/gmessages.h: 
142         * glib/gmem.h: 
143         * glib/ghash.h: 
144         * glib/gasyncqueue.h: 
145         * glib/garray.h: 
146         * glib/ghook.h: 
147         * glib/gtypes.h: Fix a bunch of typos in header comments.
148         (#102422, Morten Welinder)
149
150 2003-02-04  Tor Lillqvist  <tml@iki.fi>
151
152         * glib/giowin32.c (g_io_channel_unix_new): Fix typo: Should be
153         SOCKET_ERROR, not SO_ERROR. Noticed by Daniel Kaufmann.
154         
155         Merge from stable branch: 
156
157         Fix for bug #104014, reported by Alex Shaduri:
158         
159         * glib/gspawn-win32.c (protect_argv): New function. Add
160         double-quotes around argv elements that need it, and escape
161         embedded double-quotes with backslash.
162         (do_spawn_with_pipes) Call protect_argv().
163
164         * glib/gspawn-win32-helper.c (WinMain): Call protect_argv().
165
166         * glib/gspawn.c (g_spawn_async_with_pipes): Document argument
167         vector vs. command line details on Win32.
168         (g_spawn_command_line_sync): Improve documentation about
169         backslashes in the command line on Windows.
170
171 Thu Jan 30 16:45:13 2003  Owen Taylor  <otaylor@redhat.com>
172
173         * Makefile.am: Remove references to glib.spec.
174         (#102231)
175
176         * configure.in: Don't generate glib.spec.
177
178 Tue Jan 28 16:08:56 2003  Owen Taylor  <otaylor@redhat.com>
179
180         * m4macros/glib-gettext.m4: If msgfmt isn't found,
181         unset gt_cv_have_gettext. (#102552, Tim Mooney)
182
183 Tue Jan 28 15:18:24 2003  Owen Taylor  <otaylor@redhat.com>
184
185         * autogen.sh (have_automake): Fix version in complaint
186         message about automake. (#104366, Rich Burridge)
187
188 2003-01-22  Pablo Saratxaga  <pablo@mandrakesoft.com>
189
190         * configure.in: Added Bengali (bn) to ALL_LINGUAS
191
192 2003-01-21  Christian Rose  <menthos@menthos.com>
193
194         * configure.in: Added "mn" to ALL_LINGUAS.
195
196 2003-01-20  Pablo Saratxaga  <pablo@mandrakesoft.com>
197
198         * configure.in: Added Farsi (fa), Italian (it), Latvian (lv),
199         Macedonian (mk) to ALL_LINGUAS
200
201 2003-01-16  Daniel Yacob <locales@geez.org>
202
203         * configure.in: added am to ALL_LINGUAS
204         
205 2003-01-12  Tor Lillqvist  <tml@iki.fi>
206
207         * glib/glib.def: Add some missing entries. Thanks to Kenichi SUTO.
208
209 2003-01-05  Tor Lillqvist  <tml@iki.fi>
210
211         * README.win32: Updates.
212
213         * configure.in: Don't use -lm in TRIO_LIBS on Windows, with no
214         libm. (Mingw has a dummy libm.a, but the .pc file should be
215         useable by MSVC users, too.)
216
217 2003-01-25  Ron Steinke  <rsteinke@w-link.net>
218
219         (Ancient, binary compatible fixes found sitting in my tree)
220
221         * Added early checks for count == 0 and buf == NULL in g_io_channel_read()
222
223         * Better error message for EFAULT in  g_io_channel_error_from_errno()
224
225 2003-01-04  Tor Lillqvist  <tml@iki.fi>
226
227         * Makefile.am (BUILT_EXTRA_DIST): Don't distribute glib-zip.
228
229         * {glib,gmodule,gobject,gthread}/Makefile.am:
230         [Win32] Install also the .def files, to help users generate
231         import libraries for other compilers. Uninstall, too.
232
233         * glib-zip.in: Include .def files from above.
234
235         * glib/giowin32.c (g_io_win32_fd_get_flags_internal): Don't claim
236         broken pipes are unreadable. (Well, they are, but read() handles
237         it, and treats it like EOF.)
238
239 Thu Jan  2 16:19:15 2003  Manish Singh  <yosh@gimp.org>
240
241         * configure.in: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE for
242         tests for inline keywords. Fixes #101976.
243
244 2003-01-02  Tor Lillqvist  <tml@iki.fi>
245
246         * glib/gwin32.h: Correct the comment telling what headers have
247         the declarations of some POSIXish functions.
248
249         * glib/giowin32.c (g_io_win32_fd_get_flags_internal): Fix braino:
250         The checks for readability/writeability were backwards.
251
252 2003-01-01  Tor Lillqvist  <tml@iki.fi>
253
254         * glib/gmessages.c (ensure_stderr_valid): New function, parallel
255         to ensure_stdout_valid(). #defined as empty on Unix. Move the
256         alloc_console_called static flag inside these two functions.
257         (ensure_stdout_valid, ensure_stderr_valid): Check the C stdout and
258         stderr streams for validity, instead of what GetStdHandle() returns.
259         (mklevel_prefix): Do use either stderr or stdout on Windows,
260         too. Otherwise g_warning() messages (that are just warnings, by
261         definition) will get mixed with proper stdout output. Noticed in
262         GIMP's gimpconfig-dump.
263         (strdup_convert, mklevel_prefix, g_printerr): Call
264         ensure_stderr_valid() before trying to use stderr.
265         (g_logv): [Win32] Convert message to current codepage before
266         display with MessageBox().
267
268 2002-12-28  Tõivo Leedjärv  <toivo@linux.ee>
269
270         * configure.in: Added et to ALL_LINGUAS.
271