Set the program name from argv[0], noticed by Masatake YAMATO.
[platform/upstream/glib.git] / ChangeLog.pre-2-12
1 Fri Aug 27 00:45:41 2004  Matthias Clasen  <maclas@gmx.de>
2
3         * glib/goption.c (g_option_context_parse): Set the program name
4         from argv[0], noticed by Masatake YAMATO.
5
6 2004-08-26  Tor Lillqvist  <tml@iki.fi>
7
8         * tests/testglib.c (main): Test the new XDG basedir functions.
9
10 2004-08-25  Tor Lillqvist  <tml@iki.fi>
11
12         * glib/gwin32.c (g_win32_get_windows_version): New
13         function. Returns the Windows version code like GetVersion(),
14         except that one can pretend to be running on Win9x by setting the
15         G_WIN32_PRETEND_WIN9X environment variable. This is mainly for
16         debugging purposed.
17
18         * glib/gwin32.h: Declare it. Define macros G_WIN32_WINDOWS_IS_NT_BASED 
19         and G_WIN32_HAVE_WIDECHAR_API to test Windows features at run-time.
20
21 2004-08-25  Matthias Clasen  <mclasen@redhat.com>
22
23         * configure.in: Post-release version bump.
24
25         * === Released 2.5.2 ===
26
27 Wed Aug 25 00:25:08 2004  Matthias Clasen  <maclas@gmx.de>
28
29         * NEWS: Update for 2.5.2
30
31 2004-08-25  Tor Lillqvist  <tml@iki.fi>
32
33         Win32 equivalences of the XDG folders
34         
35         * glib/gutils.c (get_special_folder): New function, calls
36         SHGetSpecialFolderLocation() to get path to places like the My
37         Documents folder.
38         (g_get_any_init): Use CSIDL_PROFILE as HOME if not
39         overridden by env vars.
40         (g_get_user_data_dir): Use CSIDL_PERSONAL.
41         (g_get_user_config_dir): Use CSIDL_APPDATA.
42         (g_get_user_cache_dir): Use CSIDL_INTERNET_CACHE. Debatable...
43         (g_get_system_data_dirs): Use CSIDL_COMMON_APPDATA and
44         CSIDL_COMMON_DOCUMENTS.
45         (g_get_system_config_dirs): Use CSIDL_COMMON_APPDATA.
46
47         * configure.in: Add -lole32 to G_LIBS_EXTRA for mingw.
48
49         * glib/glib.def: Add the new functions.
50
51 Mon Aug 23 16:16:35 2004  Manish Singh  <yosh@gimp.org>
52
53         * glib/goption.c (g_option_group_add_entries): remove unused
54         variable.
55
56 Mon Aug 23 01:35:18 2004  Matthias Clasen  <maclas@gmx.de>
57
58         * glib/gutils.c (g_get_user_cache_dir): 
59         * glib/gutils.c (g_get_user_config_dir): 
60         * glib/gutils.c (g_get_user_data_dir): Don't call g_get_home_dir()
61         while holding the g_utils_global lock, simply use g_home_dir. 
62         (#150695, Jody Goldberg)
63
64 2004-08-21  Tor Lillqvist  <tml@iki.fi>
65
66         * glib/giowin32.c (g_io_win32_finalize): Tell select_thread to
67         break out of its loop. Prevents a thread leak. (#147392, Peter
68         Zelezny)
69
70         * glib/gunicollate.c (g_utf8_collate_key): Guard against bogus
71         return value from strxfrm(). For instance Microsoft's strxfrm()
72         returns INT_MAX on errors. (#141124)
73
74 2004-08-19  Tor Lillqvist  <tml@iki.fi>
75
76         * glib/gunicollate.c (g_utf8_collate, g_utf8_collate_key): Correct
77         source and destination charset parameter order in g_convert()
78         call. (#150394, possibly also #141124)
79
80 2004-08-20  Jon K Hellan  <hellan@acm.org>
81
82         * glib/goption.h: Remove trailing commas.
83
84 2004-08-17  Matthias Clasen  <mclasen@redhat.com>
85
86         * configure.in: Check for all four values of the
87         visibility attribute; gcc 2.96 seems to miss 
88         "default".  (#150379, Vincent Noel)
89
90 2004-08-16  Christian Rose  <menthos@menthos.com>
91
92         * configure.in: Added "bs" to ALL_LINGUAS.
93
94 2004-08-11  Ray Strode  <rstrode@redhat.com>
95
96         * docs/reference/glib/glib-sections.txt: 
97         * glib/gutils.[ch] (g_get_user_data_dir),
98         (g_get_user_config_dir), (g_get_user_cache_dir),
99         (g_get_system_data_dirs), (g_get_system_config_dirs): 
100         Add new XDG basedir API (bug 139973).
101
102 2004-08-10  Matthias Clasen  <mclasen@redhat.com>
103
104         * glib/gmacros.h: Remove G_GNUC_INTERNAL from here.
105         * configure.in: Check whether the visibility attribute
106         works and define G_HAVE_GNUC_VISIBILITY and 
107         G_GNUC_INTERNAL in glibconfig.h correspondingly.
108
109 Mon Aug  9 17:37:56 2004  Matthias Clasen  <maclas@gmx.de>
110
111         * glib/gmacros.h (G_GNUC_INTERNAL): Define empty if gcc is too old.
112
113 2004-08-06  Hans Breuer  <hans@breuer.org>
114
115         * glib/makefile.msc.in glib/glib.def : updated
116
117         * glib/gutils.c : avoid 'inconsitent dll linkage' by not
118         defining extern char** environ with msvc
119
120 2004-08-06  Matthias Clasen  <mclasen@redhat.com>
121
122         * m4macros/glib-gettext.m4: Require ngettext.  (#123847,
123         Danilo Segan)
124
125 Thu Aug  5 20:53:00 2004  Ray Strode  <rstrode@redhat.com>
126
127         * glib/gutils.h (g_get_codeset): strdup result so caller
128         doesn't free internally managed memory.
129
130 2004-08-04  Tor Lillqvist  <tml@iki.fi>
131
132         * glib/glib.def: Add glib_check_version.
133
134         * config.h.win32.in: Update to match what configure produces. Add
135         the G_ATOMIC_*. Define G_ATOMIC_I486 when compiling with gcc. Move
136         HAVE_INT64_AND_I64 to where the configure script puts it. Add
137         HAVE_INTTYPES_H_WITH_UINTMAX. Define intmax_t as __int64 for MSVC.
138
139 Tue Aug  3 16:19:44 2004  Matthias Clasen  <maclas@gmx.de>
140
141         * glib/goption.c: Mark user visible strings for translation.
142
143 Tue Aug  3 15:50:55 2004  Matthias Clasen  <maclas@gmx.de>
144
145         * glib/goption.[hc]: Pedantically use g types throughout.
146
147 Tue Aug  3 14:58:20 2004  Matthias Clasen  <maclas@gmx.de>
148
149         * glib/gutils.h: 
150         * glib/gutils.c (glib_check_version): New function to
151         check the version of GLib at runtime.  (#149175, Michael Natterer)
152
153 2004-08-03  Anders Carlsson  <andersca@gnome.org>
154
155         * glib/goption.h:
156         * glib/gtypes.h:
157         Move GTranslateFunc to gtypes.h
158         
159 2004-08-02  Anders Carlsson  <andersca@gnome.org>
160
161         * glib/Makefile.am:
162         * glib/glib.h:
163         * glib/goption.c:
164         * glib/goption.h:
165         * tests/.cvsignore:
166         * tests/Makefile.am:
167         * tests/option-test.c: 
168         Add GOption.
169
170 2004-08-02  Matthias Clasen  <mclasen@redhat.com>
171
172         * glib/gmacros.h: Add a G_GNUC_INTERNAL macro to mark function
173         declarations as internal and avoid PLT indirections for 
174         them.  (#145465, Arjan van de Ven)
175
176         * glib/gunicodeprivate.h: 
177         * glib/gthreadinit.h: 
178         * glib/gmessages.h: 
179         * glib/gdebug.h: 
180         * glib/gconvert.c: Use G_GNUC_INTERNAL for _g_charset_get_aliases(),
181         _g_debug_init(), _g_log_fallback_handler(), _g_mem_thread_init(),
182         _g_messages_thread_init(), _g_convert_thread_init(), 
183         _g_rand_thread_init(), _g_main_thread_init(), _g_atomic_thread_init(),
184         _g_mem_thread_private_init(), _g_messages_thread_private_init(),
185         _g_utf8_normalize_wc() and _g_unichar_combining_class().
186
187         * glib/gatomic.c: Include gthreadinit.h here to see the declaration
188         for _g_atomic_thread_init().
189
190 Sun Aug  1 13:19:18 2004  Manish Singh  <yosh@gimp.org>
191
192         * tests/uri-test.c: move newline printing from run_from_uri_tests()
193         to run_roundtrip_tests().
194
195 2004-08-01 Matthias Clasen  <mclasen@redhat.com>
196
197         * Post-release version bump
198
199         * === Released 2.5.1 ===
200
201 Sat Jul 31 23:17:05 2004  Matthias Clasen  <maclas@gmx.de>
202
203         * NEWS: Updates.
204
205 Sat Jul 31 20:33:07 2004  Matthias Clasen  <maclas@gmx.de>
206
207         * tests/shell-test.c: Include a test involving consecutive
208         backslashes followed by a non-escaped doublequote.
209         
210         * glib/gshell.c (tokenize_command_line): Count consecutive
211         backslashes mod 2 to detect escaped doubleqotes.  (#127306)
212
213 2004-07-30  Matthias Clasen  <mclasen@redhat.com>
214
215         * glib/gconvert.c (g_unescape_uri_string): Don't validate
216         for UTF-8 here.  (#148420, Robert Ögren)
217
218         * tests/uri-test.c (run_roundtrip_tests): Add tests for 
219         roundtrip compatibility. Going from filename to uri and 
220         back should always give you the same filename back. 
221
222 2004-07-28  Matthias Clasen  <mclasen@redhat.com>
223
224         * tests/markups/valid-{9,10,11}.gmarkup: 
225         * tests/markups/fail-{37,38,39}.gmarkup: Tests for handling
226         of whitespace inside tags.
227
228         * glib/gmarkup.c (enum GMarkupParseState): Add 
229         STATE_AFTER_ATTRIBUTE_NAME and STATE_AFTER_CLOSE_TAG_NAME.
230         (g_markup_parse_context_parse): Accept whitespace between
231         attribute names, '=' and attribute values and between
232         close tag name and '>'. (#148646, Hiroyuki Ikezoe)
233
234 Tue Jul 27 02:01:31 2004  Matthias Clasen  <maclas@gmx.de>
235
236         * glib/gstrfuncs.c (g_strsplit_set): s/g_strsplit/g_strsplit_set/
237         as well.
238
239 Sat Jul 24 17:50:07 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
240
241         * glib/gstrfuncs.c (g_strsplit_set):
242         s/g_strtokenize/g_strsplit_set/ in docs.
243
244 Fri Jul 23 10:37:50 2004  Matthias Clasen  <maclas@gmx.de>
245
246         * tests/type-test.c (main): Actually test G_MAXSIZE with
247         a gsize variable.
248
249 2004-07-21  Matthias Clasen  <mclasen@redhat.com>
250
251         Fix #132858, Sven Neumann, patch by James Henstridge:
252         
253         * glib-gettextize.in: modify so that mkinstalldirs will 
254         get installed into auxdir.
255
256         * Makefile.am (gettext_SCRIPTS): install mkinstalldirs.
257
258 2004-07-21  Matthias Clasen  <mclasen@redhat.com>
259
260         Fix #147651, reported by Oliver Guntermann:
261
262         * glib/gprintfint.h (_g_vasprintf): Don't wrap vasprintf(),
263         _g_gnulib_vasprintf() in a macro, since they behave 
264         differently wrt. to memory allocation.
265
266         * glib/gprintf.c (g_vasprintf): Instead, differentiate 
267         here between the three cases: system vasprintf(), 
268         _g_gnulib_vasprintf(), no vasprintf().  
269
270 2004-07-20  Crispin Flowerday  <gnome@flowerday.cx>
271
272         * NEWS: Fix a typo in my name
273
274 Tue Jul 20 04:31:40 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
275
276         * configure.in: Bump version number
277
278 Sun Jul 18 19:40:30 2004  Soeren Sandmann  <sandmann@daimi.au.dk>
279
280         * === Released 2.5.0 ===
281
282         * Makefile.am (BUILT_EXTRA_DIST): move gtk-doc.make here.
283
284 Sun Jul 18 01:40:28 2004  Matthias Clasen  <maclas@gmx.de>
285
286         * NEWS: Updates for 2.5.0
287
288 Mon Jul 12 00:02:40 2004  Matthias Clasen  <maclas@gmx.de>
289
290         * glib/gi18n-lib.h: Remove the ENABLE_NLS check here as well.
291
292 2004-07-09  Matthias Clasen  <mclasen@redhat.com>
293
294         * glib/gdir.c (g_dir_open): Convert filename to UTF-8 
295         before using it in the error message.  (#146054, Federico
296         Mena Quintero)
297
298 Thu Jul  8 00:54:32 2004  Matthias Clasen  <maclas@gmx.de>
299
300         * glib/gi18n.h: Remove the ENABLE_NLS check, since GLib can't
301         be built without anyway.  (#135899, Murray Cumming)
302
303 Mon Jul  5 18:50:27 2004  Matthias Clasen  <maclas@gmx.de>
304
305         * glib/gmessages.h (g_debug): Complete the g_log() 
306         family.  (#135730, Sven Herzberg)
307
308 Mon Jul  5 18:42:30 2004  Matthias Clasen  <maclas@gmx.de>
309
310         * glib/gnulib/Makefile.am (INCLUDES): Add top_srcdir to 
311         make srcdir != . work.  (#145166, Kaz Sasayama)
312
313 Sun Jul  4 01:52:18 2004  Matthias Clasen  <maclas@gmx.de>
314
315         * configure.in: Use a small test library instead of
316         libpthread.so for testing RTLD_GLOBAL brokenness.  (#139567,
317         Julio M. Merino Vidal)
318         
319 2004-07-02  Sebastian Wilhelmi  <seppi@seppi.de>
320
321         * glib/gatomic.c: Rename __asm to __asm__ and __volatile to
322         __volatile__ to make the file consistent. Spotted by Benoit
323         Carpentier <gtkool_2kx@yahoo.fr>.
324
325 2004-07-01  John Ehresman  <jpe@wingide.com>
326
327         * glib/giowin32.c (g_io_channel_win32_init, g_io_win32_free)
328         Initialize reset_send & reset_recv fields and don't close
329         sockets unless they were created.  (#145153)
330
331 Fri Jun 11 22:56:46 2004  Matthias Clasen  <maclas@gmx.de>
332
333         * glib/gscanner.c (g_scanner_get_token_ll): Ignore a 
334         missing newline at EOF for single line comments.  
335         (#83674, Sven Neumann)
336
337 Thu Jun 10 23:38:02 2004  Matthias Clasen  <maclas@gmx.de>
338
339         * tests/printf-test.c (TEST): Actually set any_failed on 
340         failure.  (#143552, Philippe Blain)
341
342 2004-06-09  Federico Mena Quintero  <federico@ximian.com>
343
344         * tests/uri-test.c (to_uri_tests): Fix expected results (ha ha)
345         for URIs that *should* have been invalid, or viceversa.
346         (from_uri_tests): Likewise.
347
348 2004-06-07  Federico Mena Quintero  <federico@ximian.com>
349
350         Fixes #140532.
351
352         * glib/gconvert.c (is_asciialphanum): Renamed from
353         is_escalphanum(); ensures that this is an ASCII character.
354         (is_asciiescalpha): Renamed from is_escalpha().
355         (hostname_validate): Use the two functions above.
356         (g_filename_to_uri): Don't convert the filename to UTF-8.
357         (g_filename_from_uri): Don't convert the filename from UTF-8.
358
359 Mon Jun  7 22:25:24 2004  Matthias Clasen  <maclas@gmx.de>
360
361         * tests/run-markup-tests.sh: Default to silence, but support
362         a -v argument to get the old output back. 
363
364 2004-06-06  Tor Lillqvist  <tml@iki.fi>
365
366         * glib/gutils.c (g_get_any_init): Check home for being
367         NULL. (#143812, Ivan Wong)
368
369 Sun Jun  6 15:23:00 2004  Pawan Chitrakr  <pawan@nplinu.org>
370
371         * configure.in: Added "ne" (Nepali) in ALL_LINGUAS
372
373 Fri Jun  4 19:26:47 2004  Manish Singh  <yosh@gimp.org>
374
375         * glib/galloca.h: cpp #directives should always have the "#" in the
376         first column of the the line. Do that for "#pragma alloca". Fixes
377         bug #143744.
378
379 Wed Jun  2 00:57:16 2004  Matthias Clasen  <maclas@gmx.de>
380
381         * glib/gtypes.h: Use higher precision for the mathematical
382         constants.  (#141941, Morten Welinder)
383
384 Tue Jun  1 22:01:40 2004  Matthias Clasen  <maclas@gmx.de>
385
386         * glib/gmarkup.c (advance_char): Fix an off-by-one error 
387         in g_markup_parse_context_parse().  (#142794, Morten Welinder)
388
389 Sun May 16 23:23:29 2004  Matthias Clasen  <maclas@gmx.de>
390
391         Merged from 2.4:
392         
393         * glib/gcompletion.c (g_completion_add_items):
394         (g_completion_remove_items): Remove unnecessary 
395         checks.  (#142559, Morten Welinder)
396
397 2004-05-15  Tor Lillqvist  <tml@iki.fi>
398
399         * glib/gutils.c (g_get_any_init): [Win32] Only believe HOME if it
400         is an absolute path and exists. (#138618)
401
402 2004-05-14  Tor Lillqvist  <tml@iki.fi>
403
404         * glib/gnulib/vasnprintf.c (vasnprintf): Handle empty digit string
405         for precision correctly. (#142400)
406
407         For backward compatibility with the Trio implementation, make "ll"
408         format modifer work on Win32, too. Change into "I64" before
409         passing to the system printf. (#142433)
410
411         * tests/printf-test.c (main): Add tests for the above.
412
413 2004-05-10  Matthias Clasen  <mclasen@redhat.com>
414
415         Merge from 2.4:
416         
417         * glib/gmain.c (block_source, unblock_source): Make these 
418         static.  (#142230, Morten Welinder)
419
420 2004-05-10  Tor Lillqvist  <tml@iki.fi>
421
422         * glib/giowin32.c (g_win32_print_gioflags): Remove two duplicated
423         lines. Thanks to Benoît Carpentier.
424
425 Sun May  9 02:04:14 2004  Matthias Clasen  <maclas@gmx.de>
426
427         Merge from 2.4:
428         
429         * glib/guniprop.c (g_utf8_casefold): Avoid an unnecessary
430         memleak.  (#141998, Nikolai Weibull)
431
432 Sat May  8 23:02:26 2004  Matthias Clasen  <maclas@gmx.de>
433
434         Merge from 2.4:
435         
436         * glib/gutils.h: Remove vestigial g_get_codeset().
437         * glib/gutils.c (g_get_codeset): Call g_get_charset().
438         (#137703, Owen Taylor)
439
440 2004-05-06  Matthias Clasen  <mclasen@redhat.com>
441
442         * configure.in: Bump version number to 2.5.0.
443
444 Wed May  5 23:35:44 2004  Matthias Clasen  <maclas@gmx.de>
445
446         * glib/gconvert.c (g_filename_from_uri): Quote the file
447         scheme to mark it as untranslatable. String change.  
448         (#133144, Danilo Segan)
449
450 2004-05-03  Pablo Saratxaga  <pablo@mandrakesoft.com>
451
452         * configure.in: Added Walloon (wa) to ALL_LINGUAS
453
454 Sun May  2 03:51:59 2004  Manish Singh  <yosh@gimp.org>
455
456         * glib/gtypes.h: check for __pentium4__ when deciding whether to
457         use bswap for GUINT32_SWAP_LE_BE_IA32(). Fixes bug #141620.
458
459 2004-05-01  Hans Breuer  <hans@breuer.org>
460
461         * glib/gnulib/Makefile.am : added makefile.msc to EXTRA_DIST
462         fixes #141563, Steve Lhomme
463
464 2004-04-30  Matthias Clasen  <mclasen@redhat.com>
465
466         * === Released 2.4.1 ===
467
468         * configure.in: Version 2.4.1, interface age 1. 
469
470         * NEWS: Updates
471         
472 2004-04-25  Tor Lillqvist  <tml@iki.fi>
473
474         * glib/gwin32.c (g_win32_get_package_installation_subdirectory):
475         Plug memory leak. (#140770, John Ehresman)
476
477 2004-04-23  Matthias Clasen  <mclasen@redhat.com>
478
479         * glib/libcharset/localcharset.c (_g_locale_get_charset_aliases): 
480         Reinstate LIBCHARSET_ALIAS_DIR support which got lost at some
481         point.  (#139134, Piotr Klaban)
482
483         * glib/gconvert.c (open_converter): Don't call g_strerror() here, 
484         since it can lead to infinite recursion.  (#139133, Piotr Klaban)
485
486 2004-04-22  Matthias Clasen  <mclasen@redhat.com>
487
488         * tests/testglib.c (main): Trivial warning fix.  (#140345)
489
490         * tests/queue-test.c (main): Add some tests for off-by-one errors.
491
492         * glib/gqueue.c (g_queue_pop_nth_link): Fix an off-by-one 
493         error.  (#139703, Philippe Blain)
494
495         * tests/testglib.c (main): Add testcases for g_message() involving
496         non-printable and unsafe characters.
497
498         * glib/gmessages.c (escape_string): Don't assume that
499         string->str remains unchanged over g_string_insert() 
500         calls.  (#139030, Christophe Saout)
501
502         * glib/gstrfuncs.c (g_ascii_strtod): Fix problems when a 
503         locale-specific decimal separator directly follows a 
504         number.  (#138424, Nickolay V. Shmyrev)
505
506         * tests/strtod-test.c (main): Add some more testcases.
507
508         * glib/gmain.c (g_main_context_query): Only set time_is_current to 
509         FALSE if context->timeout is not zero.  (#137795, Christian Krause)
510
511 2004-04-21  Matthias Clasen  <mclasen@redhat.com>
512
513         * tests/printf-test.c (main): Comment out a nonessential testcase
514         which fails on HP-UX.  (#136283, Jonas Jonsson)
515
516 2004-04-15  Matthias Clasen  <mclasen@redhat.com>
517
518         * tests/patterntest.c (main): Add tests for the empty pattern.
519
520         * glib/gpattern.c (g_pattern_spec_new): Don't read and write out 
521         of bounds when the pattern is empty.  (#140032, Stanislav Brabec,
522         Stefan Fent)
523
524 2004-04-10  Tor Lillqvist  <tml@iki.fi>
525
526         * glib/gwin32.c (g_win32_getlocale): Add new language and
527         sublanguage codes, from GNU gettext. (#137958)
528         
529         * glib/giowin32.c
530         * glib/gmain.c
531         * glib/gstrfuncs.c
532         * glib/gthread.c: Decorating variable definitions with
533         __declspec(dllexport) causes problems on Cygwin build, and isn't
534         really needed for a native Win32 build with mingw or MSVC, so
535         remove. (#138402, Roger Leigh)
536
537         * glib/libcharset/localcharset.c: Use Win32-specific code also on
538         Cygwin.
539         * tests/uri-test.c: Don't assume that local filenames are in UTF-8
540         on Cygwin, either. (#138412, Roger Leigh)
541
542 2004-04-08  Guntupalli Karunakar  <karunakar@freedomink.org>
543
544         * configure.in: Added "gu" (Gujarati) to ALL_LINGUAS.
545
546 2004-04-03  Tor Lillqvist  <tml@iki.fi>
547
548         * configure.in: Remove AC_CYGWIN, obsolete. Don't let pthreads be
549         found on Cygwin, they don't work. (#138401, Roger Leigh)
550
551 2004-03-31  Tor Lillqvist  <tml@iki.fi>
552
553         * tests/spawn-test-win32-gui.c: Minor Cygwin fix. (#138405, Roger
554         Leigh)
555
556         * tests/unicode-encoding.c (process): Use UTF-16LE explicitly also
557         on Cygwin. (#138423, Roger Leigh)
558
559 2004-03-30  Adam Weinberger  <adamw@gnome.org>
560
561         * configure.in: Added en_CA to ALL_LINGUAS.
562
563 2004-03-21  Tor Lillqvist  <tml@iki.fi>
564
565         * glib/gutils.c (g_path_get_dirname): Fix Win32 behaviour in some
566         cases where a drive letter is present. For 'a:' or 'a:foo', return
567         'a:.'. This is mostly just for consistency with the behaviour
568         without a drive letter. But very important is to for 'a:\foo' or
569         'a:\', return 'a:\', and not 'a:'. (Ditto for forward slashes
570         instead of backslashes.) (#137316)
571
572         * tests/dirname-test.c (main): More complete testing on Win32. If
573         a test fails, include expected and actual result in error message.
574
575 Fri Mar 19 15:21:09 2004  Owen Taylor  <otaylor@redhat.com>
576
577         * glib/gmain.c: Fix the accidental revert of the
578         fixes from #112222 that happened when the GChildWatch
579         code was added. (Caught by Christian Persch)
580
581 Fri Mar 19 11:07:06 2004  Owen Taylor  <otaylor@redhat.com>
582
583         * tests/atomic-test.c (main): Make computation
584         of "biggest_pointer" vaguely more portable.
585         (#137498, Jonas Jonsson)
586
587 2004-03-16  Tor Lillqvist  <tml@iki.fi>
588
589         * configure.in: Define HAVE_INT64_AND_I64 also in the mingw (gcc
590         on Win32) case, where the 64-bit type is called long long, but the
591         system printf/scanf format modifier for 64-bit integers is still I64.
592
593 2004-03-16  Gareth Owen  <gowen72@yahoo.com>
594
595         * configure.in: Added en_GB to ALL_LINGUAS
596