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