Added "eo" to ALL_LINGUAS. Added Esperanto translation from Charles
[platform/upstream/glib.git] / ChangeLog.pre-2-8
1 2003-07-10  Joel Brich <joel.brich@laposte.net>
2
3         * configure.in: Added "eo" to ALL_LINGUAS.
4
5 Wed Jul  9 16:27:26 2003  Manish Singh  <yosh@gimp.org>
6
7         * glib/gmain.c (g_main_context_unref_and_unlock): check if
8         context->poll_chunk is set before trying to destroy it. For example,
9         this can happen if no sources are added to a context before it is
10         freed.
11
12 2003-07-09  Morten Welinder  <terra@gnome.org>
13
14         * glib/gprintf.c (g_vasprintf): Avoid var declaration after
15         statement.
16
17 2003-07-09  Matthias Clasen  <maclas@gmx.de>
18
19         Support for one-time initialization functions.  (#69668, Sebastian Wilhelmi)
20
21         * configure.in: Check whether double checked locking is safe, define g_once() in
22         glibconfig.h accordingly.
23         * glib/gthread.h: Add GOnce, GOnceStatus, G_ONCE_INIT and g_once_impl.
24         * glib/gthread.c (g_once_impl): Fallback implementation using a mutex if double checked
25         locking is unsafe.
26         * tests/thread-test.c: Add tests for g_once().
27
28 2003-07-02  Matthias Clasen  <maclas@gmx.de>
29
30         * glib/gstrfuncs.c (g_strfreev): Move docs inline, document behavior 
31         for NULL. (#116439, Steve Chaplin)
32
33 2003-06-25  Abigail Brady  <morwen@evilmagic.org>
34  
35         * glib/gconvert.c (g_convert_with_fallback): Use C99 style \uxxxx
36         and \Uxxxxyyyy escapes instead for fallback instead of perl-style
37         \X{xxxx} ones, fixing bug #114284.
38
39 2003-06-25  Tor Lillqvist  <tml@iki.fi>
40
41         * glib/giowin32.c (g_io_channel_unix_new): Pass real &optval and
42         &optlen to getsockopt() instead of NULL. Don't remember why I
43         thought that NULL could be used (as we don't actually use the
44         returned value for anything), the Platform SDK documentation
45         doesn't imply so.
46
47 2003-06-19  Matthias Clasen  <maclas@gmx.de>
48
49         * glib/gutils.c (g_path_get_basename): Move the documentation
50         inline and add details.  (#108505)
51
52 2003-06-18  Matthias Clasen  <maclas@gmx.de>
53
54         * acinclude.m4 (JH_PATH_XML_CATALOG, JH_CHECK_XML_CATALOG): New
55         macros to check for XML catalog contents and path, borrowed from
56         gtk-doc. 
57
58         * configure.in: New option --enable-man to enable regeneration of
59         man pages from Docbook, if the necessary tools are found.
60
61 2003-06-17  Matthias Clasen  <maclas@gmx.de>
62
63         * acinclude.m4 (JH_PATH_XML_CATALOG, JH_CHECK_XML_CATALOG): New
64         macros to check for XML catalog contents and path, borrowed from
65         gtk-doc. 
66         
67         * configure.in: New option --enable-man to enable regeneration of
68         man pages from Docbook, if the necessary tools are found.
69
70 2003-06-15  Tor Lillqvist  <tml@iki.fi>
71
72         * glib-zip.in (DLLDIR): Test where the DLLs actually are.
73
74         * README.win32: Point to FSF's binary Win32 distributions of
75         libiconv and gettext-runtime.
76
77 2003-06-11  Tor Lillqvist  <tml@iki.fi>
78
79         * glib-zip.in (DEVZIP): libtool 1.5 installs DLLs in the bin
80         subdirectory, so get them from there.
81
82         * glib/gwin32.c (g_win32_getlocale): Use "sr@Latn" and "sr" in the
83         same way as the po files for Serbian in Latin and Cyrillic script.
84
85 2003-06-11  Sebastian Wilhelmi  <seppi@seppi.de>
86
87         * configure.in: Remove false &. Spotted by Albert Chin
88         <gtk-devel-list@thewrittenword.com>.
89
90 2003-06-08  Tor Lillqvist  <tml@iki.fi>
91
92         * glib/giowin32.c: Fix indentation and spacing. Use
93         INADDR_LOOPBACK instead of inet_addr("127.0.0.1") and
94         gethostbyaddr().
95
96 Sat Jun  6 16:18:10 2003  Andrew Lanoix  <alanoix@umich.edu>
97
98         * glib/giowin32.c: Resolved thread deadlocks in socket 
99         ichannel code to support Add-Cancel-Add watch functionality 
100         on windows. Also cleaned up socket error handling to not 
101         segfault and do the right thing.
102         
103 Fri Jun  6 10:24:23 2003  Hidetoshi Tajima  <hidetoshi.tajima@sun.com>
104
105         * m4macros/glib-gettext.m4: Test for Solaris native gettext 
106         in libc, seeing if it supports GNU catalog format (#85217).
107         
108 Thu Jun  5 23:40:31 2003  Owen Taylor  <otaylor@redhat.com>
109
110         * glib/gmain.c: When dispatching a source that is
111         !CAN_RECURSE, temporarily remove any file descriptors
112         that that source has registered from the main loop, to keep
113         recursive main loops from busy-waiting if input
114         becomes available on one of those file descriptors.
115         (#112222, Christian Krause)
116
117         * glib/gmain.c (g_source_set_priority): Properly
118         remove the source from the context's source list
119         and reinsert it sorted, rather than simply setting
120         source->next/prev to NULL! (#114274)
121
122 2003-06-06  Matthias Clasen  <maclas@gmx.de>
123
124         * glib/gstring.c (g_string_append_printf_internal): Use
125         g_vasprintf() and g_string_append_len(), thus enabling embedded
126         nuls in the result of g_string_printf().  (#92492, Owen Taylor)
127
128         * tests/string-test.c: Add a test for embedded nuls in the
129         result of g_string_printf().
130
131         * glib/gprintf.[ch]: Synchronize argument names with headers and docs.
132         (g_vasprintf): An implementation of vasprintf(), code was lifted
133         from g_strdup_vprintf().  (#112365)
134
135         * glib/gstrfuncs.c (g_strdup_vprintf): Just use g_vasprintf().
136
137 2003-06-05  Tor Lillqvist  <tml@iki.fi>
138
139         * glib/giochannel.h
140         * glib/gmain.h: Remove bogus (Win32-only) declaration of
141         g_main_poll_win32_msg_add(). No such function exists.
142
143         * glib/gmain.c (g_poll) [Win32]: Use g_win32_error_message() for
144         better warning messages.
145
146 2003-06-04  Noah Levitt  <nlevitt@columbia.edu>
147
148         * glib/gunidecomp.h (combine): Fix typo (#114375). Also, make the
149         function static.
150
151 2003-06-03  Sebastian Wilhelmi  <seppi@seppi.de>
152
153         * configure.in: Test for pthread_setschedparam. If not existant,
154         disable priorities. (#104718)
155
156 Mon Jun  2 14:18:21 2003  Owen Taylor  <otaylor@redhat.com>
157
158         Patch from Jeffrey Stedfast <fejj@ximian.com> (#104825)
159  
160         * glib/gspawn.c (read_data): Don't read() into '&buf', while this
161         is technically okay - it is clearer as just 'buf'.
162         (write_all): New helper function that handles write() interrupts.
163         (write_err_and_exit): Use write_all() instead of write().
164         (fork_exec_with_pipes): Same here.
165         
166 Sun Jun  1 09:42:36 2003  Owen Taylor  <otaylor@redhat.com>
167
168         * glib/giochannel.c (g_io_error_get_from_g_error): Put 
169         the g_return_val_if_fail() in the right place.
170
171 Fri May 31 1:17:45 2003  Ray Strode  <halfline@hawaii.rr.com>
172
173         * glib/giochannel.c (g_io_channel_error_from_errno):
174         Fix typo: should be G_IO_ERROR_UNKNOWN not
175         G_ERROR_ERROR_UNKNOWN
176
177 Fri May 30 19:23:47 2003  Owen Taylor  <otaylor@redhat.com>
178
179         * glib/gstrfuncs.c (g_ascii_strncasecmp)
180         * glib/gstrfuncs.c (g_ascii_strcasecmp): Use TOLOWER()
181         macro instead of g_ascii_tolower() (#107138)
182
183 Fri May 30 19:09:25 2003  Owen Taylor  <otaylor@redhat.com>
184
185         * m4macros/glib-gettext.m4: Backport better handling
186         of ALL_LINGUAS from gettext.m4. (#103808, Andras Salamon)
187
188 Fri May 30 18:46:05 2003  Owen Taylor  <otaylor@redhat.com>
189
190         * m4macros/glib-gettext.m4: expand $exec_prefix as
191         well as $prefix. (#107290, reported by Morten Welinder,
192         patch from Raja Harinath)
193
194 Fri May 30 17:24:23 2003  Owen Taylor  <otaylor@redhat.com>
195
196         * glib-gettextize.in: Quote $srcdir to handle $srcdir
197         with spaces (#107850, Evan Martin)
198
199 Fri May 30 16:48:26 2003  Owen Taylor  <otaylor@redhat.com>
200  
201         * glib/giochannel.c (g_io_channel_error_from_errno):
202         Silently return G_IO_CHANNEL_ERROR_FAILED for EINTR,
203         since close() can return EINTR. (#11842, Balazs Scheidler)
204  
205 Fri May 30 15:51:43 2003  Owen Taylor  <otaylor@redhat.com>
206
207         * glib/giochannel.c (g_io_error_get_from_g_error): 
208         Do a g_return_val_if_fail() on err == NULL to be a
209         bit more robuts on buggy IO channel implementations.
210         (#113396, Dan Winship)
211
212 Tue May 27 19:56:35 2003  Owen Taylor  <otaylor@redhat.com>
213
214         * glib/gmacros.h: __PRETTY_FUNCTION__ was made a non-token
215         before gcc-3.0.0 for C++. (Fix from Martin Kretzschmar,
216         #113797)
217
218 2003-05-28  Matthias Clasen  <maclas@gmx.de>
219
220         * tests/patterntest.c: Remain silent when sucessful. 
221
222         * tests/Makefile.am: Add patterntest to make check.  (113143)
223
224 2003-05-27  Matthias Clasen  <maclas@gmx.de>
225
226         * glib/gstrfuncs.c (g_strdup): Use memcpy instead of
227         strcpy. (#106988, Christian Biere)
228
229 2003-05-27  Matthias Clasen  <maclas@gmx.de>
230
231         * glib/gstrfuncs.c (g_strdup): Use memcpy instead of
232         strcpy. (#106988, Christian Biere)
233
234 2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
235
236         * glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
237
238 2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
239
240         * glib/guniprop.c: Remove stale comment.
241
242 2003-05-22  Noah Levitt  <nlevitt@columbia.edu>
243
244         * glib/guniprop.c: Update g_unichar_iswide to Unicode 4.0 (#113404).
245
246 2003-05-21  Noah Levitt  <nlevitt@columbia.edu>
247
248         * glib/guniprop.c: Fix obscure typo in case conversion routine
249         (#113469).
250
251 Tue May 20 14:14:55 2003  Manish Singh  <yosh@gimp.org>
252
253         * configure.in: wrap 64-bit MIN/MAX limit constants in
254         G_GINT64_CONSTANT. Fixes bug #108699.
255
256 2003-05-19  Noah Levitt  <nlevitt@columbia.edu>
257
258         * glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
259         return G_UNICODE_BREAK_UNKNOWN if the character is greater than
260         G_UNICODE_LAST_CHAR.
261
262 2003-05-19  Noah Levitt  <nlevitt@columbia.edu>
263
264         * glib/glist.c: Remove unused function g_list_sort2 (bug #113203).
265
266 2003-05-19  Noah Levitt  <nlevitt@columbia.edu>
267
268         * glib/gunidecomp.c: Fix off-by-one error in
269         g_unicode_canonical_ordering (bug #113260).
270
271 2003-05-19 Arafat Medini <lumina@silverpen.de>
272
273         * ar.po: Added ar to ALL_LINGUAS
274
275 2003-05-17  Telsa Gwynne  <hobbit@aloss.ukuu.org.uk>
276
277         * configure.in: Added cy to ALL_LINGUAS
278
279 2003-05-05  Matthias Clasen  <maclas@gmx.de>
280
281         * glib/gstrfuncs.c (g_ascii_dtostr): 
282         (g_ascii_formatd): 
283         (g_ascii_strtod): Some doc fixes.  (#111805)
284
285 2003-05-05  Christian Rose  <menthos@menthos.com>
286
287         * configure.in: Added sr and sr@Latn to ALL_LINGUAS.
288
289 Thu Apr 24 19:12:05 2003  Owen Taylor  <otaylor@redhat.com>
290
291         * autogen.sh (have_libtool): Accept libtool-1.5. (#111483)
292
293 2003-04-09  Matthias Clasen  <maclas@gmx.de>
294
295         * INSTALL: 
296         * INSTALL.in: Remove list of configuration flags, since these 
297         are already documented in docs/reference/glib/building.sgml.
298
299 2003-04-08  Matthias Clasen  <maclas@gmx.de>
300
301         * INSTALL: Move Cross-compliation information to reference manual.
302
303 Mon Apr  7 13:40:28 2003  Owen Taylor  <otaylor@redhat.com>
304
305         * glib/gmain.c (g_main_loop_run): When waiting for
306         the main loop to be freed up, wait on either
307         !loop->is_running or got_ownership, not both.
308         (Caused gtk_dialog_run() not to work in other
309         threads, reported by Jean-Yves Lefort)
310
311 2003-04-07  Matthias Clasen  <maclas@gmx.de>
312
313         * glib/gutf8.c (g_utf8_strlen): Warn if p == NULL && max != 0.
314         (#110087) 
315
316 2003-04-01  Tor Lillqvist  <tml@iki.fi>
317
318         * glib/glib.def: Add g_string_chunk_insert_len.
319
320 2003-04-01  Matthias Clasen  <maclas@gmx.de>
321
322         * glib/gstring.[hc] (g_string_chunk_insert_len): New function, to
323         insert possible non-nul-terminated byte sequences into a string
324         chunk.  (#96279)
325         (g_string_chunk_insert): Implement in terms of
326         g_string_chunk_insert_len() now.
327
328 2003-03-30  Matthias Clasen  <maclas@gmx.de>
329
330         * glib/gstring.c (g_string_new): Optimize the common cases 
331         (init == NULL or init == "") a bit.
332         * glib/gmarkup.c, glib/gmessages.c, glib/gscanner.c,
333         glib/gshell.c, glib/gspawn-win32-helper.c, glib/gspawn-win32.c,
334         glib/gspawn.c, gobject/gvaluetransform.c: replace uses of 
335         g_string_new ("") by g_string_new (NULL).  (#106973, Morten Welinder)
336
337         * glib/gutf8.c (UNICODE_VALID): Update to Unicode 3.1 and optimize
338         a bit.  (#107427, Noah Lewitt)
339
340         * glib/libcharset/config.charset: Add cp1251 support for Solaris.
341         (#104738, Hidetoshi Tajima)
342
343         * glib/gconvert.c (UnsafeCharacterSet): Get rid of
344         UNSAFE_DOS_PATH.
345         (acceptable): Align with RFC2396.  (#59653)
346
347         * tests/uri-test.c: Adjust to the changes above.
348
349 2003-03-26  Christian Rose  <menthos@menthos.com>
350
351         * configure.in: Added "yi" to ALL_LINGUAS.
352
353 2003-03-19  Matthias Clasen  <maclas@gmx.de>
354
355         * glib/giochannel.c (g_io_channel_read_to_end): Fix docs.
356
357 2003-03-19  Anders Carlsson  <andersca@codefactory.se>
358
359         * configure.in: Bump version to 2.3.0
360
361 2003-03-14  Sebastian Wilhelmi  <seppi@seppi.de>
362
363         * glib/gthread.c: Do not define function g_thread_init_glib, if
364         not G_THREADS_ENABLED. It's not called bu g_thread_init() then,
365         but calls other, in that case undefined functions.
366
367 2003-03-06  Matthias Clasen  <maclas@gmx.de>
368
369         * glib/gmain.c (g_main_context_find_source_by_id): 
370         (g_main_context_find_source_by_funcs_user_data): Fix FALSE/NULL
371         confusion.  (#107646, Morten Welinder)
372
373 2003-03-01  James Henstridge  <james@daa.com.au>
374
375         * autogen.sh: require automake 1.7.  Add calls to libtoolize and
376         gtkdocize.  Clean up some of the error messages.
377
378         * configure.in: move version declaration to the top of the file
379         (before AC_INIT), using M4 macros.
380         GLIB_AC_DIVERT_BEFORE_HELP() calls no longer necessary, due to use
381         of M4 macro expansion in help messages instead.
382         Convert AC_ARG_WITH/AC_ARG_ENABLE calls to use AC_HELP_STRING to
383         format help strings.  Use quadrigraphs to get square brackets to
384         show correctly.
385         Replace gtk-doc checks with a call to GTK_DOC_CHECK() macro.
386         Use AC_CONFIG_COMMANDS([glibconfig.h], ...) to output
387         glibconfig.h, so that "./config.status glibconfig.h" works.
388         Add an extra AC_CONFIG_FILES call listing other files we want
389         generated by config.status protected by an "if false" block.  This
390         way automake generates the rules needed to rebuild the files for
391         us.
392         Add quotes in various places.
393
394         * docs/reference/*/Makefile.am: convert to use the common
395         gtk-doc.make file.  This localises the complexity to a single
396         makefile fragment maintained with gtk-doc itself.
397
398         * */Makefile.am: remove unneeded rules to build win32 files with
399         config.status.  Automake now does this for us.
400         Replace instances of @FOO@ with $(FOO) where appropriate -- this
401         allows automake to do a better job checking the makefile.
402         Add some files to DISTCLEANFILES where appropriate
403
404         * Makefile.am: use the DISTCHECK_CONFIGURE_FLAGS variable to
405         ensure that --enable-gtk-doc is passed to configure during a
406         distcheck.  Remove the custom distcheck, since the standard one
407         will now do.
408
409         * gobject/Makefile.am: switch to BUILT_SOURCES, since that now
410         works.
411
412 2003-02-26  Matthias Clasen  <maclas@gmx.de>
413
414         * glib/gstrfuncs.c (g_strdup_vprintf): Use g_strndup, not
415         g_strdup, since we know the length in advance.
416
417         * glib/gunidecomp.c (g_unicode_canonical_decomposition): Use
418         g_malloc instead of directly using malloc.
419
420 2003-02-25  Tor Lillqvist  <tml@iki.fi>
421
422         * glib/glib.def: Add a couple of missing entries, thanks to Cedric
423         Gustin. Thread initialization function changes according to
424         Sebastian Wilhelmi's changes below (2003-02-14).
425
426 2003-02-24  Matthias Clasen  <maclas@gmx.de>
427
428         * glib/gdir.c (g_dir_read_name): Clarify documentation.
429
430 2003-02-18  Sebastian Wilhelmi  <seppi@seppi.de>
431
432         * configure.in: Make glib_thread_test not unnecessarily convert
433         between int and void*. (#106278). Let main return int.
434
435         * configure.in: Add an argument to specify the default thread
436         attribute to glib_thread_test. Disappeared somewhere between 2.0
437         and 2.2.
438
439 2003-02-14  Sebastian Wilhelmi  <seppi@seppi.de>
440
441         Fixes for #101264 and #99372:
442
443         * glib/gconvert.h, glib/gmain.c, glib/gmem.c, glib/gmessages.c,
444         glib/grand.c: Include gthreadinit.h and rename the thread
445         initialization functions a bit and let them start with _, so that
446         later we can stop exporting them.
447         
448         * glib/gmem.c, glib/gmessages.c: Move the g_private_new() calls to
449         new functions. They have to be called after setting
450         g_threads_got_initialized to TRUE (see #101264).
451
452         * glib/gthread.c: Include gthreadinit.h. Renamed g_mutex_init() to
453         g_thread_init_glib(). Call the thread initialization functions
454         (which are not allowed to call g_private_new), then set
455         g_threads_got_initialized to TRUE, then call the other thread
456         initialization functions (which must not call anything but
457         g_private_new()).
458         
459         * glib/gthreadinit.h: New private header to cleanly declare all
460         thread initialization functions.
461
462         * gthread/gthread-impl.c: Include gthreadinit.h. In
463         g_thread_init() just call g_thread_init_glib(), which in turn calls the
464         other functions (see #99372).
465         
466         * glib/Makefile.am: Added gthreadinit.h.
467
468 2003-02-12  Sebastian Wilhelmi  <seppi@seppi.de>
469
470         * configure.in: Make GLib recognize Tru64Unix thread system. (#103020)
471
472 2003-02-11  Tor Lillqvist  <tml@iki.fi>
473
474         * Makefile.am (EXTRA_DIST): Include ChangeLog.pre-2-2.
475
476         * glib-zip.in: Include also the gtk-doc/html documentation in the
477         developer package.
478
479         * README.win32: Updates.
480
481 2003-02-11  Sebastian Wilhelmi  <seppi@seppi.de>
482
483         * AUTHORS: Changed my e-mail address.
484         * glib/grand.c: Removed my e-mail address.
485
486 2003-02-10  Mohammad DAMT  <mdamt@bisnisweb.com>
487
488         * po/id.po: Added Indonesian translation
489         * configure.in: Added "id" to ALL_LINGUAS
490
491 2003-02-06  Matthias Clasen  <maclas@gmx.de>
492
493         * glib/gmessages.h: 
494         * glib/gmem.h: 
495         * glib/ghash.h: 
496         * glib/gasyncqueue.h: 
497         * glib/garray.h: 
498         * glib/ghook.h: 
499         * glib/gtypes.h: Fix a bunch of typos in header comments.
500         (#102422, Morten Welinder)
501
502 2003-02-04  Tor Lillqvist  <tml@iki.fi>
503
504         * glib/giowin32.c (g_io_channel_unix_new): Fix typo: Should be
505         SOCKET_ERROR, not SO_ERROR. Noticed by Daniel Kaufmann.
506         
507         Merge from stable branch: 
508
509         Fix for bug #104014, reported by Alex Shaduri:
510         
511         * glib/gspawn-win32.c (protect_argv): New function. Add
512         double-quotes around argv elements that need it, and escape
513         embedded double-quotes with backslash.
514         (do_spawn_with_pipes) Call protect_argv().
515
516         * glib/gspawn-win32-helper.c (WinMain): Call protect_argv().
517
518         * glib/gspawn.c (g_spawn_async_with_pipes): Document argument
519         vector vs. command line details on Win32.
520         (g_spawn_command_line_sync): Improve documentation about
521         backslashes in the command line on Windows.
522
523 Thu Jan 30 16:45:13 2003  Owen Taylor  <otaylor@redhat.com>
524
525         * Makefile.am: Remove references to glib.spec.
526         (#102231)
527
528         * configure.in: Don't generate glib.spec.
529
530 Tue Jan 28 16:08:56 2003  Owen Taylor  <otaylor@redhat.com>
531
532         * m4macros/glib-gettext.m4: If msgfmt isn't found,
533         unset gt_cv_have_gettext. (#102552, Tim Mooney)
534
535 Tue Jan 28 15:18:24 2003  Owen Taylor  <otaylor@redhat.com>
536
537         * autogen.sh (have_automake): Fix version in complaint
538         message about automake. (#104366, Rich Burridge)
539
540 2003-01-22  Pablo Saratxaga  <pablo@mandrakesoft.com>
541
542         * configure.in: Added Bengali (bn) to ALL_LINGUAS
543
544 2003-01-21  Christian Rose  <menthos@menthos.com>
545
546         * configure.in: Added "mn" to ALL_LINGUAS.
547
548 2003-01-20  Pablo Saratxaga  <pablo@mandrakesoft.com>
549
550         * configure.in: Added Farsi (fa), Italian (it), Latvian (lv),
551         Macedonian (mk) to ALL_LINGUAS
552
553 2003-01-16  Daniel Yacob <locales@geez.org>
554
555         * configure.in: added am to ALL_LINGUAS
556         
557 2003-01-12  Tor Lillqvist  <tml@iki.fi>
558
559         * glib/glib.def: Add some missing entries. Thanks to Kenichi SUTO.
560
561 2003-01-05  Tor Lillqvist  <tml@iki.fi>
562
563         * README.win32: Updates.
564
565         * configure.in: Don't use -lm in TRIO_LIBS on Windows, with no
566         libm. (Mingw has a dummy libm.a, but the .pc file should be
567         useable by MSVC users, too.)
568
569 2003-01-25  Ron Steinke  <rsteinke@w-link.net>
570
571         (Ancient, binary compatible fixes found sitting in my tree)
572
573         * Added early checks for count == 0 and buf == NULL in g_io_channel_read()
574
575         * Better error message for EFAULT in  g_io_channel_error_from_errno()
576
577 2003-01-04  Tor Lillqvist  <tml@iki.fi>
578
579         * Makefile.am (BUILT_EXTRA_DIST): Don't distribute glib-zip.
580
581         * {glib,gmodule,gobject,gthread}/Makefile.am:
582         [Win32] Install also the .def files, to help users generate
583         import libraries for other compilers. Uninstall, too.
584
585         * glib-zip.in: Include .def files from above.
586
587         * glib/giowin32.c (g_io_win32_fd_get_flags_internal): Don't claim
588         broken pipes are unreadable. (Well, they are, but read() handles
589         it, and treats it like EOF.)
590
591 Thu Jan  2 16:19:15 2003  Manish Singh  <yosh@gimp.org>
592
593         * configure.in: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE for
594         tests for inline keywords. Fixes #101976.
595
596 2003-01-02  Tor Lillqvist  <tml@iki.fi>
597
598         * glib/gwin32.h: Correct the comment telling what headers have
599         the declarations of some POSIXish functions.
600
601         * glib/giowin32.c (g_io_win32_fd_get_flags_internal): Fix braino:
602         The checks for readability/writeability were backwards.
603
604 2003-01-01  Tor Lillqvist  <tml@iki.fi>
605
606         * glib/gmessages.c (ensure_stderr_valid): New function, parallel
607         to ensure_stdout_valid(). #defined as empty on Unix. Move the
608         alloc_console_called static flag inside these two functions.
609         (ensure_stdout_valid, ensure_stderr_valid): Check the C stdout and
610         stderr streams for validity, instead of what GetStdHandle() returns.
611         (mklevel_prefix): Do use either stderr or stdout on Windows,
612         too. Otherwise g_warning() messages (that are just warnings, by
613         definition) will get mixed with proper stdout output. Noticed in
614         GIMP's gimpconfig-dump.
615         (strdup_convert, mklevel_prefix, g_printerr): Call
616         ensure_stderr_valid() before trying to use stderr.
617         (g_logv): [Win32] Convert message to current codepage before
618         display with MessageBox().
619
620 2002-12-28  Tõivo Leedjärv  <toivo@linux.ee>
621
622         * configure.in: Added et to ALL_LINGUAS.
623