Documentation trivia
[platform/upstream/glib.git] / ChangeLog.pre-2-8
1 2005-05-02  Matthias Clasen  <mclasen@redhat.com>
2
3         * glib/gstring.c (g_str_equal, g_str_hash): Move docs
4         inline.
5
6 2005-05-01  Matthias Clasen  <mclasen@redhat.com>
7
8         * glib/ghash.h: Rename some parameters to make gtk-doc
9         happy.
10
11         * glib/gutils.c: 
12         * glib/gwin32.c: 
13         * glib/gstdio.c: Fix some typos, mark new API as "Since 2.8".
14
15 2005-04-29  Matthias Clasen  <mclasen@redhat.com>
16
17         * glib/gtree.c: Clarify some docs. (#302062, Matthew F. Barnes)
18
19 2005-04-28  Matthias Clasen  <mclasen@redhat.com>
20
21         * glib/gstrfuncs.c (g_strcompress): Warn and don't crash
22         when meeting a trailing \\.  (#301373, Benjamin Otte)
23
24 2005-04-27  Tor Lillqvist  <tml@novell.com>
25
26         * glib/gconvert.c (open_converter, g_convert_with_iconv): Don't
27         call g_set_error() unless the GError pointer is non-NULL. This
28         avoids infinite recursion problems in certain rare situations on
29         Windows, when g_locale_from_utf8() is called from
30         _glib_get_locale_dir() after the change below. It's the
31         _glib_gettext() calls to translate error messages that are
32         parameters to g_set_error() that cause the recursion, not
33         g_set_error() itself.
34
35         * glib/gwin32.c (g_win32_locale_filename_from_utf8): New
36         function. Converts a filename to the system codepage, and if a
37         straight conversion isn't possible (because the filename contains
38         characters not in the system codepage), try looking up the
39         filename (which should refer to an existing file for this to
40         succeed) with short (8.3) pathname components.
41
42         * glib/gutils.c (_glib_get_locale_dir): No need to cache the
43         result, this function is normally called only once. Return the
44         path to the locale directory in system codepage, not UTF-8. The
45         path is passed to bindtextdomain(), which doesn't use UTF-8 file
46         names. Use g_win32_locale_filename_from_utf8(). (#301772)
47
48         Don't do run-time lookup of message catalog directory on
49         Cygwin. Cygwin is supposed to look and feel like Unix, and on Unix
50         we use paths fixed at configure time.
51
52 2005-04-19  Tor Lillqvist  <tml@novell.com>
53
54         * glib/gutils.h: Minor comment improvement.
55
56 2005-04-18  Tor Lillqvist  <tml@novell.com>
57
58         * glib/gfileutils.c: No <sys/wait.h> on Win32. Definition of
59         save_errno was missing in one place.
60
61 Sat Apr 16 20:15:44 2005  Soeren Sandmann  <sandmann@redhat.com>
62
63         * glib/gfileutils.c (g_file_replace): Save the errno in various
64         places
65
66         * glib/gfileutils.c (set_umask_permissions): Fork a child and do
67         chmod() to the umask() permissions there.
68
69 2005-04-10  Matthias Clasen  <mclasen@redhat.com>
70
71         * glib/gmessages.h (g_debug): Use G_LOG_LEVEL_DEBUG in
72         both definitions.  (#300071, Tommi Komulainen)
73
74 2005-04-09  Tor Lillqvist  <tml@novell.com>
75
76         * glib/gutils.c: Include <process.h> on Win32 for getpid(). (#173094)
77
78 2005-04-08  Tor Lillqvist  <tml@novell.com>
79
80         * glib/gstdio.h
81         * glib/gstdio.c
82         * glib/glib.symbols (g_access, g_chmod, g_creat): Wrap also
83         access(), chmod() and creat(). (#169623, #171285)
84
85 2005-04-08  Tor Lillqvist  <tml@novell.com>
86
87         Improve g_get_system_data_dirs() on Windows. A library that calls
88         g_get_system_data_dirs() might be installed in a different
89         top-level prefix than GLib or the application being run.
90
91         * glib/gutils.h (g_win32_get_system_data_dirs): New static
92         function defined in this header. Calls
93         g_win32_get_system_data_dirs_for_module() passing the address of
94         itself as parameter. g_get_system_data_dirs() is #defined as this
95         function.
96
97         * glib/gutils.c (g_win32_get_system_data_dirs_for_module): New
98         function. If the address parameter is non-NULL, the corresponding
99         module's installation location is used for one of the returned
100         path names, in addition to the COMMON_APPDATA, COMMON_DOCUMENTS,
101         glib top-level and application top-level folders.
102         (g_get_system_data_dirs): Now just for backward compatibility on
103         Win32. Just call g_win32_get_system_data_dirs_for_module(NULL).
104
105         * glib/glib.symbols: Add g_win32_get_system_data_dirs_for_module.
106
107         * glib/gutils.c (read_aliases): Not used on Windows.
108         (unalias_lang): Don't do anything on Windows, there is no
109         /usr/share/locale/locale.alias file..
110         
111 Thu Apr  7 22:51:15 2005  <yosh@gimp.org>
112
113         * glib/gutils.c (g_get_system_data_dirs): Declare glib_top_share_dir
114         and exe_top_share_dir only in G_OS_WIN32.
115
116 2005-04-08  Tor Lillqvist  <tml@novell.com>
117
118         * glib/gutils.c (g_get_system_data_dirs): After investigating more
119         closely the actual use cases of this function, I understand better
120         what it needs to do on Windows. In addition to the Windows
121         COMMON_APPDATA and COMMON_DOCUMENTS folders, also return the
122         "share" subfolders of GLib's installation location and the
123         application .exe's installation location, hoping that either
124         matches what the function's caller is looking for.
125
126         * glib/gutils.h (G_WIN32_DLLMAIN_FOR_DLL_NAME): Use wide char API
127         if available, and store dll name in UTF-8.
128
129 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
130
131         * glib/gfileutils.c (get_contents_stdio): Avoid memory 
132         leaks in borderline cases.  (#172612, Morten Welinder)
133
134 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
135
136         * glib/gconvert.c: Clarify docs in some places. (#172404, 
137         Morten Welinder)
138
139 2005-04-03  Matthias Clasen  <mclasen@redhat.com>
140
141         * glib/gutils.h: Undef G_CAN_INLINE if G_IMPLEMENT_INLINES is 
142         defined. This was the pre-2.6 behaviour, and without it,
143         G_IMPLEMENT_INLINES cannot be used in multiple .c files
144         at all.  (#165852, Dave Benson)
145
146 2005-04-01  Matthias Clasen  <mclasen@redhat.com>
147
148         * glib/gmain.c (g_child_watch_source_new): Add a note regarding
149         waitpid(-1).
150         (g_child_watch_source_init_multi_threaded): 
151         (g_child_watch_source_init_single): Don't use SA_RESTART,
152         since it causes problems on at least one platform. (#168352)
153
154 2005-03-30  Steve Murphy  <murf@e-tools.com>
155
156         * configure.in: Added "rw" to ALL_LINGUAS.
157
158 2005-03-30  Sven Neumann  <sven@gimp.org>
159
160         * glib/gfileutils.c (get_contents_stdio): handle the unlikely case
161         that no bytes are read from the file and allocate an empty string.
162
163 2005-03-30  Tor Lillqvist  <tml@novell.com>
164
165         * glib/giowin32.c (g_io_win32_fd_get_flags_internal): Always claim
166         file descriptors open to devices are readable, since we can't
167         know. fstat() doesn't give any useful information. (#145326)
168
169 2005-03-29  Tor Lillqvist  <tml@novell.com>
170
171         * glib/gmain.c (g_poll): [Win32] If the event fired, assign
172         f->revents=f->events. We can't know whether the upper layer using
173         the event actually is readable, writeable or what, so say that all
174         the conditions hold. Remove the ResetEvent() call that has been
175         ifdeffed out anyway for a long time. Remove an "#ifdef 1" and
176         #endif pair of lines, that code is not optional.
177         (g_get_current_time): [Win32] Use GetSystemTimeAsFileTime()
178         instead of time() and GetTickCount(). Much simpler.
179
180 2005-03-28  Matthias Clasen  <mclasen@redhat.com>
181
182         * tests/date-test.c: 
183         * tests/testgdate.c: Add tests for 
184         g_date_get_iso8601_week_of_year().
185
186         * glib/gdate.c (g_date_get_iso8601_week_of_year): 
187         Fix the calculation.  (#169858, Jon-Kare Hellan)
188
189 2005-03-27  Tor Lillqvist  <tml@novell.com>
190
191         * configure.in: Apparently AC_LIBTOOL_WIN32_DLL isn't deprecated
192         after all, and in fact necessary with HEAD libtool.
193
194 2005-03-23  Tor Lillqvist  <tml@novell.com>
195
196         * glib/gutils.c (g_getenv): [Win32] Fix corner case bug when
197         environment variable value is exactly one character.
198
199 2005-03-21  Matthias Clasen  <mclasen@redhat.com>
200
201         * glib/glib.symbols: Add g_try_malloc0
202
203         * glib/gmem.h: Add g_try_new, g_try_new0, g_try_renew and
204         g_try_malloc0.  (#169611, Stefan Kost)
205
206         * glib/gmem.c: Implement g_try_malloc0.
207
208 2005-03-20  Tor Lillqvist  <tml@novell.com>
209
210         * glib/gspawn-win32.c (do_spawn_with_pipes): Close the process
211         handle if the caller doesn't want it also in the case without a
212         helper process.
213         (g_spawn_sync): Don't ask for a child pid which we don't need.
214
215         * glib/gtimer.c: On Win32, use GetSystemTimeAsFileTime() instead
216         of GetTickCount(). (#159507)
217
218         * glib/gmessages.c (g_log_default_handler)
219         * glib/gutils.c (g_get_prgname): Move the Win32 code that asks the
220         program name from the system to g_get_prgname(). Do output the pid
221         also on Win32 (useful in case there are several instances of the
222         same program running).
223
224         * tests/testglib.c (main): Print more detailled output from the
225         timer tests. Don't print home directory twice. Test
226         g_win32_error_message().
227
228         * tests/spawn-test.c (run_tests): On Win32, run netstat instead of
229         ipconfig. On Windows XP collecting output from ipconfig doesn't
230         seem to work for some reason.
231
232 2005-03-18  Hans Breuer  <hans@breuer.org>
233
234         * glib/makefile.msc.in : handle galiasdef.c (although completely 
235         useless for msvc build)
236
237         * glib/gbacktrace.c glib/gmessage.c : need at least _WIN_VER 0x0401
238         for IsDebuggerPresent()
239
240 2005-03-17  Matthias Clasen  <mclasen@redhat.com>
241
242         * glib/gkeyfile.c: Update the documentation, reflecting the
243         fact that the special case for !group_name --> start_group
244         got removed.  (#170566, Tim-Philipp Müller)
245
246 2005-03-15  Matthias Clasen  <mclasen@redhat.com>
247
248         * glib/goption.c (g_option_context_set_main_group): Warn 
249         if there already is a main group.  (#170445, Jeff Franks)
250
251 Sun Mar 13 22:01:17 2005  Manish Singh  <yosh@gimp.org>
252
253         * tests/array-test.c: delete a bunch of dead code.
254
255 Sun Mar 13 21:28:47 2005  Manish Singh  <yosh@gimp.org>
256
257         * glib/gdataset.c: remove spurious IA prefix from g_quark_try_string.
258
259 2005-03-13  Matthias Clasen  <mclasen@redhat.com>
260
261         * glib/gatomic.c:
262         * glib/gcache.c: Small fixes to the previous commit.
263
264 2005-03-13  Matthias Clasen  <mclasen@redhat.com>
265
266         Make PLT-reduction work with gcc4, and don't include
267         everything in galias.h:
268         
269         * glib/glib.symbols: Group symbols by header and source file.
270         * glib/makegalias.pl: Protect definitions by the same 
271         preprocessor symbols used to guard the headers. Move
272         the alias declarations to a separate file which is 
273         produced when calling makegalias.pl -def
274         * glib/Makefile.am (galiasdef.c): Add a rule to generate this
275         file.
276         * glib/*.c: Include galias.h after the other GLib headers,
277         include galiasdef.c at the bottom.
278
279         * glib/glib.symbols: Add g_listenv and g_file_replace.
280
281 Fri Mar 11 23:51:12 2005  Soeren Sandmann  <sandmann@redhat.com>
282
283         * glib/gfileutils.c (write_to_temp_file): Don't try and generate
284         a dotfile from the name -- it doesn't work with absolute
285         paths. Also make documentation indicate that symlinks will be
286         overwritten. Both pointed out by Alexis S. L. Carvalho.
287
288 2005-03-11  Matthias Clasen  <mclasen@redhat.com>
289
290         * m4macros/glib-gettext.m4: Avoid stupid compiler complaints
291         about precision loss.
292
293 2005-03-10  Matthias Clasen  <mclasen@redhat.com>
294
295         * glib/gdate.c: Remove a lot of pointless g_return_if_fail()
296         checks.  (#169859, Morten Welinder)
297
298 2005-03-10  Sven Neumann  <sven@gimp.org>
299
300         * tests/file-test.c: include <gstdio.h>.
301
302 2005-03-10  Sven Neumann  <sven@gimp.org>
303
304         * glib/gfileutils.c (get_contents_stdio): delay memory allocation
305         until after the first read. Saves a bunch of reallocs. Also
306         increased the buffer size to 4096 bytes. (bug #165954)
307
308         * tests/file-test.c (test_get_contents): added a (very basic) test
309         for g_file_get_contents().
310
311 Wed Mar  9 19:06:45 2005  Manish Singh  <yosh@gimp.org>
312
313         * glib/glib.symbols: Add g_file_replace.
314
315 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
316
317         * configure.in: Bump version
318
319 2005-03-09  Sven Neumann  <sven@gimp.org>
320
321         * glib/gfileutils.c (g_file_replace): avoid unnecessary filename
322         conversions.
323
324 2005-03-09  Tor Lillqvist  <tml@novell.com>
325
326         * glib/gutils.c (g_get_user_data_dir, g_get_user_config_dir,
327         g_get_user_cache_dir, g_get_system_data_dirs,
328         g_get_system_config_dirs): [Win32] Don't leak return value from
329         get_special_folder(). (#169348, Daniel Atallah) Guard against
330         g_home_dir being NULL, use g_tmp_dir/g_user_name in that case.
331
332 Tue Mar  8 15:46:54 2005  Søren Sandmann  <sandmann@redhat.com>
333
334         * glib/gfileutils.c (g_file_replace): New API. A function to
335         atomically create a file.
336
337 2005-03-08  Matthias Clasen  <mclasen@redhat.com>
338
339         * glib/glib.symbols: Add the new attributes here too.
340
341         * glib/gmacros.h: Define G_GNUC_NULL_TERMINATED.
342         (#164706, Marc Meissner)
343
344         * glib/gstrfuncs.h: 
345         * glib/gfileutils.h: Use G_GNUC_NULL_TERMINATED where
346         appropriate.
347
348         * glib/goption.c (parse_int): Fix an error message.  
349         (#168751, Hazael Maldonado Torres)
350
351 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
352
353         * glib/gdebug.h: Small cleanup (use G_BEGIN/END_DECLS).
354         (#168474, Fabricio Barros Cabral)
355
356 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
357
358         * glib/gutils.c (g_find_program_in_path): Mark the last
359         paragraph of the docs as Windows-specific.  (#169433)
360
361 2005-03-06  Matthias Clasen  <mclasen@redhat.com>
362
363         * glib/gmarkup.c: Add G_GNUC_PRINTF attribute
364         to set_error.
365         (g_markup_parse_context_end_parse): Fix an
366         error message, noticed by Tim Janik.
367
368 2005-02-24  Tor Lillqvist  <tml@novell.com>
369
370         * glib/Makefile.am (BUILT_EXTRA_DIST): Don't distribute
371         glib.def. (#167496, J. Ali Harlow)
372
373         * glib/gfileutils.c (get_contents_win32): Use g_fopen(). (#168341,
374         Daniel Atallah)
375
376 2005-02-23  Matthias Clasen  <mclasen@redhat.com>
377
378         * configure.in: Don't forget to set G_THREAD_LIBS_FOR_GTHREAD 
379         on non-linux platforms.  (#168177, Michael Banck)
380
381         * tests/keyfile-test.c (test_locale_string): Set LANGUAGE 
382         instead of LC_ALL to shield against LANGUAGE being set in 
383         the environment.  (#168311, Suren A. Chilingaryan)
384
385 Tue Feb 22 22:03:38 2005  Manish Singh  <yosh@gimp.org>
386
387         * glib/gstdio.h: On G_OS_UNIX, simple #define g_open and co. as
388         aliases for their respective C library functions, instead of
389         using the function wrappers. This avoids library users having to
390         care about matching large file support with whatever glib has been
391         built with. Fixes bug #167942.
392
393         * glib/gstdio.c
394         * glib/abicheck.sh
395         * glib/glib.symbols
396         * glib/makegalias.pl: Logic to make the gstdio wrappers still
397         available for compatibility, but not used in new code.
398
399 Tue Feb 22 18:33:07 2005  Manish Singh  <yosh@gimp.org>
400
401         * glib/gtimer.c (g_usleep): Simplify the loop for the fix below.
402
403 2005-02-20  Matthias Clasen  <mclasen@redhat.com>
404
405         * glib/gqueue.c (g_queue_new): Use a memchunk for
406         sizeof(GQueue)-sized chunks.  (#167984, Fabrício Barros Cabral)
407
408         * glib/gtimer.c (g_usleep): Fix usage of 
409         nanosleep().  (#163039, Bastien Nocera)
410
411 2005-02-16  Adi Attar  <aattar@cvs.gnome.org>
412
413         * configure.in: Added "xh" to ALL_LINGUAS.
414
415 2005-02-11  Tor Lillqvist  <tml@novell.com>
416
417         * glib/giowin32.c: Include winsock2.h before windows.h, to avoid
418         compilation errors with MSVC. (#167105)
419
420 2005-02-10  Matthias Clasen  <mclasen@redhat.com>
421
422         * glib/goption.c (print_help): Take main group options into
423         account when calculating column size.  (#166921)
424         (g_option_context_parse): Accept -? as documented.  (#166977)
425
426 2005-02-09  Matthias Clasen  <mclasen@redhat.com>
427         * glib/gkeyfile.c (find_file_in_data_dirs): Don't leak path
428         here.  (#166801, Kjartan Maraas)
429
430 2005-02-08  Matthias Clasen  <mclasen@redhat.com>
431
432         * glib/gkeyfile.c (g_key_file_parse_value_as_string): Don't
433         write out of bounds.
434
435         * glib/goption.c (g_option_context_parse): Fix a 
436         one-too-short memory allocation.  (#166609, Nicolas Laurent)
437
438         * tests/Makefile.am (TESTS_ENVIRONMENT): Add tests with
439         MALLOC_CHECK_.
440
441         * tests/option-test.c: Add a test for unkown short options.
442
443 2005-02-07  Matthias Clasen  <mclasen@redhat.com>
444
445         * glib/glib.symbols: 
446         * glib/gutils.h: 
447         * glib/gutils.c (g_listenv): New function to list all 
448         environment variables.  (#166327, Hans Petter Jansson)
449
450 2005-02-07  Tor Lillqvist  <tml@novell.com>
451
452         * glib-zip.in: Add gmodule-no-export-2.0.pc.
453
454 Sun Feb  6 21:59:09 2005  Manish Singh  <yosh@gimp.org>
455
456         * glib/abicheck.sh: feed the contents of config.h and glibconfig.h
457         into the preprocessor, since glib.symbols could need #defines
458         from them.
459
460 Sun Feb  6 12:09:55 2005  Manish Singh  <yosh@gimp.org>
461
462         * glib/gatomic.c: Don't use matching constraints for asm mem
463         parameters. This makes the code match with current glibc, and
464         quiets some warnings with gcc 3.4.
465
466 2005-02-05  Tor Lillqvist  <tml@novell.com>
467
468         * configure.in (G_LIBS_EXTRA)
469         * glib/giowin32.c: I think we can include <winsock2.h> and link
470         with -lws2_32. Only Windows 95 originally didn't have Winsock 2,
471         and it's available as an update for it. Not that we use any actual
472         Winsock 2 -only features, but still, simpler to link directly with
473         ws2_32.dll instead of going through wsock32.dll.
474
475         * glib/gfileutils.c (g_file_get_contents): In the Win32 ABI
476         stability version, call g_file_get_contents_utf8(), not
477         itself. (#166386, Bill Skaggs)
478
479 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
480
481         * configure.in: Remove the --enable-ansi option  (#160469)
482
483         * configure.in: Define a HAVE_GNUC_VISIBILITY automake
484         conditional.
485
486         * glib/Makefile.am (TESTS): Only check the abi if
487         the compiler supports visibility, otherwise we
488         know there will be (harmless) extra symbols.  
489         (#166181, Ed Avis)
490
491 2005-02-02  Tor Lillqvist  <tml@novell.com>
492
493         * glib/gwin32.h: Remove unnecessary MSVC-only typedef for
494         pid_t. (#165910) GLib does not pretend to be a POSIX emulation
495         library.
496
497         * glib/gstdio.c: In the Win32 part of all functions, handle
498         invalid UTF-8 more robustly. Don't pass the resulting NULL
499         wide-char or codepage strings on to C library functions, but bail
500         out early. (#166084)
501
502         * glib/gfileutils.c: Don't use potentially incorrect errno in
503         several places. (#165951)
504         (g_mkstemp): Set errno appropriately.
505
506 2005-02-02  Matthias Clasen  <mclasen@redhat.com>
507
508         * glib/gutils.c: Move doc comments inline.
509
510         * glib/ghash.h: Adjust some argument names.
511
512         * configure.in: Give meaningful names to g_memmove() 
513         arguments.
514
515 2005-02-01  Matthias Clasen  <mclasen@redhat.com>
516
517         * tests/keyfile-test.c (test_key_remove): Add test case for
518         key removal.
519
520         * glib/gkeyfile.c (g_key_file_remove_key): Actually remove 
521         the key from the list of pairs.  (#165980, David Hoover)
522
523         * glib/gkeyfile.c: Doc clarifications.  (#165907, Vincent Untz)
524
525         * tests/keyfile-test.c (test_group_remove): Add test case for
526         group removal.
527
528         * glib/gkeyfile.c (g_key_file_remove_group): Don't segfault
529         if the group doesn't exist.  (#165887, Mathias Hasselmann)
530
531 2005-01-30  Matthias Clasen  <mclasen@redhat.com>
532
533         * tests/keyfile-test.c: Some more unit tests.
534
535 2005-01-28  Christian Rose  <menthos@menthos.com>
536
537         * configure.in: Added "tl" to ALL_LINGUAS.
538
539 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
540
541         * tests/run-markup-tests.sh: Let $srcdir default to .
542
543         * tests/markups/fail-40.gmarkup: Add a test with a long entity
544         name.
545
546         * glib/gmarkup.c (unescape_text_state_inside_entity_name): Don't
547         copy the entity name into a short buffer of fixed length. Instead,
548         compare it in place with strncmp(), and do a full strdup() in the
549         error path.  (#165100, Simon Budig)
550
551 2005-01-22  Tor Lillqvist  <tml@novell.com>
552
553         * glib/gdate.c (g_date_set_time): Don't g_assert that localtime()
554         returns non-NULL. It does return NULL at least on Win32 if you
555         pass it a negative time_t, which although wrong, shouldn't cause
556         an application to abort. Instead return 2000-01-01 as a default
557         date. Print a warning unless G_DISABLE_CHECKS. (#164622)
558
559 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
560
561         * glib/gkeyfile.c (g_key_file_parse_value_as_integer): Don't
562         interpret leading zeros as octal. The specification requires
563         %f parsing, and %f doesn't allow octal.  
564
565         * tests/keyfile-test.c: Add some more tests.
566
567         * glib/gkeyfile.c (g_key_file_get_keys): Return keys in
568         the order found in the file, rather than the opposite.
569         (g_key_file_parse_value_as_string): Fix error reporting.
570
571 2005-01-19  Matthias Clasen  <mclasen@redhat.com>
572
573         * glib/gkeyfile.c (g_key_file_parse_data): Accept \r\n as 
574         line end.  (#163030, Bastian Nocera)
575         (g_key_file_load_from_data): Make -1 work as a size.
576         
577         * tests/keyfile-test.c: Some unit tests for the keyfile
578         parser.  
579
580         * tests/Makefile.am (test_programs): Add keyfile-test.
581
582 2005-01-19  Tor Lillqvist  <tml@novell.com>
583
584         * glib/gbacktrace.c (g_on_error_stack_trace): On Win32 call
585         G_BREAKPOINT() if being debugged.
586
587         * glib/gmessages.c (g_logv): For fatal messages on Win32, use
588         G_BREAKPOINT() also without G_ENABLE_DEBUG, but only if being
589         debugged. Suggestion by Ulf Lamping.
590
591 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
592
593         * glib/gqsort.c: Don't include alloca.h. It is not needed,
594         and does not exist on win32.  (#164468, Kazuki IWAMOTO)
595
596         * glib/gkeyfile.c (g_key_file_get_boolean_list): Fix a
597         sparse warning.  (#164467, Kjartan Maraas)
598
599 2005-01-17  Matthias Clasen  <mclasen@redhat.com>
600
601         * glib/gconvert.c (g_get_filename_charsets): Don't crash
602         if G_FILENAME_ENCODING is empty.  (#164330, Pawel Sakowski)
603
604 2005-01-15  Tor Lillqvist  <tlillqvist@novell.com>
605
606         * configure.in: sh portability fix. Use "test" and not [.
607         (#163144, Robert Ögren)
608
609 2005-01-13  Matthias Clasen  <mclasen@redhat.com>
610
611         * glib/gqsort.c: Sync to glibc.  (#133994, Morten Welinder, 
612         patch by Kjartan Maraas)
613
614 2005-01-11  Owen Taylor <otaylor@redhat.com>
615
616         * configure.in: Add gmodule-export-2.0.pc to AC_CONFIG_FILES.
617
618         * glib/Makefile.am gobject/Makefile.am gthread/Makefile.am:
619         Use grep | head -n 1 instead of grep -m 1 which doesn't work
620         with slightly older versions of GNU grep in 
621         install-libtool-import-lib rule.
622
623 2005-01-11  Matthias Clasen  <mclasen@redhat.com>
624
625         * glib/gdir.c (g_dir_open): Typo fix.
626
627 2005-01-10  Owen Taylor  <otaylor@redhat.com>
628
629         * Makefile.am (EXTRA_DIST): Add missing ChangeLog.pre*
630
631 2005-01-09  Hans Breuer  <hans@breuer.org>
632
633         * glib/gfileutils.c : make it compile with mvc6 default sdk,
634         (#define INVALID_FILE_ATTRIBUTES, FILE_ATTRIBUTE_DEVICE)
635
636 2005-01-09  Tor Lillqvist  <tlillqvist@novell.com>
637
638         * glib/gwin32.c: Include also wchar.h for wcslen on
639         Cygwin.
640         (g_win32_error_message): Fix cast. (#163133, Roger Leigh)
641
642         * glib/gfileutils.c: Include <io.h> on Windows for
643         prototypes. (#163390, Kazuki Iwamoto)
644
645 2005-01-07  Matthias Clasen  <mclasen@redhat.com>
646
647         * NEWS: Typo fixes.
648
649         * configure.in: Bump version
650
651         * === Released 2.6.1 ===
652
653 2005-01-07  Matthias Clasen  <mclasen@redhat.com>
654
655         * configure.in: 
656         * Makefile.am: Generate and distribute gmodule-export-2.0.pc,
657         which is currently just a copy of gmodule-2.0.pc, but makes
658         it explicit that it adds --export-dynamic.
659         
660         * gmodule-export-2.0.pc.in: Copy of gmodule-2.0.pc.in.
661
662 2005-01-06  Tor Lillqvist  <tml@iki.fi>
663
664         * glib/Makefile.am
665         * gobject/Makefile.am: glib.def and gobject.def are generated, not
666         in $(srcdir). (#163143, J. Ali Harlow)
667
668         * configure.in
669         * glib/Makefile.am
670         * gobject/Makefile.am: Win32 cross-compilation fixes. (#163144,
671         J. Ali Harlow)
672
673 2005-01-05  Matthias Clasen  <mclasen@redhat.com>
674
675         * glib/gutils.h: Simplify the inlining magic to make it
676         work at Oh zero.  (#162990, Kalpesh Shah) 
677
678 2005-01-04  Tor Lillqvist  <tml@iki.fi>
679
680         * glib/guniprop.c (get_locale_type): Use g_win32_getlocale()
681         instead of setlocale() on Windows. setlocale() returns strings
682         like "Turkish_Turkey".
683
684 2005-01-04  Matthias Clasen  <mclasen@redhat.com>
685
686         Fix the inlining magic.  (#157536, Jens Hatlak, and
687         #149907, Morten Welinder)
688         
689         * configure.in: Define G_CAN_INLINE in glibconfig.h
690
691         * glib/gutils.h: Streamline the inlining magic a bit,
692         don't use extern when implementing the non-inlined 
693         version.
694
695 2005-01-03  Matthias Clasen  <mclasen@redhat.com>
696
697         * glib/gutils.c (g_find_program_in_path): Don't return
698         directories.  (#160738, Tommi Komulainen)
699
700         * glib/gfileutils.c (g_file_get_contents): Clarify the 
701         documentation.  (#162251, Mariano Suárez-Alvarez)
702
703 2005-01-02  Matthias Clasen  <mclasen@redhat.com>
704
705         * glib/gutils.c (g_setenv, g_unsetenv): Clarify the 
706         docs.  (#162747, Crispin Flowerday)
707
708 2005-01-01  J. Ali Harlow  <ali@juiblex.co.uk>
709
710         * configure.in: Don't use AC_TRY_RUN to test for long long format
711         when using the MSVCRT.DLL runtime since we know the answer anyway
712         and it causes some mild inconvience when cross compiling.
713
714         * README.win32: Add a reference to the cross compiling section
715         of the reference manual.
716
717         * docs/reference/glib/cross.sgml: MinGW uses MSVCRT.DLL which
718         requires %I64i instead of %lli. (#161306)
719
720 2005-01-01  Tor Lillqvist  <tml@iki.fi>
721
722         * glib/gutils.c: Make the g_getenv() ABI backward compatibility
723         wrapper more robust.
724
725 2005-01-01  Tor Lillqvist  <tml@iki.fi>
726
727         * glib/glib.symbols
728         * glib/gutils.h
729         * glib/gutils.c: Make also g_getenv(), g_setenv(), g_unsetenv()
730         and g_find_program_in_path() take and return UTF-8 strings on
731         Win32. Implement DLL ABI backward compatility for them, too. Move
732         all the DLL ABI stability wrappers to the end of the file. Use
733         wide character API when available in inner_find_program_in_path().
734
735         * glib/gfileutils.c: With the UTF-8ness of g_getenv() above, just
736         use g_getenv() to get PATHEXT. (Yeah, it's probably overdoing it
737         to consider somebody actually having anything else than ASCII
738         in PATHEXT, but...)
739
740 2004-12-31  Tor Lillqvist  <tml@iki.fi>
741
742         * glib/gfileutils.c (g_file_test): Rewrite the Win32 version to
743         use GetFileAttributes() instead of stat(). stat() is unreliable
744         for corner cases like '\\server\share' or '.\'. Part of fixing
745         #161797. When testing for executability, in addition to the fixed
746         set of executable file name extensions also check the PATHEXT
747         environment variable.
748
749 2004-12-30  Tor Lillqvist  <tml@iki.fi>
750
751         * glib/gutils.c (g_get_current_dir): In the Win32 version, use
752         GetCurrentDirectory() directly for simpler buffer length
753         management. I don't trust getcwd() getting it right all the time.
754
755 2004-12-30  Matthias Clasen  <mclasen@redhat.com>
756
757         * glib/gfileutils.c (g_file_test): Typo fix.
758
759 2004-12-30  Tor Lillqvist  <tml@iki.fi>
760
761         * glib/gutils.c (g_path_skip_root): Require UNC paths to start
762         with exactly two slashes.
763         (g_get_current_dir): Use wide character API when available.
764         (g_path_get_dirname): Handle UNC paths better. Part of fix for
765         #161797.
766
767 2004-12-27  Matthias Clasen  <mclasen@redhat.com>
768
769         * configure.in: Add an OS_LINUX conditional.
770
771         * glib/Makefile.am (TESTS): Only check the ABI on 
772         linux, since the shell script is not portable, and libtool
773         deficiencies may distort the ABI on other platforms.  (#161741)
774
775 2004-12-21  Matthias Clasen  <mclasen@redhat.com>
776
777         * glib/goption.c (print_entry): Don't show
778         the special G_OPTION_REMAINING entry.  (#161934,
779         Matthew F. Barnes)
780
781 2004-12-20  Tor Lillqvist  <tml@iki.fi>
782
783         * glib/gconvert.c (g_locale_to_utf8, g_filename_to_uri): Improve
784         docs.
785
786 2004-12-20  Matthias Clasen  <mclasen@redhat.com>
787
788         * tests/option-test.c: Add some tests for '--' 
789         stripping.
790
791         * glib/goption.c (g_option_context_parse): Don't
792         strip '--' if it would be needed by a second option
793         parser.  (#161701)
794
795         * glib/gunicollate.c (g_utf8_collate): Make docs 
796         more accurate.  (#161683, Marcin Krzyzanowski)
797
798 2004-12-19  Matthias Clasen  <mclasen@redhat.com>
799
800         * glib/goption.c (g_option_context_parse): Call
801         post-parse hooks also if argv is NULL.  (#161668,
802         Marcin Krzyzanowski)
803