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