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