cffcdeab30d6f85410d643bfc8710654990e36a4
[platform/upstream/glib.git] / ChangeLog.pre-2-8
1 2005-08-03  Ross Burton  <ross@burtonini.com>
2
3         * glib/gstdio.c:
4         Fix DocBook tag typo. (#311966)
5
6 2005-08-03  Matthias Clasen  <mclasen@redhat.com>
7
8         * glib/gstdio.h: Add G_BEGIN_DECLS/G_END_DECLS.  (#312424)
9
10 2005-08-02  Matthias Clasen  <mclasen@redhat.com>
11
12         * glib/gconvert.c (g_convert_with_iconv): Don't go in an
13         infinite loop if the input text ends in an incomplete multibyte
14         character.  (#312402, Sebastien Bacher)
15
16         * Bump version
17
18         * === Released 2.7.5 ===
19
20         * NEWS: Updates
21
22 2005-08-02  Matthias Clasen  <mclasen@redhat.com>
23
24         * glib/gconvert.c (g_convert_with_iconv, g_convert_with_fallback):
25         Cleanup converter state after the conversion. Document streaming
26         conversion pitfalls.  (#311337)
27
28 2005-08-02  Tor Lillqvist  <tml@novell.com>
29
30         * tests/refcount/objects.c 
31         * tests/refcount/properties.c 
32         * tests/refcount/signals.c: Use g_usleep() instead of sleep() for
33         portability.
34
35 Mon Aug  1 23:33:47 2005  Tim Janik  <timj@imendio.com>
36
37         * tests/refcount/closures.c: test high contention on closure
38         reference counts to trigger and catch non-atomic updates.
39
40         * tests/refcount/objects.c:
41         * tests/refcount/objects2.c: 
42         * tests/refcount/properties.c: 
43         * tests/refcount/properties2.c: 
44         * tests/refcount/signals.c:
45         fixed up test and threading fundamentals. variables accessed from all 
46         threads need to be volatile. context switches are enforced by using
47         g_thread_yield(), not g_usleep(1) which may result in busy waits on 
48         some platforms. for testcode, always consider all warnings and
49         critical messages fatal. issue the currently running program on
50         stdout. improved progress indicators.
51
52         * tests/refcount/properties.c:
53         * tests/refcount/objects.c:
54         don't overdo the number of testing threads to keep the testing machine
55         usable, 2 threads can produce as much contention as 20 if executing the
56         same code.
57
58         * tests/refcount/signals.c: only start 1 thread per object. GObject 
59         doesn't provide mutually exclusive object access, but only mutually
60         exclusive reference count modification.
61
62         * tests/Makefile.am: added closures test.
63
64 2005-08-01  Tor Lillqvist  <tml@novell.com>
65
66         * tests/uri-test.c: Make it pass on Win32.
67         (from_uri_tests[]): Take into consideration that on Win32 we don't
68         return "localhost" hostnames.
69         (safe_strcmp_filename): New function that considers slash and
70         backslash equal on Win32.
71         (safe_strcmp_hostname): New function that considers "localhost"
72         equal NULL on Win32.
73         (run_roundtrip_tests): Use safe_strcmp_filename() and
74         safe_strcmp_hostname().
75
76 Sun Jul 31 01:50:20 2005  Tim Janik  <timj@gtk.org>
77
78         * glib/gdataset.c:
79         moved G_DATALIST_*_POINTER() macros here, because proper use requires
80         the global g_dataset_global mutex to be acquired.
81         g_datalist_id_get_data():
82         g_datalist_unset_flags():
83         g_datalist_set_flags(): properly acquire and release dataset mutex.
84
85         * glib/gdatasetprivate.h: implement G_DATALIST_GET_FLAGS() via atomic
86         pointer access to account for memory barriers. moved all other macros.
87
88 2005-07-26  Matthias Clasen  <mclasen@redhat.com>
89
90         * glib/goption.c: Include glibintl.h, not gi18n.h, noticed
91         by Dan Winship.
92
93         * configure.in: Try -mt as compiler flag for threads, needed
94         for the HP C compiler on HP-UX.  (#163051, Paul Cornett)
95
96         * glib/ghash.c (g_hash_table_foreach): Fix a typo in the 
97         docs.  (#311569, Ross Burton)
98
99 2005-07-21  Matthias Clasen  <mclasen@redhat.com>
100
101         * configure.in: Bump version 
102
103         * === Released 2.7.4 ===
104
105         * NEWS: Updates
106
107 2005-07-20  Manish Singh  <yosh@gimp.org>
108
109         * tests/refcount/signals.c: use G_CALLBACK for signal connections.
110
111 2005-07-20  Matthias Clasen  <mclasen@redhat.com>
112
113         * glib/gthreadpool.c (g_thread_pool_free): Don't get
114         stuck in here if immediate is TRUE.  (#310954, 
115         Hong Jen Yee)
116
117         * tests/threadpool-test.c (main): Test immediate == TRUE.
118
119 2005-07-20  Tor Lillqvist  <tml@novell.com>
120
121         * glib/gutils.h (g_win32_get_system_data_dirs): Make this an
122         inline function. Define it only if G_CAN_INLINE and not
123         C++. (#173098)
124
125 2005-07-19  Matthias Clasen  <mclasen@redhat.com>
126
127         * glib/gstring.c (g_string_chunk_insert_len): Avoid
128         an unnecessary strlen if len is -1.  (#169692, 
129         Benoit Dejean)
130
131         * glib/gatomic.c (g_atomic_pointer_compare_and_exchange): 
132         Fix g_atomic_pointer_compare_and_exchange on sparc64.
133         (#167572, Gert Doering)
134
135 2005-07-15  Matthias Clasen  <mclasen@redhat.com>
136
137         * configure.in: Bump version
138
139         * === Released 2.7.3 ===
140         
141 2005-07-15  Matthias Clasen  <mclasen@redhat.com>
142
143         * tests/Makefile.am (SUBDIRS): Add tests/refcount
144
145         * configure.in: Add tests/refcount
146
147         * tests/refcount/properties.c: Test property changes
148         from multiple threads.
149
150         * tests/refcount/signals.c: Test signal emission from
151         multiple threads.
152
153         * tests/refcount/objects.c: Test refcounting from 
154         multiple threads.
155
156         * tests/refcount/objects2.c: 
157         * tests/refcount/properties2.c: Tests to measure the 
158         overhead of threadsafe refcounting.
159         
160         * glib/giochannel.c (g_io_channel_ref, g_io_channel_unref): 
161         Use atomic operations to make refcounting
162         threadsafe.  (#166020, Wim Taymans)
163
164         * NEWS: Updates
165
166 2005-07-14  Matthias Clasen  <mclasen@redhat.com>
167
168         * tests/spawn-test.c: 
169         * tests/uri-test.c: 
170         * tests/thread-test.c: 
171         * tests/queue-test.c: 
172         * tests/mainloop-test.c: 
173         * tests/iochannel-test.c: 
174         * tests/gio-test.c: 
175         * tests/child-test.c: Make the tests silent on success.
176
177 2005-07-13  Matthias Clasen  <mclasen@redhat.com>
178
179         * glib/gfileutils.c (g_mkdir_with_parents): Fix a 
180         typo.  (#310243, Richard Laager)
181
182         * glib/goption.c (g_option_group_add_entries): Warn if a
183         short name is not acceptable.
184
185 2005-07-12  Matthias Clasen  <mclasen@redhat.com>
186
187         * glib/goption.h (G_OPTION_FLAG_NOALIAS): 
188         * glib/goption.c: Add and implement a new flag
189         to turn off the automatic <groupname>- prefixing
190         for conflict resolution of long option names. (#171840,
191         Adam McLaurin)
192         
193         All optional callback arguments  (#308886, Pawel
194         Sliwowski)
195
196         * glib/goption.h (G_OPTION_FLAG_OPTIONAL_ARG): 
197         * glib/goption.c: Add and implement a new flag
198         to indicate that a callback *optionally* takes another
199         argument.
200
201         * tests/option-test.c: Add tests for optional arguments.
202
203 2005-07-12  Matthias Clasen  <mclasen@redhat.com>
204
205         * glib/gthread.c (g_static_rec_mutex_lock_full): Don't lock
206         if depth is zero.  (#310148, Wim Taymans)
207
208 2005-07-10  Matthias Clasen  <mclasen@redhat.com>
209
210         * glib/gutils.c (g_listenv): Ignore anomalous environment
211         entries which are not of the form variable=value.  (#309859,
212         Morten Welinder)
213
214 2005-07-09  Tor Lillqvist  <tml@novell.com>
215
216         * glib/giowin32.c: Totally rewritten socket channel
217         implementation. See discussion in bug #147392.
218
219         * configure.in: Don't use autoconf variables for the resource
220         object files on Win32 any longer. Instead handle that in the
221         Makefile.am files. Check for windres.
222
223         * glibconfig.h.win32.in: Minor tuning to match the
224         configure-produced glibconfig.h closely.
225
226         * glib/Makefile.am: Don't use the scripts in build/win32 to
227         compile glib.rc into a resource object file. (This means we lose
228         the build number increment magic, but I doubt it was that useful
229         anyway.) Instead use windres directly. To pass the normal .o file
230         produced by windres through libtool, which wants .lo files, pass
231         it directly to the linker using a -Wl option.
232
233         * glib/glib.rc.in: Thus replace BUILDNUMBER with 0.
234
235 2005-07-08  Matthias Clasen  <mclasen@redhat.com>
236
237         * configure.in: Bump version
238         
239         * === Released 2.7.2 ===
240
241         * NEWS: Updates
242
243 2005-07-07  Matthias Clasen  <mclasen@redhat.com>
244
245         * configure.in: Make the size_t size detection work on AIX. 
246         (#309725)
247
248 2005-07-06  Matthias Clasen  <mclasen@redhat.com>
249
250         * configure.in: Require a newer gtk-doc.
251
252 2005-07-01  Hans Breuer  <hans@breuer.org>
253
254         * glib/gmessages.c : include <process.h> for getpid()
255         * glib/gmappedfile.c : include <io.h> for close() etc.
256         * glib/makefile.msc.in : add    gmappedfile.obj
257
258 2005-07-01  Matthias Clasen  <mclasen@redhat.com>
259
260         * glib/gkeyfile.c (g_key_file_get_key_comment): 
261         (g_key_file_get_top_comment): Don't reverse the order of multiline 
262         comments.
263         (g_key_file_get_group_comment): Actually get the group comment.
264
265         * tests/keyfile-test.c (test_comments): Test that comments are
266         handled properly.  (#309263, Mikael Magnusson)
267
268 2005-06-30  Matthias Clasen  <mclasen@redhat.com>
269
270         * configure.in: Bump version
271
272         * === Released 2.7.1 ===
273
274 2005-06-30  Matthias Clasen  <mclasen@redhat.com>
275
276         * glib/gstring.c (g_str_hash): Fix portability issues.  
277         (#307064, Morten Welinder)
278
279         Apply a patch which may make GLib work on BeOS again.  
280         (#309157, Kian Duffy)
281
282         * glib/gmain.c: Update the BeOS includes.
283
284         * glib/gstdio.c: 
285         * glib/gutils.c (g_find_program_in_path): 
286         * glib/gbacktrace.c (g_on_error_stack_trace): Use the UNIX
287         implementation on BeOS, as well.
288
289         * configure.in: Don't put glib 1.0 into G_MODULE_LIBS, even
290         on BeOS.
291
292         * NEWS: Updates
293
294 2005-06-26  Tor Lillqvist  <tml@novell.com>
295
296         * glib/Makefile.am: libtool installs/uninstalls the import
297         library, no need to do it ourselves. Do still install/uninstall
298         the .def file, though.
299
300         * glib/gmappedfile.c: Add Win32 implementation.
301         (g_mapped_file_free): Don't mention writable shared mappings in
302         the doc comment. Free the GMappedFile struct.
303
304         * tests/mapping-test.c (main): No kill() or SIGUSR1 on Win32, use
305         a flag file instead to stop the child. Use g_usleep() instead of
306         sleep().
307
308 2005-06-24  Matthias Clasen  <mclasen@redhat.com>
309
310         Add an mmap() wrapper called GMappedFile. (#148218,
311         David Schleef, Behdad Esfahbod)
312         
313         * glib/gmappedfile.[hc]: New files.
314
315         * configure.in: Check for mmap.
316         
317         * glib/Makefile.am: Add new files.
318         
319         * glib/glib.symbols: Add new functions.
320
321         * glib/glib.h: Include gmappedfile.h
322
323         * tests/mapping-test.c: Tests for GMappedFile.
324
325         * tests/Makefile.am: Add new file.
326
327         * Makefile.am (DISTCHECK_CONFIGURE_FLAGS): Add --enable-man.
328
329 2005-06-24  Tor Lillqvist  <tml@novell.com>
330
331         * glib/Makefile.am (install-libtool-import-lib): Current GNU tools
332         do understand the PRIVATE keyword.
333
334         * glib/gfileutils.c (g_mkdir_with_parents): Return error with
335         EINVAL also for empty pathnames.
336         (g_build_pathname_va): Fix typo.
337
338 Thu Jun 23 15:52:08 2005  Manish Singh  <yosh@gimp.org>
339
340         * glib/gfileutils.c: g_build_filename_va is only use in the G_OS_WIN32
341         case, so compile it conditionally.
342
343 2005-06-23  Matthias Clasen  <mclasen@redhat.com>
344
345         * tests/keyfile-test.c (test_group_remove): Don't leak
346         memory here.
347
348         * glib/gkeyfile.c (g_key_file_load_from_data_dirs): Don't
349         leak output_path.  (#308546, Kjartan Maraas)
350
351         * glib/glib.symbols: 
352         * glib/gfileutils.h: 
353         * glib/gfileutils.c (g_build_pathv, g_build_filenamev): 
354         Variants of g_build_path() and g_build_filename()
355         which take a string array instead of varargs.  
356         (#149092, Todd A. Fisher)
357
358         * tests/strfunc-test.c: Add tests for g_build_pathv() 
359         and g_build_filenamev().
360
361 2005-06-22  Tor Lillqvist  <tml@novell.com>
362
363         * glib/gfileutils.c
364         * glib/gfileutils.h
365         * glib/glib.symbols
366         * tests/testglib.c: Rename g_makepath() to g_mkdir_with_parents().
367
368 2005-06-22  Matthias Clasen  <mclasen@redhat.com>
369
370         * glib/goption.c (parse_short_option, parse_long_option): 
371         Pass the option name also in the NO_ARG case.  (#308602,
372         Masatake YAMATO)
373         (parse_arg): Properly store changes for arrays.  (#308528,
374         Roger Leigh)
375
376 2005-06-22  Tor Lillqvist  <tml@novell.com>
377
378         * glib/gfileutils.c (g_makepath): New function. Creates a
379         directory including intermediate parent directories as
380         needed. (#60509)
381
382         * glib/gfileutils.h: Declare it.
383
384         * glib/gutils.c (g_get_host_name): New function. Returns the
385         machine's name, or one of its names. Document that it is
386         best-effort only, and not guaranteed to be unique or anything.
387         (g_get_any_init): Get the host name here. On Unix use
388         gethostname(), on Windows use GetComputerName(). (#5200)
389
390         * glib/gutils.h: Declare it.
391
392         * glib/glib.symbols: Add new functions.
393
394         * tests/testglib.c: Test g_makepath() and g_get_host_name().
395         
396 2005-06-18  Matthias Clasen  <mclasen@redhat.com>
397
398         * glib/goption.h: 
399         * glib/goption.c: Add G_OPTION_FLAG_NO_ARG and
400         G_OPTION_FLAG_FILENAME to allow greater control of
401         G_OPTION_ARG_CALLBACK options. (#302632, Dan Winship)
402
403         * tests/option-test.c: test callback args
404
405 2005-06-14  Theppitak Karoonboonyanan  <thep@linux.thai.net>
406
407         * configure.in: Added 'th' (Thai) to ALL_LINGUAS.
408
409 2005-06-10  Matthias Clasen  <mclasen@redhat.com>
410
411         * configure.in: Bump version
412
413         * === Released 2.7.0 ===
414
415         * NEWS: Updates
416
417 2005-06-09  Matthias Clasen  <mclasen@redhat.com>
418
419         * glib/gkeyfile.c (g_key_file_parse_value_as_integer): Better
420         error checking. (#306389, Morten Welinder)
421
422         * glib/goption.c (parse_int): Set errno to 0 before calling
423         strtol.  (#306388, Morten Welinder)
424
425 2005-06-09  Tor Lillqvist  <tml@novell.com>
426
427         * glib/gstdio.h
428         * glib/gstdio.c
429         * glib/glib.symbols: Add a chdir() wrapper, too.
430
431         * glib/glib.symbols: Add g_win32_locale_filename_from_utf8().
432
433         * glib/gwin32.c (g_win32_locale_filename_from_utf8): Clarify doc
434         comment.
435
436 2005-06-08  Tor Lillqvist  <tml@novell.com>
437
438         * glib/gutils.c (get_windows_directory_root): New helper function
439         on Win32, returns the root of the drive (or possibly share) where
440         the Windows directory is. (In the case of Terminal Server sessions
441         the Windows directory is a per-user folder.)
442         (g_get_any_init): Use get_windows_directory_root() as last resort
443         for both temp directory and home directory. g_get_home_dir() now
444         never returns NULL on Win32. Don't look at HOMEDRIVE and
445         HOMEPATH. HOME, USERPROFILE, CSIDL_PROFILE and Windows directory
446         drive root should be enough.
447
448 2005-06-08  Matthias Clasen  <mclasen@redhat.com>
449
450         * glib/glib.symbols: 
451         * glib/gunicode.h: 
452         * glib/gunicollate.c (g_utf8_collate_key_for_filename): 
453         New function to calculate collation keys which are more
454         suitable for sorting filenames.  (#172690, Ole Laursen)
455
456 Fri May 27 17:18:00 2005  Manish Singh  <yosh@gimp.org>
457
458         * glib/goption.c (parse_short_option): initialize option_name
459         before using it.
460
461 2005-05-27  Matthias Clasen  <mclasen@redhat.com>
462
463         * glib/goption.c (parse_short_option, parse_long_option):
464         Return an error if an option is missing its argument.  (#305576,
465         Björn Lindqvist)
466
467         * tests/option-test.c (missing_arg_test): Add a testcase.
468
469 Wed May 25 15:33:51 2005  Manish Singh  <yosh@gimp.org>
470
471         * glib/goption.c (print_help): rest_description should be const.
472
473 2005-05-25  Matthias Clasen  <mclasen@redhat.com>
474
475         * glib/gunidecomp.c (combine_hangul): Don't eat Hangul 
476         when normalizing.  (#301742, reported by Christian Biere,
477         patch by Noah Levitt)
478
479 2005-05-24  Matthias Clasen  <mclasen@redhat.com>
480
481         * glib/goption.c (print_help): If the remaining argument
482         has an arg_description, display the synopsis as
483         PROGNAME [OPTION...] REST  (#305346, Noah Levitt)
484
485 2005-05-20  Federico Mena Quintero  <federico@ximian.com>
486
487         Merged from glib-2-6:
488
489         * glib/gspawn.c (g_spawn_command_line_sync): Clarify the meaning
490         of exit_status(); it's not the return code from the child, but
491         rather the waitpid() status.
492
493 2005-05-18  Matthias Clasen  <mclasen@redhat.com>
494
495         * glib/gunidecomp.c: Correct the end of the Hangul 
496         Syllables range, from 0xd7af to 0xd7a3, in several
497         places.  (#301984, Changwoo Ryu)
498
499 2005-05-17  Matthias Clasen  <mclasen@redhat.com>
500
501         * tests/tree-test.c (main): Check the return values of
502         g_tree_remove().
503
504         * glib/gtree.c (g_tree_remove, g_tree_steal): Return
505         a boolean indicating wether the key was found.  (#302545,
506         Matthew F. Barnes)
507
508 2005-05-06  Brian Cameron  <brian.cameron@sun.com>
509
510         * configure.in, gmodule-no-export-2.0-uninstalled.pc.in,
511           Makefile.am:  Added gmodule-no-export-2.0-uninstalled.pc.in
512           to allow building of other libraries like pango when 
513           glib is uninstalled.
514
515 2005-05-06  Matthias Clasen  <mclasen@redhat.com>
516
517         * tests/option-test.c: Add a testcase.
518         
519         * glib/goption.c (g_option_context_parse): Treat '-'
520         on its own as a non-option argument.  (#168008, Tim Musson,
521         Thomas Leonard and others)
522
523 2005-05-05  Owen Taylor  <otaylor@redhat.com>
524
525         * glib/gdataset.[ch] glib/gdatasetprivate.h: Add 
526         g_datalist_set/unset_flags(), g_datalist_get_flags() functions
527         to squeeze some bits into a GDataSet... this is needed for
528         efficient implementation of toggle references in GObject.
529
530         * tests/gobject/references.c tests/gobject/Makefile.am:
531         Add a test case for weak and toggle references.
532
533         * glib/gfileutils.[ch]: Rename g_file_replace() back
534         to g_file_set_contents().
535
536         * glib/glib.symbols: Update.
537
538 2005-05-02  Matthias Clasen  <mclasen@redhat.com>
539
540         * glib/gstring.c (g_str_equal, g_str_hash): Move docs
541         inline.
542
543 2005-05-01  Matthias Clasen  <mclasen@redhat.com>
544
545         * glib/ghash.h: Rename some parameters to make gtk-doc
546         happy.
547
548         * glib/gutils.c: 
549         * glib/gwin32.c: 
550         * glib/gstdio.c: Fix some typos, mark new API as "Since 2.8".
551
552 2005-04-29  Matthias Clasen  <mclasen@redhat.com>
553
554         * glib/gtree.c: Clarify some docs. (#302062, Matthew F. Barnes)
555
556 2005-04-28  Matthias Clasen  <mclasen@redhat.com>
557
558         * glib/gstrfuncs.c (g_strcompress): Warn and don't crash
559         when meeting a trailing \\.  (#301373, Benjamin Otte)
560
561 2005-04-27  Tor Lillqvist  <tml@novell.com>
562
563         * glib/gconvert.c (open_converter, g_convert_with_iconv): Don't
564         call g_set_error() unless the GError pointer is non-NULL. This
565         avoids infinite recursion problems in certain rare situations on
566         Windows, when g_locale_from_utf8() is called from
567         _glib_get_locale_dir() after the change below. It's the
568         _glib_gettext() calls to translate error messages that are
569         parameters to g_set_error() that cause the recursion, not
570         g_set_error() itself.
571
572         * glib/gwin32.c (g_win32_locale_filename_from_utf8): New
573         function. Converts a filename to the system codepage, and if a
574         straight conversion isn't possible (because the filename contains
575         characters not in the system codepage), try looking up the
576         filename (which should refer to an existing file for this to
577         succeed) with short (8.3) pathname components.
578
579         * glib/gutils.c (_glib_get_locale_dir): No need to cache the
580         result, this function is normally called only once. Return the
581         path to the locale directory in system codepage, not UTF-8. The
582         path is passed to bindtextdomain(), which doesn't use UTF-8 file
583         names. Use g_win32_locale_filename_from_utf8(). (#301772)
584
585         Don't do run-time lookup of message catalog directory on
586         Cygwin. Cygwin is supposed to look and feel like Unix, and on Unix
587         we use paths fixed at configure time.
588
589 2005-04-19  Tor Lillqvist  <tml@novell.com>
590
591         * glib/gutils.h: Minor comment improvement.
592
593 2005-04-18  Tor Lillqvist  <tml@novell.com>
594
595         * glib/gfileutils.c: No <sys/wait.h> on Win32. Definition of
596         save_errno was missing in one place.
597
598 Sat Apr 16 20:15:44 2005  Soeren Sandmann  <sandmann@redhat.com>
599
600         * glib/gfileutils.c (g_file_replace): Save the errno in various
601         places
602
603         * glib/gfileutils.c (set_umask_permissions): Fork a child and do
604         chmod() to the umask() permissions there.
605
606 2005-04-10  Matthias Clasen  <mclasen@redhat.com>
607
608         * glib/gmessages.h (g_debug): Use G_LOG_LEVEL_DEBUG in
609         both definitions.  (#300071, Tommi Komulainen)
610
611 2005-04-09  Tor Lillqvist  <tml@novell.com>
612
613         * glib/gutils.c: Include <process.h> on Win32 for getpid(). (#173094)
614
615 2005-04-08  Tor Lillqvist  <tml@novell.com>
616
617         * glib/gstdio.h
618         * glib/gstdio.c
619         * glib/glib.symbols (g_access, g_chmod, g_creat): Wrap also
620         access(), chmod() and creat(). (#169623, #171285)
621
622 2005-04-08  Tor Lillqvist  <tml@novell.com>
623
624         Improve g_get_system_data_dirs() on Windows. A library that calls
625         g_get_system_data_dirs() might be installed in a different
626         top-level prefix than GLib or the application being run.
627
628         * glib/gutils.h (g_win32_get_system_data_dirs): New static
629         function defined in this header. Calls
630         g_win32_get_system_data_dirs_for_module() passing the address of
631         itself as parameter. g_get_system_data_dirs() is #defined as this
632         function.
633
634         * glib/gutils.c (g_win32_get_system_data_dirs_for_module): New
635         function. If the address parameter is non-NULL, the corresponding
636         module's installation location is used for one of the returned
637         path names, in addition to the COMMON_APPDATA, COMMON_DOCUMENTS,
638         glib top-level and application top-level folders.
639         (g_get_system_data_dirs): Now just for backward compatibility on
640         Win32. Just call g_win32_get_system_data_dirs_for_module(NULL).
641
642         * glib/glib.symbols: Add g_win32_get_system_data_dirs_for_module.
643
644         * glib/gutils.c (read_aliases): Not used on Windows.
645         (unalias_lang): Don't do anything on Windows, there is no
646         /usr/share/locale/locale.alias file..
647         
648 Thu Apr  7 22:51:15 2005  <yosh@gimp.org>
649
650         * glib/gutils.c (g_get_system_data_dirs): Declare glib_top_share_dir
651         and exe_top_share_dir only in G_OS_WIN32.
652
653 2005-04-08  Tor Lillqvist  <tml@novell.com>
654
655         * glib/gutils.c (g_get_system_data_dirs): After investigating more
656         closely the actual use cases of this function, I understand better
657         what it needs to do on Windows. In addition to the Windows
658         COMMON_APPDATA and COMMON_DOCUMENTS folders, also return the
659         "share" subfolders of GLib's installation location and the
660         application .exe's installation location, hoping that either
661         matches what the function's caller is looking for.
662
663         * glib/gutils.h (G_WIN32_DLLMAIN_FOR_DLL_NAME): Use wide char API
664         if available, and store dll name in UTF-8.
665
666 2005-04-05  Matthias Clasen  <mclasen@redhat.com>
667
668         * glib/gfileutils.c (get_contents_stdio): Avoid memory 
669         leaks in borderline cases.  (#172612, Morten Welinder)
670
671 2005-04-04  Matthias Clasen  <mclasen@redhat.com>
672
673         * glib/gconvert.c: Clarify docs in some places. (#172404, 
674         Morten Welinder)
675
676 2005-04-03  Matthias Clasen  <mclasen@redhat.com>
677
678         * glib/gutils.h: Undef G_CAN_INLINE if G_IMPLEMENT_INLINES is 
679         defined. This was the pre-2.6 behaviour, and without it,
680         G_IMPLEMENT_INLINES cannot be used in multiple .c files
681         at all.  (#165852, Dave Benson)
682
683 2005-04-01  Matthias Clasen  <mclasen@redhat.com>
684
685         * glib/gmain.c (g_child_watch_source_new): Add a note regarding
686         waitpid(-1).
687         (g_child_watch_source_init_multi_threaded): 
688         (g_child_watch_source_init_single): Don't use SA_RESTART,
689         since it causes problems on at least one platform. (#168352)
690
691 2005-03-30  Steve Murphy  <murf@e-tools.com>
692
693         * configure.in: Added "rw" to ALL_LINGUAS.
694
695 2005-03-30  Sven Neumann  <sven@gimp.org>
696
697         * glib/gfileutils.c (get_contents_stdio): handle the unlikely case
698         that no bytes are read from the file and allocate an empty string.
699
700 2005-03-30  Tor Lillqvist  <tml@novell.com>
701
702         * glib/giowin32.c (g_io_win32_fd_get_flags_internal): Always claim
703         file descriptors open to devices are readable, since we can't
704         know. fstat() doesn't give any useful information. (#145326)
705
706 2005-03-29  Tor Lillqvist  <tml@novell.com>
707
708         * glib/gmain.c (g_poll): [Win32] If the event fired, assign
709         f->revents=f->events. We can't know whether the upper layer using
710         the event actually is readable, writeable or what, so say that all
711         the conditions hold. Remove the ResetEvent() call that has been
712         ifdeffed out anyway for a long time. Remove an "#ifdef 1" and
713         #endif pair of lines, that code is not optional.
714         (g_get_current_time): [Win32] Use GetSystemTimeAsFileTime()
715         instead of time() and GetTickCount(). Much simpler.
716
717 2005-03-28  Matthias Clasen  <mclasen@redhat.com>
718
719         * tests/date-test.c: 
720         * tests/testgdate.c: Add tests for 
721         g_date_get_iso8601_week_of_year().
722
723         * glib/gdate.c (g_date_get_iso8601_week_of_year): 
724         Fix the calculation.  (#169858, Jon-Kare Hellan)
725
726 2005-03-27  Tor Lillqvist  <tml@novell.com>
727
728         * configure.in: Apparently AC_LIBTOOL_WIN32_DLL isn't deprecated
729         after all, and in fact necessary with HEAD libtool.
730
731 2005-03-23  Tor Lillqvist  <tml@novell.com>
732
733         * glib/gutils.c (g_getenv): [Win32] Fix corner case bug when
734         environment variable value is exactly one character.
735
736 2005-03-21  Matthias Clasen  <mclasen@redhat.com>
737
738         * glib/glib.symbols: Add g_try_malloc0
739
740         * glib/gmem.h: Add g_try_new, g_try_new0, g_try_renew and
741         g_try_malloc0.  (#169611, Stefan Kost)
742
743         * glib/gmem.c: Implement g_try_malloc0.
744
745 2005-03-20  Tor Lillqvist  <tml@novell.com>
746
747         * glib/gspawn-win32.c (do_spawn_with_pipes): Close the process
748         handle if the caller doesn't want it also in the case without a
749         helper process.
750         (g_spawn_sync): Don't ask for a child pid which we don't need.
751
752         * glib/gtimer.c: On Win32, use GetSystemTimeAsFileTime() instead
753         of GetTickCount(). (#159507)
754
755         * glib/gmessages.c (g_log_default_handler)
756         * glib/gutils.c (g_get_prgname): Move the Win32 code that asks the
757         program name from the system to g_get_prgname(). Do output the pid
758         also on Win32 (useful in case there are several instances of the
759         same program running).
760
761         * tests/testglib.c (main): Print more detailled output from the
762         timer tests. Don't print home directory twice. Test
763         g_win32_error_message().
764
765         * tests/spawn-test.c (run_tests): On Win32, run netstat instead of
766         ipconfig. On Windows XP collecting output from ipconfig doesn't
767         seem to work for some reason.
768
769 2005-03-18  Hans Breuer  <hans@breuer.org>
770
771         * glib/makefile.msc.in : handle galiasdef.c (although completely 
772         useless for msvc build)
773
774         * glib/gbacktrace.c glib/gmessage.c : need at least _WIN_VER 0x0401
775         for IsDebuggerPresent()
776
777 2005-03-17  Matthias Clasen  <mclasen@redhat.com>
778
779         * glib/gkeyfile.c: Update the documentation, reflecting the
780         fact that the special case for !group_name --> start_group
781         got removed.  (#170566, Tim-Philipp Müller)
782
783 2005-03-15  Matthias Clasen  <mclasen@redhat.com>
784
785         * glib/goption.c (g_option_context_set_main_group): Warn 
786         if there already is a main group.  (#170445, Jeff Franks)
787
788 Sun Mar 13 22:01:17 2005  Manish Singh  <yosh@gimp.org>
789
790         * tests/array-test.c: delete a bunch of dead code.
791
792 Sun Mar 13 21:28:47 2005  Manish Singh  <yosh@gimp.org>
793
794         * glib/gdataset.c: remove spurious IA prefix from g_quark_try_string.
795
796 2005-03-13  Matthias Clasen  <mclasen@redhat.com>
797
798         * glib/gatomic.c:
799         * glib/gcache.c: Small fixes to the previous commit.
800
801 2005-03-13  Matthias Clasen  <mclasen@redhat.com>
802
803         Make PLT-reduction work with gcc4, and don't include
804         everything in galias.h:
805         
806         * glib/glib.symbols: Group symbols by header and source file.
807         * glib/makegalias.pl: Protect definitions by the same 
808         preprocessor symbols used to guard the headers. Move
809         the alias declarations to a separate file which is 
810         produced when calling makegalias.pl -def
811         * glib/Makefile.am (galiasdef.c): Add a rule to generate this
812         file.
813         * glib/*.c: Include galias.h after the other GLib headers,
814         include galiasdef.c at the bottom.
815
816         * glib/glib.symbols: Add g_listenv and g_file_replace.
817
818 Fri Mar 11 23:51:12 2005  Soeren Sandmann  <sandmann@redhat.com>
819
820         * glib/gfileutils.c (write_to_temp_file): Don't try and generate
821         a dotfile from the name -- it doesn't work with absolute
822         paths. Also make documentation indicate that symlinks will be
823         overwritten. Both pointed out by Alexis S. L. Carvalho.
824
825 2005-03-11  Matthias Clasen  <mclasen@redhat.com>
826
827         * m4macros/glib-gettext.m4: Avoid stupid compiler complaints
828         about precision loss.
829
830 2005-03-10  Matthias Clasen  <mclasen@redhat.com>
831
832         * glib/gdate.c: Remove a lot of pointless g_return_if_fail()
833         checks.  (#169859, Morten Welinder)
834
835 2005-03-10  Sven Neumann  <sven@gimp.org>
836
837         * tests/file-test.c: include <gstdio.h>.
838
839 2005-03-10  Sven Neumann  <sven@gimp.org>
840
841         * glib/gfileutils.c (get_contents_stdio): delay memory allocation
842         until after the first read. Saves a bunch of reallocs. Also
843         increased the buffer size to 4096 bytes. (bug #165954)
844
845         * tests/file-test.c (test_get_contents): added a (very basic) test
846         for g_file_get_contents().
847
848 Wed Mar  9 19:06:45 2005  Manish Singh  <yosh@gimp.org>
849
850         * glib/glib.symbols: Add g_file_replace.
851
852 2005-03-09  Matthias Clasen  <mclasen@redhat.com>
853
854         * configure.in: Bump version
855
856 2005-03-09  Sven Neumann  <sven@gimp.org>
857
858         * glib/gfileutils.c (g_file_replace): avoid unnecessary filename
859         conversions.
860
861 2005-03-09  Tor Lillqvist  <tml@novell.com>
862
863         * glib/gutils.c (g_get_user_data_dir, g_get_user_config_dir,
864         g_get_user_cache_dir, g_get_system_data_dirs,
865         g_get_system_config_dirs): [Win32] Don't leak return value from
866         get_special_folder(). (#169348, Daniel Atallah) Guard against
867         g_home_dir being NULL, use g_tmp_dir/g_user_name in that case.
868
869 Tue Mar  8 15:46:54 2005  Søren Sandmann  <sandmann@redhat.com>
870
871         * glib/gfileutils.c (g_file_replace): New API. A function to
872         atomically create a file.
873
874 2005-03-08  Matthias Clasen  <mclasen@redhat.com>
875
876         * glib/glib.symbols: Add the new attributes here too.
877
878         * glib/gmacros.h: Define G_GNUC_NULL_TERMINATED.
879         (#164706, Marc Meissner)
880
881         * glib/gstrfuncs.h: 
882         * glib/gfileutils.h: Use G_GNUC_NULL_TERMINATED where
883         appropriate.
884
885         * glib/goption.c (parse_int): Fix an error message.  
886         (#168751, Hazael Maldonado Torres)
887
888 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
889
890         * glib/gdebug.h: Small cleanup (use G_BEGIN/END_DECLS).
891         (#168474, Fabricio Barros Cabral)
892
893 2005-03-07  Matthias Clasen  <mclasen@redhat.com>
894
895         * glib/gutils.c (g_find_program_in_path): Mark the last
896         paragraph of the docs as Windows-specific.  (#169433)
897
898 2005-03-06  Matthias Clasen  <mclasen@redhat.com>
899
900         * glib/gmarkup.c: Add G_GNUC_PRINTF attribute
901         to set_error.
902         (g_markup_parse_context_end_parse): Fix an
903         error message, noticed by Tim Janik.
904
905 2005-02-24  Tor Lillqvist  <tml@novell.com>
906
907         * glib/Makefile.am (BUILT_EXTRA_DIST): Don't distribute
908         glib.def. (#167496, J. Ali Harlow)
909
910         * glib/gfileutils.c (get_contents_win32): Use g_fopen(). (#168341,
911         Daniel Atallah)
912
913 2005-02-23  Matthias Clasen  <mclasen@redhat.com>
914
915         * configure.in: Don't forget to set G_THREAD_LIBS_FOR_GTHREAD 
916         on non-linux platforms.  (#168177, Michael Banck)
917
918         * tests/keyfile-test.c (test_locale_string): Set LANGUAGE 
919         instead of LC_ALL to shield against LANGUAGE being set in 
920         the environment.  (#168311, Suren A. Chilingaryan)
921
922 Tue Feb 22 22:03:38 2005  Manish Singh  <yosh@gimp.org>
923
924         * glib/gstdio.h: On G_OS_UNIX, simple #define g_open and co. as
925         aliases for their respective C library functions, instead of
926         using the function wrappers. This avoids library users having to
927         care about matching large file support with whatever glib has been
928         built with. Fixes bug #167942.
929
930         * glib/gstdio.c
931         * glib/abicheck.sh
932         * glib/glib.symbols
933         * glib/makegalias.pl: Logic to make the gstdio wrappers still
934         available for compatibility, but not used in new code.
935
936 Tue Feb 22 18:33:07 2005  Manish Singh  <yosh@gimp.org>
937
938         * glib/gtimer.c (g_usleep): Simplify the loop for the fix below.
939
940 2005-02-20  Matthias Clasen  <mclasen@redhat.com>
941
942         * glib/gqueue.c (g_queue_new): Use a memchunk for
943         sizeof(GQueue)-sized chunks.  (#167984, Fabrício Barros Cabral)
944
945         * glib/gtimer.c (g_usleep): Fix usage of 
946         nanosleep().  (#163039, Bastien Nocera)
947
948 2005-02-16  Adi Attar  <aattar@cvs.gnome.org>
949
950         * configure.in: Added "xh" to ALL_LINGUAS.
951
952 2005-02-11  Tor Lillqvist  <tml@novell.com>
953
954         * glib/giowin32.c: Include winsock2.h before windows.h, to avoid
955         compilation errors with MSVC. (#167105)
956
957 2005-02-10  Matthias Clasen  <mclasen@redhat.com>
958
959         * glib/goption.c (print_help): Take main group options into
960         account when calculating column size.  (#166921)
961         (g_option_context_parse): Accept -? as documented.  (#166977)
962
963 2005-02-09  Matthias Clasen  <mclasen@redhat.com>
964         * glib/gkeyfile.c (find_file_in_data_dirs): Don't leak path
965         here.  (#166801, Kjartan Maraas)
966
967 2005-02-08  Matthias Clasen  <mclasen@redhat.com>
968
969         * glib/gkeyfile.c (g_key_file_parse_value_as_string): Don't
970         write out of bounds.
971
972         * glib/goption.c (g_option_context_parse): Fix a 
973         one-too-short memory allocation.  (#166609, Nicolas Laurent)
974
975         * tests/Makefile.am (TESTS_ENVIRONMENT): Add tests with
976         MALLOC_CHECK_.
977
978         * tests/option-test.c: Add a test for unkown short options.
979
980 2005-02-07  Matthias Clasen  <mclasen@redhat.com>
981
982         * glib/glib.symbols: 
983         * glib/gutils.h: 
984         * glib/gutils.c (g_listenv): New function to list all 
985         environment variables.  (#166327, Hans Petter Jansson)
986
987 2005-02-07  Tor Lillqvist  <tml@novell.com>
988
989         * glib-zip.in: Add gmodule-no-export-2.0.pc.
990
991 Sun Feb  6 21:59:09 2005  Manish Singh  <yosh@gimp.org>
992
993         * glib/abicheck.sh: feed the contents of config.h and glibconfig.h
994         into the preprocessor, since glib.symbols could need #defines
995         from them.
996
997 Sun Feb  6 12:09:55 2005  Manish Singh  <yosh@gimp.org>
998
999         * glib/gatomic.c: Don't use matching constraints for asm mem
1000         parameters. This makes the code match with current glibc, and
1001         quiets some warnings with gcc 3.4.
1002
1003 2005-02-05  Tor Lillqvist  <tml@novell.com>
1004
1005         * configure.in (G_LIBS_EXTRA)
1006         * glib/giowin32.c: I think we can include <winsock2.h> and link
1007         with -lws2_32. Only Windows 95 originally didn't have Winsock 2,
1008         and it's available as an update for it. Not that we use any actual
1009         Winsock 2 -only features, but still, simpler to link directly with
1010         ws2_32.dll instead of going through wsock32.dll.
1011
1012         * glib/gfileutils.c (g_file_get_contents): In the Win32 ABI
1013         stability version, call g_file_get_contents_utf8(), not
1014         itself. (#166386, Bill Skaggs)
1015
1016 2005-02-04  Matthias Clasen  <mclasen@redhat.com>
1017
1018         * configure.in: Remove the --enable-ansi option  (#160469)
1019
1020         * configure.in: Define a HAVE_GNUC_VISIBILITY automake
1021         conditional.
1022
1023         * glib/Makefile.am (TESTS): Only check the abi if
1024         the compiler supports visibility, otherwise we
1025         know there will be (harmless) extra symbols.  
1026         (#166181, Ed Avis)
1027
1028 2005-02-02  Tor Lillqvist  <tml@novell.com>
1029
1030         * glib/gwin32.h: Remove unnecessary MSVC-only typedef for
1031         pid_t. (#165910) GLib does not pretend to be a POSIX emulation
1032         library.
1033
1034         * glib/gstdio.c: In the Win32 part of all functions, handle
1035         invalid UTF-8 more robustly. Don't pass the resulting NULL
1036         wide-char or codepage strings on to C library functions, but bail
1037         out early. (#166084)
1038
1039         * glib/gfileutils.c: Don't use potentially incorrect errno in
1040         several places. (#165951)
1041         (g_mkstemp): Set errno appropriately.
1042
1043 2005-02-02  Matthias Clasen  <mclasen@redhat.com>
1044
1045         * glib/gutils.c: Move doc comments inline.
1046
1047         * glib/ghash.h: Adjust some argument names.
1048
1049         * configure.in: Give meaningful names to g_memmove() 
1050         arguments.
1051
1052 2005-02-01  Matthias Clasen  <mclasen@redhat.com>
1053
1054         * tests/keyfile-test.c (test_key_remove): Add test case for
1055         key removal.
1056
1057         * glib/gkeyfile.c (g_key_file_remove_key): Actually remove 
1058         the key from the list of pairs.  (#165980, David Hoover)
1059
1060         * glib/gkeyfile.c: Doc clarifications.  (#165907, Vincent Untz)
1061
1062         * tests/keyfile-test.c (test_group_remove): Add test case for
1063         group removal.
1064
1065         * glib/gkeyfile.c (g_key_file_remove_group): Don't segfault
1066         if the group doesn't exist.  (#165887, Mathias Hasselmann)
1067
1068 2005-01-30  Matthias Clasen  <mclasen@redhat.com>
1069
1070         * tests/keyfile-test.c: Some more unit tests.
1071
1072 2005-01-28  Christian Rose  <menthos@menthos.com>
1073
1074         * configure.in: Added "tl" to ALL_LINGUAS.
1075
1076 2005-01-24  Matthias Clasen  <mclasen@redhat.com>
1077
1078         * tests/run-markup-tests.sh: Let $srcdir default to .
1079
1080         * tests/markups/fail-40.gmarkup: Add a test with a long entity
1081         name.
1082
1083         * glib/gmarkup.c (unescape_text_state_inside_entity_name): Don't
1084         copy the entity name into a short buffer of fixed length. Instead,
1085         compare it in place with strncmp(), and do a full strdup() in the
1086         error path.  (#165100, Simon Budig)
1087
1088 2005-01-22  Tor Lillqvist  <tml@novell.com>
1089
1090         * glib/gdate.c (g_date_set_time): Don't g_assert that localtime()
1091         returns non-NULL. It does return NULL at least on Win32 if you
1092         pass it a negative time_t, which although wrong, shouldn't cause
1093         an application to abort. Instead return 2000-01-01 as a default
1094         date. Print a warning unless G_DISABLE_CHECKS. (#164622)
1095
1096 2005-01-20  Matthias Clasen  <mclasen@redhat.com>
1097
1098         * glib/gkeyfile.c (g_key_file_parse_value_as_integer): Don't
1099         interpret leading zeros as octal. The specification requires
1100         %f parsing, and %f doesn't allow octal.  
1101
1102         * tests/keyfile-test.c: Add some more tests.
1103
1104         * glib/gkeyfile.c (g_key_file_get_keys): Return keys in
1105         the order found in the file, rather than the opposite.
1106         (g_key_file_parse_value_as_string): Fix error reporting.
1107
1108 2005-01-19  Matthias Clasen  <mclasen@redhat.com>
1109
1110         * glib/gkeyfile.c (g_key_file_parse_data): Accept \r\n as 
1111         line end.  (#163030, Bastian Nocera)
1112         (g_key_file_load_from_data): Make -1 work as a size.
1113         
1114         * tests/keyfile-test.c: Some unit tests for the keyfile
1115         parser.  
1116
1117         * tests/Makefile.am (test_programs): Add keyfile-test.
1118
1119 2005-01-19  Tor Lillqvist  <tml@novell.com>
1120
1121         * glib/gbacktrace.c (g_on_error_stack_trace): On Win32 call
1122         G_BREAKPOINT() if being debugged.
1123
1124         * glib/gmessages.c (g_logv): For fatal messages on Win32, use
1125         G_BREAKPOINT() also without G_ENABLE_DEBUG, but only if being
1126         debugged. Suggestion by Ulf Lamping.
1127
1128 2005-01-18  Matthias Clasen  <mclasen@redhat.com>
1129
1130         * glib/gqsort.c: Don't include alloca.h. It is not needed,
1131         and does not exist on win32.  (#164468, Kazuki IWAMOTO)
1132
1133         * glib/gkeyfile.c (g_key_file_get_boolean_list): Fix a
1134         sparse warning.  (#164467, Kjartan Maraas)
1135
1136 2005-01-17  Matthias Clasen  <mclasen@redhat.com>
1137
1138         * glib/gconvert.c (g_get_filename_charsets): Don't crash
1139         if G_FILENAME_ENCODING is empty.  (#164330, Pawel Sakowski)
1140
1141 2005-01-15  Tor Lillqvist  <tlillqvist@novell.com>
1142
1143         * configure.in: sh portability fix. Use "test" and not [.
1144         (#163144, Robert Ögren)
1145
1146 2005-01-13  Matthias Clasen  <mclasen@redhat.com>
1147
1148         * glib/gqsort.c: Sync to glibc.  (#133994, Morten Welinder, 
1149         patch by Kjartan Maraas)
1150
1151 2005-01-11  Owen Taylor <otaylor@redhat.com>
1152
1153         * configure.in: Add gmodule-export-2.0.pc to AC_CONFIG_FILES.
1154
1155         * glib/Makefile.am gobject/Makefile.am gthread/Makefile.am:
1156         Use grep | head -n 1 instead of grep -m 1 which doesn't work
1157         with slightly older versions of GNU grep in 
1158         install-libtool-import-lib rule.
1159
1160 2005-01-11  Matthias Clasen  <mclasen@redhat.com>
1161
1162         * glib/gdir.c (g_dir_open): Typo fix.
1163
1164 2005-01-10  Owen Taylor  <otaylor@redhat.com>
1165
1166         * Makefile.am (EXTRA_DIST): Add missing ChangeLog.pre*
1167
1168 2005-01-09  Hans Breuer  <hans@breuer.org>
1169
1170         * glib/gfileutils.c : make it compile with mvc6 default sdk,
1171         (#define INVALID_FILE_ATTRIBUTES, FILE_ATTRIBUTE_DEVICE)
1172
1173 2005-01-09  Tor Lillqvist  <tlillqvist@novell.com>
1174
1175         * glib/gwin32.c: Include also wchar.h for wcslen on
1176         Cygwin.
1177         (g_win32_error_message): Fix cast. (#163133, Roger Leigh)
1178
1179         * glib/gfileutils.c: Include <io.h> on Windows for
1180         prototypes. (#163390, Kazuki Iwamoto)
1181
1182 2005-01-07  Matthias Clasen  <mclasen@redhat.com>
1183
1184         * NEWS: Typo fixes.
1185
1186         * configure.in: Bump version
1187
1188         * === Released 2.6.1 ===
1189
1190 2005-01-07  Matthias Clasen  <mclasen@redhat.com>
1191
1192         * configure.in: 
1193         * Makefile.am: Generate and distribute gmodule-export-2.0.pc,
1194         which is currently just a copy of gmodule-2.0.pc, but makes
1195         it explicit that it adds --export-dynamic.
1196         
1197         * gmodule-export-2.0.pc.in: Copy of gmodule-2.0.pc.in.
1198
1199 2005-01-06  Tor Lillqvist  <tml@iki.fi>
1200
1201         * glib/Makefile.am
1202         * gobject/Makefile.am: glib.def and gobject.def are generated, not
1203         in $(srcdir). (#163143, J. Ali Harlow)
1204
1205         * configure.in
1206         * glib/Makefile.am
1207         * gobject/Makefile.am: Win32 cross-compilation fixes. (#163144,
1208         J. Ali Harlow)
1209
1210 2005-01-05  Matthias Clasen  <mclasen@redhat.com>
1211
1212         * glib/gutils.h: Simplify the inlining magic to make it
1213         work at Oh zero.  (#162990, Kalpesh Shah) 
1214
1215 2005-01-04  Tor Lillqvist  <tml@iki.fi>
1216
1217         * glib/guniprop.c (get_locale_type): Use g_win32_getlocale()
1218         instead of setlocale() on Windows. setlocale() returns strings
1219         like "Turkish_Turkey".
1220
1221 2005-01-04  Matthias Clasen  <mclasen@redhat.com>
1222
1223         Fix the inlining magic.  (#157536, Jens Hatlak, and
1224         #149907, Morten Welinder)
1225         
1226         * configure.in: Define G_CAN_INLINE in glibconfig.h
1227
1228         * glib/gutils.h: Streamline the inlining magic a bit,
1229         don't use extern when implementing the non-inlined 
1230         version.
1231
1232 2005-01-03  Matthias Clasen  <mclasen@redhat.com>
1233
1234         * glib/gutils.c (g_find_program_in_path): Don't return
1235         directories.  (#160738, Tommi Komulainen)
1236
1237         * glib/gfileutils.c (g_file_get_contents): Clarify the 
1238         documentation.  (#162251, Mariano Suárez-Alvarez)
1239
1240 2005-01-02  Matthias Clasen  <mclasen@redhat.com>
1241
1242         * glib/gutils.c (g_setenv, g_unsetenv): Clarify the 
1243         docs.  (#162747, Crispin Flowerday)
1244
1245 2005-01-01  J. Ali Harlow  <ali@juiblex.co.uk>
1246
1247         * configure.in: Don't use AC_TRY_RUN to test for long long format
1248         when using the MSVCRT.DLL runtime since we know the answer anyway
1249         and it causes some mild inconvience when cross compiling.
1250
1251         * README.win32: Add a reference to the cross compiling section
1252         of the reference manual.
1253
1254         * docs/reference/glib/cross.sgml: MinGW uses MSVCRT.DLL which
1255         requires %I64i instead of %lli. (#161306)
1256
1257 2005-01-01  Tor Lillqvist  <tml@iki.fi>
1258
1259         * glib/gutils.c: Make the g_getenv() ABI backward compatibility
1260         wrapper more robust.
1261
1262 2005-01-01  Tor Lillqvist  <tml@iki.fi>
1263
1264         * glib/glib.symbols
1265         * glib/gutils.h
1266         * glib/gutils.c: Make also g_getenv(), g_setenv(), g_unsetenv()
1267         and g_find_program_in_path() take and return UTF-8 strings on
1268         Win32. Implement DLL ABI backward compatility for them, too. Move
1269         all the DLL ABI stability wrappers to the end of the file. Use
1270         wide character API when available in inner_find_program_in_path().
1271
1272         * glib/gfileutils.c: With the UTF-8ness of g_getenv() above, just
1273         use g_getenv() to get PATHEXT. (Yeah, it's probably overdoing it
1274         to consider somebody actually having anything else than ASCII
1275         in PATHEXT, but...)
1276
1277 2004-12-31  Tor Lillqvist  <tml@iki.fi>
1278
1279         * glib/gfileutils.c (g_file_test): Rewrite the Win32 version to
1280         use GetFileAttributes() instead of stat(). stat() is unreliable
1281         for corner cases like '\\server\share' or '.\'. Part of fixing
1282         #161797. When testing for executability, in addition to the fixed
1283         set of executable file name extensions also check the PATHEXT
1284         environment variable.
1285
1286 2004-12-30  Tor Lillqvist  <tml@iki.fi>
1287
1288         * glib/gutils.c (g_get_current_dir): In the Win32 version, use
1289         GetCurrentDirectory() directly for simpler buffer length
1290         management. I don't trust getcwd() getting it right all the time.
1291
1292 2004-12-30  Matthias Clasen  <mclasen@redhat.com>
1293
1294         * glib/gfileutils.c (g_file_test): Typo fix.
1295
1296 2004-12-30  Tor Lillqvist  <tml@iki.fi>
1297
1298         * glib/gutils.c (g_path_skip_root): Require UNC paths to start
1299         with exactly two slashes.
1300         (g_get_current_dir): Use wide character API when available.
1301         (g_path_get_dirname): Handle UNC paths better. Part of fix for
1302         #161797.
1303
1304 2004-12-27  Matthias Clasen  <mclasen@redhat.com>
1305
1306         * configure.in: Add an OS_LINUX conditional.
1307
1308         * glib/Makefile.am (TESTS): Only check the ABI on 
1309         linux, since the shell script is not portable, and libtool
1310         deficiencies may distort the ABI on other platforms.  (#161741)
1311
1312 2004-12-21  Matthias Clasen  <mclasen@redhat.com>
1313
1314         * glib/goption.c (print_entry): Don't show
1315         the special G_OPTION_REMAINING entry.  (#161934,
1316         Matthew F. Barnes)
1317
1318 2004-12-20  Tor Lillqvist  <tml@iki.fi>
1319
1320         * glib/gconvert.c (g_locale_to_utf8, g_filename_to_uri): Improve
1321         docs.
1322
1323 2004-12-20  Matthias Clasen  <mclasen@redhat.com>
1324
1325         * tests/option-test.c: Add some tests for '--' 
1326         stripping.
1327
1328         * glib/goption.c (g_option_context_parse): Don't
1329         strip '--' if it would be needed by a second option
1330         parser.  (#161701)
1331
1332         * glib/gunicollate.c (g_utf8_collate): Make docs 
1333         more accurate.  (#161683, Marcin Krzyzanowski)
1334
1335 2004-12-19  Matthias Clasen  <mclasen@redhat.com>
1336
1337         * glib/goption.c (g_option_context_parse): Call
1338         post-parse hooks also if argv is NULL.  (#161668,
1339         Marcin Krzyzanowski)
1340