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