Drop the Win32-specific implementation. It used WideCharToMultiByte(),
[platform/upstream/glib.git] / ChangeLog.pre-2-12
1 2003-08-12  Tor Lillqvist  <tml@iki.fi>
2
3         * glib/gconvert.c (g_locale_from_utf8): Drop the Win32-specific
4         implementation. It used WideCharToMultiByte(), which is broken as
5         it stores unconvertable characters as fallback characters
6         (question marks) in the destination string without being able to
7         tell how much of the conversion succeeded. Using g_convert() like
8         on Unix is better and simpler. (#117872)
9
10         (g_locale_to_utf8): No need for the Win32-specific implementation
11         here, either.
12
13         (have_broken_filenames): Define as TRUE on Win32.
14
15         (g_filename_to_utf8, g_filename_from_utf8): Drop Win32 ifdefs. As
16         have_broken_filenames() now is defined TRUE on Win32, works as
17         before.
18         
19 2003-08-11  Matthias Clasen  <maclas@gmx.de>
20
21         * acinclude.m4: Copy newer versions of JH_CHECK_XML_CATALOG and
22         JH_PATH_XML_CATALOG from gtk-doc to enable configuring without
23         xmlcatalog in PATH.  (#119115) 
24
25 2003-08-10  Tor Lillqvist  <tml@iki.fi>
26
27         * glib/gutils.c (g_getenv): Don't use a cache of variable name to
28         value mappings on Win32, as that breaks g_setenv() and
29         g_unsetenv(). Only call ExpandEnvironmentStrings() if necessary,
30         and in that case return a quarkified string. It is still
31         questionable how necessary expanding embedded environment variable
32         references is. Possibly the whole Win32-specific g_getenv()
33         implementation could be removed. (#119520)
34
35 2003-08-08  Tor Lillqvist  <tml@iki.fi>
36
37         * glib/glib.def: Add g_once_impl.
38
39         * glib/gutils.c (g_setenv): Fix syntax error in the !HAVE_SETENV
40         case.
41
42 2003-08-08  Matthias Clasen  <maclas@gmx.de>
43
44         * tests/env-test.c (main): Remove a test for getenv() behaviour
45         which isn't specified by SUS and doesn't work on Solaris.
46
47 2003-08-07  Matthias Clasen  <maclas@gmx.de>
48
49         * tests/env-test.c: Add tests for '=' in names and values.
50
51         * glib/gutils.c (g_setenv, g_unsetenv): Check that the variable
52         name doesn't contain '='. Add a declaration for environ.  (#119338)
53
54         * acinclude.m4: Tighten the snprintf() test to check behaviour on
55         zero-size buffers.  (#106091) 
56
57         * tests/patterntest.c: Specify test strings in UTF-8, remove all
58         charset conversion. Replace the NOISY define by a cmdline arg
59         --noisy.   (#115757) 
60
61 Thu Aug  7 15:01:09 2003  Owen Taylor  <otaylor@redhat.com>
62
63         * m4macros/glib-gettext.m4: Set $LIBS to include
64         -lintl when checking for dcgettext and 
65         _nl_msg_cat_cntr. (Tim Mooney, #119171)
66
67 Thu Aug  7 14:15:44 2003  Owen Taylor  <otaylor@redhat.com>
68
69         * glib/gmain.c (g_idle_source_new): Make the default priority
70         for idle sources G_PRIORITY_DEFAULT_IDLE as anybody would
71         expect and document that. (#114461, reported by Andy Wingo)
72
73 2003-08-06  Noah Levitt  <nlevitt@columbia.edu>
74
75         * tests/casemap.txt:
76         * tests/gen-casemap-txt.pl: Add test for special case not at inital
77         position in the string, the bug just fixed. (#118957)
78
79 2003-08-05  Noah Levitt  <nlevitt@columbia.edu>
80
81         * glib/guniprop.c: Get rid of "len" parameter to output_special_case
82         and output_marks, and make them work more like g_unichar_to_utf8,
83         fixing a bug in the process. (#118957)
84
85 2003-08-05  Hans Breuer  <hans@breuer.org>
86
87         * glib/gnulib/makefile.msc : (new file) for msvc build
88
89         * glib/gnulib/vasnprintf.c : use glib/galloc.h
90
91         * glib/gnulib/printf.h : #include <stdio.h> for FILE*
92
93         * glib/makefile.msc.in : replace trio with gnulib
94
95         * glib/glib.def : updated externals
96
97         * glib/guniprop.c : fix for guniprop.c(582) : error C2082: 
98         redefinition of formal parameter 'len'
99
100 2003-08-04  Noah Levitt  <nlevitt@columbia.edu>
101
102         * tests/unicode-normalize.c: We do handle > BMP now, so test it.
103
104 2003-07-31  Noah Levitt  <nlevitt@columbia.edu>
105
106         * tests/file-test.c: s/g_read_link/g_file_read_link/ (#118727)
107
108 2003-07-31  Noah Levitt  <nlevitt@columbia.edu>
109
110         * tests/unicode-encoding.c: Return nonzero exit status if the test
111         fails. (#118729) 
112
113 2003-07-31  Noah Levitt  <nlevitt@columbia.edu>
114
115         * tests/utf8.txt: Change instances of U+10ffff to U+10fffd, since that
116         is the last valid unicode character. Add check that U+10ffff is
117         NOTUNICODE. (#118730)
118
119 2003-07-30  Noah Levitt  <nlevitt@columbia.edu>
120
121         * glib/gen-unicode-tables.pl:
122         * glib/gunibreak.c:
123         * glib/gunibreak.h:
124         * glib/gunichartables.h:
125         * glib/gunicode.h:
126         * glib/gunicomp.h:
127         * glib/gunidecomp.c:
128         * glib/gunidecomp.h:
129         * glib/guniprop.c:
130         * tests/casefold.txt:
131         * tests/casemap.txt:
132         * tests/gen-casefold-txt.pl:
133         * tests/gen-casemap-txt.pl: Update Unicode data to 4.0. (#107974)
134
135 2003-07-31  Tor Lillqvist  <tml@iki.fi>
136
137         * glib/gspawn-win32.c: When possible, manage without the helper
138         process. (Part of the enhancements outlined in #98737.) Speeds up
139         GIMP 1.3's first-time-run plug-in query phase a lot.
140
141         Plug a file descriptor (and thus Win32 handle) leak: close the
142         read end of the child error report pipe after use.
143
144 2003-07-30  Matthias Clasen  <maclas@gmx.de>
145
146         * glib/gutils.c (g_unsetenv): Use same argument name as in header,
147         to pacify gtk-doc. 
148         (g_getenv): Move docs inline, add comment about lifespan of return
149         value. 
150
151         * glib-2.0.pc.in (Libs): Remove forgotten @TRIO_LIBS@.  (#118616,
152         Noah Levitt) 
153
154         * glib/gfileutils.[hc]: Rename g_read_link() to g_file_read_link()
155         to better match the remaining file utilities in the g_file_
156         namespace and to better separate it from readlink(). This is
157         hopefully no problem as the function is just 2 days old.
158
159 2003-07-29  Matthias Clasen  <maclas@gmx.de>
160
161         * glib/gqsort.[hc] (g_qsort_with_data): 
162         * glib/gconvert.[hc] (g_filename_to_uri, g_filename_from_uri): 
163         * glib/gfileutils.[hc] (g_mkstemp, g_file_open_tmp): Use gchar,
164         gint, gsize instead of char, int, size_t in the interface for
165         consistency.  (#118567) 
166
167         Replace trio printf() by gnulib vasnprintf():  (#101874)
168         
169         * configure.in: Define HAVE_LONG_LONG_FORMAT if system printf
170         understands %llu; rename enable_trio to enable_included_printf;
171         add misc. tests needed for gnulib vasnprintf(); define
172         G_GINT{16,32,64}_MODIFIER in glibconfig.h.
173
174         * acinclude.m4: Misc tests needed for gnulib vasnprintf():
175         AC_FUNC_SNPRINTF_C99, bh_C_SIGNED, jm_AC_TYPE_LONG_LONG, 
176         gt_TYPE_LONGDOUBLE, gt_TYPE_WCHAR_T, gt_TYPE_WINT_T,
177         gt_AC_TYPE_INTMAX_T, jm_AC_HEADER_STDINT_H,  
178         jm_AC_HEADER_INTTYPES_H. 
179
180         * glib/Makefile.am: Replace TRIO_SUBDIR by PRINTF_SUBDIR and
181         trio_libtrio_la by printf_la.  
182
183         * glib/gprintfint.h: Include gnulib/printf.h and use _g_gnulib_
184         functions instead of _g_trio_ functions. 
185
186         * glib/trio/*: Removed
187
188         * glib/gnulib/*: vasnprintf() implementation from gnulib, patched
189         to live in the _g_gnulib namespace, use g_malloc instead of
190         malloc, and support long long printing even if system printf
191         doesn't. For more details, see glib/gnulib/README.
192         
193         * tests/printf-test.c: Add tests for 64 bit printing.
194
195 2003-07-28  Matthias Clasen  <maclas@gmx.de>
196
197         * glib/gfileutils.h: 
198         * glib/gfileutils.c: New function g_read_link(). (#72545)
199
200         * configure.in: Check for setenv, unsetenv, readlink and symlink.
201
202         * tests/file-test.c (test_readlink): Test for g_read_link() (only
203         on systems supporting symbolic links).
204
205         * tests/env-test.c: New test for g_{get,set,unset}env().
206
207         * tests/Makefile.am (test_programs): Add env-test.
208
209         * glib/gutils.h: 
210         * glib/gutils.c: New functions g_setenv() and g_unsetenv().  (#100763)
211
212 2003-07-26  Matthias Clasen  <maclas@gmx.de>
213
214         * tests/printf-test.c: New test, tests printf behaviour. This was
215         already mentioned in Makefile.am by accident.
216
217         * tests/file-test.c: New test, currently contains mkstemp tests
218         copied from testglib.c. 
219
220         * tests/Makefile.am (test_programs): Add file-test.
221
222         * glib/gprintf.c: Fix all g_return_val_if_fail () checks to return
223         -1 on error to match the behaviour of the stdio printf() family.
224
225         * glib/garray.h: 
226         * glib/garray.c (g_{,byte,pointer}_remove_range): New functions to
227         remove a range of elements from an array.  (#94879, Nalin Dahyabhai)
228
229         * glib/gmessages.c (g_logv): Remove the 1024 char limit in the
230         common (non-recursive) case.
231
232 2003-07-25  Matthias Clasen  <maclas@gmx.de>
233
234         * glib/gwin32.c: 
235         * glib/gutf8.c: 
236         * glib/gunicollate.c: 
237         * glib/gtree.c: 
238         * glib/gspawn.c: 
239         * glib/gmain.c: 
240         * glib/giochannel.c: 
241         * glib/gfileutils.c: 
242         * glib/gerror.c: 
243         * glib/gconvert.c: 
244         * glib/gasyncqueue.c: 
245         * glib/gmem.c: Remove some explicit Docbook markup which is no
246         longer necessary since gtk-doc does the right thing.
247
248         * glib/gutf8.c (g_utf8_get_char_validated): Work around gtk-doc stupidity.
249
250 2003-07-20  Hans Breuer  <hans@breuer.org>
251
252         * glib/trio/makefile.msc : (new file) for msvc build
253
254         * glib/glib.def : removed some duplicated entries
255
256         * glib/gscanner.c : add same workaround for MSVC(5.0)
257         which does not allow to cast an uint64 to float.
258         Same as in gvaluetransform.c
259         Also move #include <io.h> behind inclusion of "glib.h"
260         which defines the needed G_OS_WIN32
261
262         * glib/makefile.msc.in : added gprintf.obj, trio\trio.lib
263         as well as shell32.lib
264
265         * tests/spawn-test.c : include <io.h> on win32
266
267 2003-07-12  Matthias Clasen  <maclas@gmx.de>
268
269         * glib/gprintf.c: Doc additions.
270
271 2003-07-10  Joel Brich <joel.brich@laposte.net>
272
273         * configure.in: Added "eo" to ALL_LINGUAS.
274
275 Wed Jul  9 16:27:26 2003  Manish Singh  <yosh@gimp.org>
276
277         * glib/gmain.c (g_main_context_unref_and_unlock): check if
278         context->poll_chunk is set before trying to destroy it. For example,
279         this can happen if no sources are added to a context before it is
280         freed.
281
282 2003-07-09  Morten Welinder  <terra@gnome.org>
283
284         * glib/gprintf.c (g_vasprintf): Avoid var declaration after
285         statement.
286
287 2003-07-09  Matthias Clasen  <maclas@gmx.de>
288
289         Support for one-time initialization functions.  (#69668, Sebastian
290         Wilhelmi) 
291
292         * configure.in: Check whether double checked locking is safe,
293         define g_once() in glibconfig.h accordingly.
294         * glib/gthread.h: Add GOnce, GOnceStatus, G_ONCE_INIT and g_once_impl.
295         * glib/gthread.c (g_once_impl): Fallback implementation using a
296         mutex if double checked locking is unsafe.
297         * tests/thread-test.c: Add tests for g_once().
298
299 2003-07-02  Matthias Clasen  <maclas@gmx.de>
300
301         * glib/gstrfuncs.c (g_strfreev): Move docs inline, document behavior 
302         for NULL. (#116439, Steve Chaplin)
303
304 2003-06-25  Abigail Brady  <morwen@evilmagic.org>
305  
306         * glib/gconvert.c (g_convert_with_fallback): Use C99 style \uxxxx
307         and \Uxxxxyyyy escapes instead for fallback instead of perl-style
308         \X{xxxx} ones, fixing bug #114284.
309
310 2003-06-25  Tor Lillqvist  <tml@iki.fi>
311
312         * glib/giowin32.c (g_io_channel_unix_new): Pass real &optval and
313         &optlen to getsockopt() instead of NULL. Don't remember why I
314         thought that NULL could be used (as we don't actually use the
315         returned value for anything), the Platform SDK documentation
316         doesn't imply so.
317
318 2003-06-19  Matthias Clasen  <maclas@gmx.de>
319
320         * glib/gutils.c (g_path_get_basename): Move the documentation
321         inline and add details.  (#108505)
322
323 2003-06-18  Matthias Clasen  <maclas@gmx.de>
324
325         * acinclude.m4 (JH_PATH_XML_CATALOG, JH_CHECK_XML_CATALOG): New
326         macros to check for XML catalog contents and path, borrowed from
327         gtk-doc. 
328
329         * configure.in: New option --enable-man to enable regeneration of
330         man pages from Docbook, if the necessary tools are found.
331
332 2003-06-17  Matthias Clasen  <maclas@gmx.de>
333
334         * acinclude.m4 (JH_PATH_XML_CATALOG, JH_CHECK_XML_CATALOG): New
335         macros to check for XML catalog contents and path, borrowed from
336         gtk-doc. 
337         
338         * configure.in: New option --enable-man to enable regeneration of
339         man pages from Docbook, if the necessary tools are found.
340
341 2003-06-15  Tor Lillqvist  <tml@iki.fi>
342
343         * glib-zip.in (DLLDIR): Test where the DLLs actually are.
344
345         * README.win32: Point to FSF's binary Win32 distributions of
346         libiconv and gettext-runtime.
347
348 2003-06-11  Tor Lillqvist  <tml@iki.fi>
349
350         * glib-zip.in (DEVZIP): libtool 1.5 installs DLLs in the bin
351         subdirectory, so get them from there.
352
353         * glib/gwin32.c (g_win32_getlocale): Use "sr@Latn" and "sr" in the
354         same way as the po files for Serbian in Latin and Cyrillic script.
355
356 2003-06-11  Sebastian Wilhelmi  <seppi@seppi.de>
357
358         * configure.in: Remove false &. Spotted by Albert Chin
359         <gtk-devel-list@thewrittenword.com>.
360
361 2003-06-08  Tor Lillqvist  <tml@iki.fi>
362
363         * glib/giowin32.c: Fix indentation and spacing. Use
364         INADDR_LOOPBACK instead of inet_addr("127.0.0.1") and
365         gethostbyaddr().
366
367 Sat Jun  6 16:18:10 2003  Andrew Lanoix  <alanoix@umich.edu>
368
369         * glib/giowin32.c: Resolved thread deadlocks in socket 
370         ichannel code to support Add-Cancel-Add watch functionality 
371         on windows. Also cleaned up socket error handling to not 
372         segfault and do the right thing.
373         
374 Fri Jun  6 10:24:23 2003  Hidetoshi Tajima  <hidetoshi.tajima@sun.com>
375
376         * m4macros/glib-gettext.m4: Test for Solaris native gettext 
377         in libc, seeing if it supports GNU catalog format (#85217).
378         
379 Thu Jun  5 23:40:31 2003  Owen Taylor  <otaylor@redhat.com>
380
381         * glib/gmain.c: When dispatching a source that is
382         !CAN_RECURSE, temporarily remove any file descriptors
383         that that source has registered from the main loop, to keep
384         recursive main loops from busy-waiting if input
385         becomes available on one of those file descriptors.
386         (#112222, Christian Krause)
387
388         * glib/gmain.c (g_source_set_priority): Properly
389         remove the source from the context's source list
390         and reinsert it sorted, rather than simply setting
391         source->next/prev to NULL! (#114274)
392
393 2003-06-06  Matthias Clasen  <maclas@gmx.de>
394
395         * glib/gstring.c (g_string_append_printf_internal): Use
396         g_vasprintf() and g_string_append_len(), thus enabling embedded
397         nuls in the result of g_string_printf().  (#92492, Owen Taylor)
398
399         * tests/string-test.c: Add a test for embedded nuls in the
400         result of g_string_printf().
401
402         * glib/gprintf.[ch]: Synchronize argument names with headers and docs.
403         (g_vasprintf): An implementation of vasprintf(), code was lifted
404         from g_strdup_vprintf().  (#112365)
405
406         * glib/gstrfuncs.c (g_strdup_vprintf): Just use g_vasprintf().
407
408 2003-06-05  Tor Lillqvist  <tml@iki.fi>
409
410         * glib/giochannel.h
411         * glib/gmain.h: Remove bogus (Win32-only) declaration of
412         g_main_poll_win32_msg_add(). No such function exists.
413
414         * glib/gmain.c (g_poll) [Win32]: Use g_win32_error_message() for
415         better warning messages.
416
417 2003-06-04  Noah Levitt  <nlevitt@columbia.edu>
418
419         * glib/gunidecomp.h (combine): Fix typo (#114375). Also, make the
420         function static.
421
422 2003-06-03  Sebastian Wilhelmi  <seppi@seppi.de>
423
424         * configure.in: Test for pthread_setschedparam. If not existant,
425         disable priorities. (#104718)
426
427 Mon Jun  2 14:18:21 2003  Owen Taylor  <otaylor@redhat.com>
428
429         Patch from Jeffrey Stedfast <fejj@ximian.com> (#104825)
430  
431         * glib/gspawn.c (read_data): Don't read() into '&buf', while this
432         is technically okay - it is clearer as just 'buf'.
433         (write_all): New helper function that handles write() interrupts.
434         (write_err_and_exit): Use write_all() instead of write().
435         (fork_exec_with_pipes): Same here.
436         
437 Sun Jun  1 09:42:36 2003  Owen Taylor  <otaylor@redhat.com>
438
439         * glib/giochannel.c (g_io_error_get_from_g_error): Put 
440         the g_return_val_if_fail() in the right place.
441
442 Fri May 31 1:17:45 2003  Ray Strode  <halfline@hawaii.rr.com>
443
444         * glib/giochannel.c (g_io_channel_error_from_errno):
445         Fix typo: should be G_IO_ERROR_UNKNOWN not
446         G_ERROR_ERROR_UNKNOWN
447
448 Fri May 30 19:23:47 2003  Owen Taylor  <otaylor@redhat.com>
449
450         * glib/gstrfuncs.c (g_ascii_strncasecmp)
451         * glib/gstrfuncs.c (g_ascii_strcasecmp): Use TOLOWER()
452         macro instead of g_ascii_tolower() (#107138)
453
454 Fri May 30 19:09:25 2003  Owen Taylor  <otaylor@redhat.com>
455
456         * m4macros/glib-gettext.m4: Backport better handling
457         of ALL_LINGUAS from gettext.m4. (#103808, Andras Salamon)
458
459 Fri May 30 18:46:05 2003  Owen Taylor  <otaylor@redhat.com>
460
461         * m4macros/glib-gettext.m4: expand $exec_prefix as
462         well as $prefix. (#107290, reported by Morten Welinder,
463         patch from Raja Harinath)
464
465 Fri May 30 17:24:23 2003  Owen Taylor  <otaylor@redhat.com>
466
467         * glib-gettextize.in: Quote $srcdir to handle $srcdir
468         with spaces (#107850, Evan Martin)
469
470 Fri May 30 16:48:26 2003  Owen Taylor  <otaylor@redhat.com>
471  
472         * glib/giochannel.c (g_io_channel_error_from_errno):
473         Silently return G_IO_CHANNEL_ERROR_FAILED for EINTR,
474         since close() can return EINTR. (#11842, Balazs Scheidler)
475  
476 Fri May 30 15:51:43 2003  Owen Taylor  <otaylor@redhat.com>
477
478         * glib/giochannel.c (g_io_error_get_from_g_error): 
479         Do a g_return_val_if_fail() on err == NULL to be a
480         bit more robuts on buggy IO channel implementations.
481         (#113396, Dan Winship)
482
483 Tue May 27 19:56:35 2003  Owen Taylor  <otaylor@redhat.com>
484
485         * glib/gmacros.h: __PRETTY_FUNCTION__ was made a non-token
486         before gcc-3.0.0 for C++. (Fix from Martin Kretzschmar,
487         #113797)
488
489 2003-05-28  Matthias Clasen  <maclas@gmx.de>
490
491         * tests/patterntest.c: Remain silent when sucessful. 
492
493         * tests/Makefile.am: Add patterntest to make check.  (113143)
494
495 2003-05-27  Matthias Clasen  <maclas@gmx.de>
496
497         * glib/gstrfuncs.c (g_strdup): Use memcpy instead of
498         strcpy. (#106988, Christian Biere)
499
500 2003-05-27  Matthias Clasen  <maclas@gmx.de>
501
502         * glib/gstrfuncs.c (g_strdup): Use memcpy instead of
503         strcpy. (#106988, Christian Biere)
504
505 2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
506
507         * glib/gutf8.c: Fix typo in UNICODE_VALID (related to #107427).
508
509 2003-05-23  Noah Levitt  <nlevitt@columbia.edu>
510
511         * glib/guniprop.c: Remove stale comment.
512
513 2003-05-22  Noah Levitt  <nlevitt@columbia.edu>
514
515         * glib/guniprop.c: Update g_unichar_iswide to Unicode 4.0 (#113404).
516
517 2003-05-21  Noah Levitt  <nlevitt@columbia.edu>
518
519         * glib/guniprop.c: Fix obscure typo in case conversion routine
520         (#113469).
521
522 Tue May 20 14:14:55 2003  Manish Singh  <yosh@gimp.org>
523
524         * configure.in: wrap 64-bit MIN/MAX limit constants in
525         G_GINT64_CONSTANT. Fixes bug #108699.
526
527 2003-05-19  Noah Levitt  <nlevitt@columbia.edu>
528
529         * glib/gunibreak.c: Fix cut-and-pasto: g_unichar_break_type should
530         return G_UNICODE_BREAK_UNKNOWN if the character is greater than
531         G_UNICODE_LAST_CHAR.
532
533 2003-05-19  Noah Levitt  <nlevitt@columbia.edu>
534
535         * glib/glist.c: Remove unused function g_list_sort2 (bug #113203).
536
537 2003-05-19  Noah Levitt  <nlevitt@columbia.edu>
538
539         * glib/gunidecomp.c: Fix off-by-one error in
540         g_unicode_canonical_ordering (bug #113260).
541
542 2003-05-19 Arafat Medini <lumina@silverpen.de>
543
544         * ar.po: Added ar to ALL_LINGUAS
545
546 2003-05-17  Telsa Gwynne  <hobbit@aloss.ukuu.org.uk>
547
548         * configure.in: Added cy to ALL_LINGUAS
549
550 2003-05-05  Matthias Clasen  <maclas@gmx.de>
551
552         * glib/gstrfuncs.c (g_ascii_dtostr): 
553         (g_ascii_formatd): 
554         (g_ascii_strtod): Some doc fixes.  (#111805)
555
556 2003-05-05  Christian Rose  <menthos@menthos.com>
557
558         * configure.in: Added sr and sr@Latn to ALL_LINGUAS.
559
560 Thu Apr 24 19:12:05 2003  Owen Taylor  <otaylor@redhat.com>
561
562         * autogen.sh (have_libtool): Accept libtool-1.5. (#111483)
563
564 2003-04-09  Matthias Clasen  <maclas@gmx.de>
565
566         * INSTALL: 
567         * INSTALL.in: Remove list of configuration flags, since these 
568         are already documented in docs/reference/glib/building.sgml.
569
570 2003-04-08  Matthias Clasen  <maclas@gmx.de>
571
572         * INSTALL: Move Cross-compliation information to reference manual.
573
574 Mon Apr  7 13:40:28 2003  Owen Taylor  <otaylor@redhat.com>
575
576         * glib/gmain.c (g_main_loop_run): When waiting for
577         the main loop to be freed up, wait on either
578         !loop->is_running or got_ownership, not both.
579         (Caused gtk_dialog_run() not to work in other
580         threads, reported by Jean-Yves Lefort)
581
582 2003-04-07  Matthias Clasen  <maclas@gmx.de>
583
584         * glib/gutf8.c (g_utf8_strlen): Warn if p == NULL && max != 0.
585         (#110087) 
586
587 2003-04-01  Tor Lillqvist  <tml@iki.fi>
588
589         * glib/glib.def: Add g_string_chunk_insert_len.
590
591 2003-04-01  Matthias Clasen  <maclas@gmx.de>
592
593         * glib/gstring.[hc] (g_string_chunk_insert_len): New function, to
594         insert possible non-nul-terminated byte sequences into a string
595         chunk.  (#96279)
596         (g_string_chunk_insert): Implement in terms of
597         g_string_chunk_insert_len() now.
598
599 2003-03-30  Matthias Clasen  <maclas@gmx.de>
600
601         * glib/gstring.c (g_string_new): Optimize the common cases 
602         (init == NULL or init == "") a bit.
603         * glib/gmarkup.c, glib/gmessages.c, glib/gscanner.c,
604         glib/gshell.c, glib/gspawn-win32-helper.c, glib/gspawn-win32.c,
605         glib/gspawn.c, gobject/gvaluetransform.c: replace uses of 
606         g_string_new ("") by g_string_new (NULL).  (#106973, Morten Welinder)
607
608         * glib/gutf8.c (UNICODE_VALID): Update to Unicode 3.1 and optimize
609         a bit.  (#107427, Noah Lewitt)
610
611         * glib/libcharset/config.charset: Add cp1251 support for Solaris.
612         (#104738, Hidetoshi Tajima)
613
614         * glib/gconvert.c (UnsafeCharacterSet): Get rid of
615         UNSAFE_DOS_PATH.
616         (acceptable): Align with RFC2396.  (#59653)
617
618         * tests/uri-test.c: Adjust to the changes above.
619
620 2003-03-26  Christian Rose  <menthos@menthos.com>
621
622         * configure.in: Added "yi" to ALL_LINGUAS.
623
624 2003-03-19  Matthias Clasen  <maclas@gmx.de>
625
626         * glib/giochannel.c (g_io_channel_read_to_end): Fix docs.
627
628 2003-03-19  Anders Carlsson  <andersca@codefactory.se>
629
630         * configure.in: Bump version to 2.3.0
631
632 2003-03-14  Sebastian Wilhelmi  <seppi@seppi.de>
633
634         * glib/gthread.c: Do not define function g_thread_init_glib, if
635         not G_THREADS_ENABLED. It's not called bu g_thread_init() then,
636         but calls other, in that case undefined functions.
637
638 2003-03-06  Matthias Clasen  <maclas@gmx.de>
639
640         * glib/gmain.c (g_main_context_find_source_by_id): 
641         (g_main_context_find_source_by_funcs_user_data): Fix FALSE/NULL
642         confusion.  (#107646, Morten Welinder)
643
644 2003-03-01  James Henstridge  <james@daa.com.au>
645
646         * autogen.sh: require automake 1.7.  Add calls to libtoolize and
647         gtkdocize.  Clean up some of the error messages.
648
649         * configure.in: move version declaration to the top of the file
650         (before AC_INIT), using M4 macros.
651         GLIB_AC_DIVERT_BEFORE_HELP() calls no longer necessary, due to use
652         of M4 macro expansion in help messages instead.
653         Convert AC_ARG_WITH/AC_ARG_ENABLE calls to use AC_HELP_STRING to
654         format help strings.  Use quadrigraphs to get square brackets to
655         show correctly.
656         Replace gtk-doc checks with a call to GTK_DOC_CHECK() macro.
657         Use AC_CONFIG_COMMANDS([glibconfig.h], ...) to output
658         glibconfig.h, so that "./config.status glibconfig.h" works.
659         Add an extra AC_CONFIG_FILES call listing other files we want
660         generated by config.status protected by an "if false" block.  This
661         way automake generates the rules needed to rebuild the files for
662         us.
663         Add quotes in various places.
664
665         * docs/reference/*/Makefile.am: convert to use the common
666         gtk-doc.make file.  This localises the complexity to a single
667         makefile fragment maintained with gtk-doc itself.
668
669         * */Makefile.am: remove unneeded rules to build win32 files with
670         config.status.  Automake now does this for us.
671         Replace instances of @FOO@ with $(FOO) where appropriate -- this
672         allows automake to do a better job checking the makefile.
673         Add some files to DISTCLEANFILES where appropriate
674
675         * Makefile.am: use the DISTCHECK_CONFIGURE_FLAGS variable to
676         ensure that --enable-gtk-doc is passed to configure during a
677         distcheck.  Remove the custom distcheck, since the standard one
678         will now do.
679
680         * gobject/Makefile.am: switch to BUILT_SOURCES, since that now
681         works.
682
683 2003-02-26  Matthias Clasen  <maclas@gmx.de>
684
685         * glib/gstrfuncs.c (g_strdup_vprintf): Use g_strndup, not
686         g_strdup, since we know the length in advance.
687
688         * glib/gunidecomp.c (g_unicode_canonical_decomposition): Use
689         g_malloc instead of directly using malloc.
690
691 2003-02-25  Tor Lillqvist  <tml@iki.fi>
692
693         * glib/glib.def: Add a couple of missing entries, thanks to Cedric
694         Gustin. Thread initialization function changes according to
695         Sebastian Wilhelmi's changes below (2003-02-14).
696
697 2003-02-24  Matthias Clasen  <maclas@gmx.de>
698
699         * glib/gdir.c (g_dir_read_name): Clarify documentation.
700
701 2003-02-18  Sebastian Wilhelmi  <seppi@seppi.de>
702
703         * configure.in: Make glib_thread_test not unnecessarily convert
704         between int and void*. (#106278). Let main return int.
705
706         * configure.in: Add an argument to specify the default thread
707         attribute to glib_thread_test. Disappeared somewhere between 2.0
708         and 2.2.
709
710 2003-02-14  Sebastian Wilhelmi  <seppi@seppi.de>
711
712         Fixes for #101264 and #99372:
713
714         * glib/gconvert.h, glib/gmain.c, glib/gmem.c, glib/gmessages.c,
715         glib/grand.c: Include gthreadinit.h and rename the thread
716         initialization functions a bit and let them start with _, so that
717         later we can stop exporting them.
718         
719         * glib/gmem.c, glib/gmessages.c: Move the g_private_new() calls to
720         new functions. They have to be called after setting
721         g_threads_got_initialized to TRUE (see #101264).
722
723         * glib/gthread.c: Include gthreadinit.h. Renamed g_mutex_init() to
724         g_thread_init_glib(). Call the thread initialization functions
725         (which are not allowed to call g_private_new), then set
726         g_threads_got_initialized to TRUE, then call the other thread
727         initialization functions (which must not call anything but
728         g_private_new()).
729         
730         * glib/gthreadinit.h: New private header to cleanly declare all
731         thread initialization functions.
732
733         * gthread/gthread-impl.c: Include gthreadinit.h. In
734         g_thread_init() just call g_thread_init_glib(), which in turn calls the
735         other functions (see #99372).
736         
737         * glib/Makefile.am: Added gthreadinit.h.
738
739 2003-02-12  Sebastian Wilhelmi  <seppi@seppi.de>
740
741         * configure.in: Make GLib recognize Tru64Unix thread system. (#103020)
742
743 2003-02-11  Tor Lillqvist  <tml@iki.fi>
744
745         * Makefile.am (EXTRA_DIST): Include ChangeLog.pre-2-2.
746
747         * glib-zip.in: Include also the gtk-doc/html documentation in the
748         developer package.
749
750         * README.win32: Updates.
751
752 2003-02-11  Sebastian Wilhelmi  <seppi@seppi.de>
753
754         * AUTHORS: Changed my e-mail address.
755         * glib/grand.c: Removed my e-mail address.
756
757 2003-02-10  Mohammad DAMT  <mdamt@bisnisweb.com>
758
759         * po/id.po: Added Indonesian translation
760         * configure.in: Added "id" to ALL_LINGUAS
761
762 2003-02-06  Matthias Clasen  <maclas@gmx.de>
763
764         * glib/gmessages.h: 
765         * glib/gmem.h: 
766         * glib/ghash.h: 
767         * glib/gasyncqueue.h: 
768         * glib/garray.h: 
769         * glib/ghook.h: 
770         * glib/gtypes.h: Fix a bunch of typos in header comments.
771         (#102422, Morten Welinder)
772
773 2003-02-04  Tor Lillqvist  <tml@iki.fi>
774
775         * glib/giowin32.c (g_io_channel_unix_new): Fix typo: Should be
776         SOCKET_ERROR, not SO_ERROR. Noticed by Daniel Kaufmann.
777         
778         Merge from stable branch: 
779
780         Fix for bug #104014, reported by Alex Shaduri:
781         
782         * glib/gspawn-win32.c (protect_argv): New function. Add
783         double-quotes around argv elements that need it, and escape
784         embedded double-quotes with backslash.
785         (do_spawn_with_pipes) Call protect_argv().
786
787         * glib/gspawn-win32-helper.c (WinMain): Call protect_argv().
788
789         * glib/gspawn.c (g_spawn_async_with_pipes): Document argument
790         vector vs. command line details on Win32.
791         (g_spawn_command_line_sync): Improve documentation about
792         backslashes in the command line on Windows.
793
794 Thu Jan 30 16:45:13 2003  Owen Taylor  <otaylor@redhat.com>
795
796         * Makefile.am: Remove references to glib.spec.
797         (#102231)
798
799         * configure.in: Don't generate glib.spec.
800
801 Tue Jan 28 16:08:56 2003  Owen Taylor  <otaylor@redhat.com>
802
803         * m4macros/glib-gettext.m4: If msgfmt isn't found,
804         unset gt_cv_have_gettext. (#102552, Tim Mooney)
805
806 Tue Jan 28 15:18:24 2003  Owen Taylor  <otaylor@redhat.com>
807
808         * autogen.sh (have_automake): Fix version in complaint
809         message about automake. (#104366, Rich Burridge)
810
811 2003-01-22  Pablo Saratxaga  <pablo@mandrakesoft.com>
812
813         * configure.in: Added Bengali (bn) to ALL_LINGUAS
814
815 2003-01-21  Christian Rose  <menthos@menthos.com>
816
817         * configure.in: Added "mn" to ALL_LINGUAS.
818
819 2003-01-20  Pablo Saratxaga  <pablo@mandrakesoft.com>
820
821         * configure.in: Added Farsi (fa), Italian (it), Latvian (lv),
822         Macedonian (mk) to ALL_LINGUAS
823
824 2003-01-16  Daniel Yacob <locales@geez.org>
825
826         * configure.in: added am to ALL_LINGUAS
827         
828 2003-01-12  Tor Lillqvist  <tml@iki.fi>
829
830         * glib/glib.def: Add some missing entries. Thanks to Kenichi SUTO.
831
832 2003-01-05  Tor Lillqvist  <tml@iki.fi>
833
834         * README.win32: Updates.
835
836         * configure.in: Don't use -lm in TRIO_LIBS on Windows, with no
837         libm. (Mingw has a dummy libm.a, but the .pc file should be
838         useable by MSVC users, too.)
839
840 2003-01-25  Ron Steinke  <rsteinke@w-link.net>
841
842         (Ancient, binary compatible fixes found sitting in my tree)
843
844         * Added early checks for count == 0 and buf == NULL in g_io_channel_read()
845
846         * Better error message for EFAULT in  g_io_channel_error_from_errno()
847
848 2003-01-04  Tor Lillqvist  <tml@iki.fi>
849
850         * Makefile.am (BUILT_EXTRA_DIST): Don't distribute glib-zip.
851
852         * {glib,gmodule,gobject,gthread}/Makefile.am:
853         [Win32] Install also the .def files, to help users generate
854         import libraries for other compilers. Uninstall, too.
855
856         * glib-zip.in: Include .def files from above.
857
858         * glib/giowin32.c (g_io_win32_fd_get_flags_internal): Don't claim
859         broken pipes are unreadable. (Well, they are, but read() handles
860         it, and treats it like EOF.)
861
862 Thu Jan  2 16:19:15 2003  Manish Singh  <yosh@gimp.org>
863
864         * configure.in: use AC_COMPILE_IFELSE instead of AC_TRY_COMPILE for
865         tests for inline keywords. Fixes #101976.
866
867 2003-01-02  Tor Lillqvist  <tml@iki.fi>
868
869         * glib/gwin32.h: Correct the comment telling what headers have
870         the declarations of some POSIXish functions.
871
872         * glib/giowin32.c (g_io_win32_fd_get_flags_internal): Fix braino:
873         The checks for readability/writeability were backwards.
874
875 2003-01-01  Tor Lillqvist  <tml@iki.fi>
876
877         * glib/gmessages.c (ensure_stderr_valid): New function, parallel
878         to ensure_stdout_valid(). #defined as empty on Unix. Move the
879         alloc_console_called static flag inside these two functions.
880         (ensure_stdout_valid, ensure_stderr_valid): Check the C stdout and
881         stderr streams for validity, instead of what GetStdHandle() returns.
882         (mklevel_prefix): Do use either stderr or stdout on Windows,
883         too. Otherwise g_warning() messages (that are just warnings, by
884         definition) will get mixed with proper stdout output. Noticed in
885         GIMP's gimpconfig-dump.
886         (strdup_convert, mklevel_prefix, g_printerr): Call
887         ensure_stderr_valid() before trying to use stderr.
888         (g_logv): [Win32] Convert message to current codepage before
889         display with MessageBox().
890
891 2002-12-28  Tõivo Leedjärv  <toivo@linux.ee>
892
893         * configure.in: Added et to ALL_LINGUAS.
894