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