Update to match what configure produces.
[platform/upstream/glib.git] / ChangeLog
1 2007-03-15  Tor Lillqvist  <tml@novell.com>
2
3         * config.h.win32.in: Update to match what configure produces.
4
5 2007-03-15  Marco Barisione <marco@barisione.org>
6
7         Add GRegex for regular expression matching.  (#50075)
8
9         * configure.in: Handle GRegex compilation.
10
11         * glib/gregex.c:
12         * glib/gregex.h: Code for GRegex.
13
14         * glib/Makefile.am:
15         * glib/makefile.msc.in: Updated makefiles.
16
17         * glib/pcre/*: Internal copy of PCRE.
18
19         * glib/update-pcre/*: Stuff to automatically update the internal PCRE
20         to a newer version.
21
22         * tests/regex-test.c:
23         * tests/Makefile.am:
24         * tests/makefile.msc.in: Add tests for GRegex.
25
26 2007-03-15  Chris Wilson  <chris@chris-wilson.co.uk>
27
28         * glib/gmain.c (g_main_dispatch): Replace a
29         g_slist_prepend/g_slist_remove pair with an on-stack link
30         and open coding. (#416094)
31
32 2007-03-15  Matthias Clasen  <mclasen@redhat.com>
33
34         * glib/gscanner.[hc]: Some optimizations, use a lookup
35         table for character classes, pre-allocate GStrings with
36         reasonable sizes.  (#415323, Charlie Brej)
37
38 2007-03-14  Matthias Clasen  <mclasen@redhat.com>
39
40         * glib/gkeyfile.c (g_key_file_get_double): Fix a 
41         small typo.  (#417947, Bobby Jack)
42
43 2007-03-08  Matthias Clasen  <mclasen@redhat.com>
44
45         * glib/gstrfuncs.c (g_strtoll): Return negative values.
46         (#416062)
47
48         * tests/strtoll-test.c: Add more testcases.
49
50 2007-03-06  Matthias Clasen  <mclasen@redhat.com>
51
52         * glib/gstring.c (g_str_equal): Clarify docs.  (#364026, 
53         Bastian Nocera)
54
55 2007-03-06  Matthew Barnes  <mbarnes@redhat.com>
56
57         * glib/gqueue.h:
58         * glib/gqueue.c: Add G_QUEUE_INIT, g_queue_init(), and
59         g_queue_clear() to better support statically allocated
60         queues.  (#413244)
61
62 2007-03-06  Matthias Clasen  <mclasen@redhat.com>
63
64         * glib/gkeyfile.c (g_key_file_parse_value_as_boolean):
65         Remove a NULL check that didn't do any good.  (#360904,
66         Paolo Borelli)
67
68 2007-03-06  Matthias Clasen  <mclasen@redhat.com>
69
70         * glib/gmarkup.c (g_markup_parse_context_parse): Report
71         more accurate position for invalid UTF-8.  (#350802,
72         Simon Budig)
73
74 2007-03-06  Matthias Clasen  <mclasen@redhat.com>
75
76         * glib/gbase64.c: Add NULL checks to the base64 
77         functions that take pointers.  (#399611, Martyn Russell)
78
79 2007-03-06  Matthias Clasen  <mclasen@redhat.com>
80
81         Work with Solaris gettext (#341988, Laszlo Peter)
82
83         * m4macros/glib-gettext.m4: Make GLIB_WITH_NLS define
84         MSGFMT_OPTS if msgfmt supports -c.
85
86         * po/Makefile.in.in: Use MSGFMT_OPTS when calling
87         msgfmt.
88
89 2007-03-06  Matthias Clasen  <mclasen@redhat.com>
90
91         * tests/Makefile.am: Apply a patch by Loïc Minier
92         to fix building with -Wl,-z,defs.  (#149144)
93
94 2007-03-03  Thierry Randrianiriana  <randrianiriana@gmail.com>
95
96         * po/mg.po: Added Malagasy translation.
97         * configure.in: Added Malagasy 'mg' to ALL_LINGUAS
98
99 2007-03-01  Ihar Hrachyshka <iharh@gnome.org>
100         * configure.in: Added be@latin to ALL_LINGUAS.
101
102 2007-02-17  Tor Lillqvist  <tml@novell.com>
103
104         * glib/gdate.c (win32_strftime_helper): New Win32-only
105         function. Use the wide character Win32 API to do the work of
106         strftime(): GetThreadLocale(), GetLocaleInfoW(), GetDateFormatW()
107         and GetTimeFormatW().
108         (g_date_strftime): On Windows use win32_strftime_helper()
109         instead of strftime() to avoid codepage issues with strftime().
110         Unfortunately using wcsftime() would not help either. (#404832)
111
112 2007-02-16  Soren Sandmann <sandmann@redhat.com>
113
114         * tests/sequence-test.c: For move, test moving between two
115         sequences. Add test for swap.
116
117         * glib/gsequence.c: Replace splay tree with a treap.
118         (check_node): Add checks for the treap invariants.
119
120 2007-02-10  Hans Breuer  <hans@breuer.org>
121
122         * glib/makefile.msc.in : added gsequence.obj
123
124 Fri Feb  9 17:46:18 2007  Søren Sandmann  <sandmann@redhat.com>
125
126         * glib/gsequence.c (g_sequence_get_end_iter): Remove assertion.
127         * glib/gsequence.c (is_end): Return TRUE if the iter doesn't have
128         a parent.
129         * glib/gsequence.c: Fix grammar of comment.
130         * glib/gsequence.c (node_update_fields): Use a temporary variable
131         for the n_nodes.
132
133 2007-02-07  Soren Sandmann <sandmann@daimi.au.dk>
134
135         * tests/sequence-test.c (compare_items): Force an arbitrary order
136         on otherwise identical items.
137
138         * glib/gsequence.c: Add comment discussing splay trees vs. other trees.
139         * glib/gsequence.c (is_end): Add fast path for the common case
140         when the node is not actually the end node.
141
142 2007-02-05  Soren Sandmann <sandmann@daimi.au.dk>
143
144         * glib/gsequence.c (g_sequence_sort_iter): Don't prohibit access
145         until after the g_sequence_move_range() call.  Bug 404759,
146         Christian Persch.
147
148        * tests/sequence-test.c: Formatting fix.
149
150 2007-02-03  Soren Sandmann <sandmann@daimi.au.dk>
151
152         * glib/gsequence.c (struct _GSequence): Add a new 'real_sequence'
153         field.
154         (g_sequence_new): Initialize real_sequence to the sequence
155         (g_sequence_sort_iter): Set real_sequence of the temporary
156         sequence to the real sequence.
157         (g_sequence_sort_changed_iter): Same
158         (g_sequence_insert_sorted_iter): Same
159         (g_sequence_search_iter): Same
160         (g_sequence_iter_get_sequence): Return real_sequence
161
162         * tests/sequence-test.c (compare_iters): Insert assertions that
163         the iters point to the sequence being manipulated.
164
165 2007-02-03  Soren Sandmann <sandmann@daimi.au.dk>
166
167         * glib/gsequence.[ch]: New files implementing GSequence, a list
168         implemented using a binary tree.
169         * glib/glib.h, glib/glib.symbols: Update for GSequence.
170         * docs/reference: Add documentation for GSequence
171         * tests: Add sequence-test.c, a thorough test of all of
172         the GSequence API.
173
174 2007-01-30  Matthias Clasen <mclasen@redhat.com>
175
176         * glib/glib.symbols:
177         * glib/gslice.h:
178         * glib/gslice.c: Don't make ABI depend on G_ENABLE_DEBUG,
179         just add an empty g_slice_debug_tree_statistics () implementation
180         in the !G_ENABLE_DEBUG case.
181
182 2007-01-26  Matthias Clasen <mclasen@redhat.com>
183
184         * configure.in: Define G_GNUC_INTERNAL for Sun Studio
185         as __hidden.  (#342981, Brian Cameron)
186
187         * glib/gconvert.c:
188         * glib/gutf8.c: Move G_GNUC_INTERNAL uses to the right
189         spot.
190
191 2007-01-26  Matthias Clasen <mclasen@redhat.com>
192
193         * gmem.c:
194         * gslice.c:
195         * gmessages.c:
196         * gutils.c: Make some structs which are used only once
197         non-static.
198
199 2007-01-24  Benjamin Otte <otte@gnome.org>
200
201         * glib/gprintf.c (g_sprintf): Clarify the documentation
202         regarding overflows (wording by Jan Schmidt)
203
204 2007-01-23  Roozbeh Pournader  <roozbeh@farsiweb.info>
205
206         * README: Remove mention of no-longer-existing PATCH
207         keyword in bugzilla. (#396899)
208
209 2007-01-23  Matthias Clasen  <mclasen@redhat.com>
210
211         * glib/gutf8.c (g_utf8_get_char_validated): Clarify
212         the behaviour is max_len is zero.  (#400044,
213         Benjamin Dauvergne)
214
215 2007-01-23  Matthias Clasen  <mclasen@redhat.com>
216
217         * glib/goption.c (print_help): Use bitwise &
218         when operating on flags.  (#399971, Jon Oberheide)
219
220 2007-01-19  Matthias Clasen  <mclasen@redhat.com>
221
222         Some file list updates (#398069, Owen Taylor)
223
224         * docs/Changes-2.0.txt
225         * docs/reference/README.cvs-commits
226         * glib.spec.in: Remove obsolete files
227
228         * tests/Makefile.am:
229         * glib/libcharset/Makefile.am:
230         * gobject/Makefile.am:
231         * Makefile.am: Add some missing files to EXTRA_DIST
232
233         * tests/timeloop-basic.c: Make it build
234         * HACKING: Small updates
235
236 2007-01-18  Matthias Clasen  <mclasen@redhat.com>
237
238         * glib/gdate.c (g_date_set_time): Fix a typo.  (#398203,
239         Owen Taylor)
240
241 2007-01-17  Tor Lillqvist  <tml@novell.com>
242
243         * config.h.win32.in
244         * glib/galloca.h
245         * glib/gbacktrace.h
246         * glib/gwin32.c
247         * glibconfig.h.win32.in
248         * README.win32: More minor tweaks for Digital Mars
249         compiler. (#346808, Serhat Sevki Dincer)
250
251 2007-01-17  Tor Lillqvist  <tml@novell.com>
252
253         * glib-zip.in: DLLs are always installed in "bin" with current
254         libtool, drop unnecessary logic to check where they are. Include
255         also the COPYING file.
256
257 2007-01-17  Tor Lillqvist  <tml@novell.com>
258
259         * glib/galloca.h: Use <malloc.h> also with Digital Mars compiler
260         on Win32. (#346808, Serhat Sevki Dincer)
261
262 2007-01-16  Matthias Clasen  <mclasen@redhat.com>
263
264         * glib/gthread.h:
265         * glib/gthread.c:
266         * glib/glib.symbols: Revert an accidental ABI break by
267         moving gettime out of the GThreadFunctions struct and making
268         it a separate variable.  (#397139, Joe Marcus Clarke)
269
270         * gthread/*.c: Adapt.
271
272 2007-01-16  Tor Lillqvist  <tml@novell.com>
273
274         * glib/gthread.c (gettime): GetSystemTimeAsFileTime() returns 100s
275         of nanoseconds since 1601, so offset to Unix epoch (1970) and
276         multiply by 100 to get nanoseconds which is what we want.
277
278 2007-01-15  Tor Lillqvist  <tml@novell.com>
279
280         * glib/gmain.h (struct _GPollFD): Fix mistake in my last commit.
281
282 2005-01-15  Matthias Clasen  <mclasen@redhat.com>
283
284         * glib/giochannel.c:
285         * glib/gbookmarkfile.c: Remove redundant NULL-checks.
286         (#369668, Morten Welinder)
287
288 2005-01-15  Matthias Clasen  <mclasen@redhat.com>
289
290         * glib/gthread.c:
291         * gthread/gthread-posix.c: Correct the gettime calculations
292         once more.  (#395203, Chris Wilson)
293
294 2007-01-15  Tor Lillqvist  <tml@novell.com>
295
296         * glib/gmain.h (struct _GPollFD): Prepare for potential Win64
297         build: Use gint64 for the fd field on Win64, as we want to be able
298         to store a HANDLE in it. (#395422) (Other changes will surely also
299         be necessary when building on Win64, at least in giowin32.c.)
300
301 2007-01-15  Tor Lillqvist  <tml@novell.com>
302
303         * glib/gwin32.c (g_win32_getlocale): Simplify greatly. Instead of
304         hardcoding a large switch statement, just ask Windows for the
305         ISO639 and ISO3166 codes. Tack on @Latn or @Cyrl for those
306         languages which can alternatively be written in Latin or
307         Cyrillic. Fixes #395419.
308
309 2007-01-12  Matthias Clasen  <mclasen@redhat.com>
310
311         * glib/gkeyfile.c: Rework the handling of invalid
312         keys/groups again. We are back to being liberal about
313         what we accept, and only reject things that would lead
314         to non-rereadable keyfiles.
315
316         * tests/keyfile-test.c: Adapt tests.
317
318 2007-01-12  Matthias Clasen  <mclasen@redhat.com>
319
320         * glib/gutils.c (g_get_home_dir): Clarify docs.  (#394687,
321         Marc Brockschmidt)
322
323 2007-01-12  Matthias Clasen  <mclasen@redhat.com>
324
325         * glib/gthread.c: Include windows.h and fix
326         include order. (#394258, Kazuki Iwamoto)
327
328 2007-01-12  Matthias Clasen  <mclasen@redhat.com>
329
330         * configure.in: Make G_GNUC_INTERNAL a no-op for
331         gcc 2.95.    (#329031, David Schleef, Marc Brockschmidt)
332
333 2007-01-12  Matthias Clasen  <mclasen@redhat.com>
334
335         * gthread/gthread-posix.c:
336         * glib/gtimer.c:
337         * glib/gthread.c: Fix errors in the recently moved
338         time calculations.  (#395203, Chris Wilson)
339
340 2007-01-10  Matthias Clasen  <mclasen@redhat.com>
341
342         * configure.in: Actually link gthread against librt.
343         (#394641, Marco Pesenti Gritti)
344
345 2007-01-10  Matthias Clasen  <mclasen@redhat.com>
346
347         * glib/gkeyfile.c (g_key_file_is_key_name): Grr, allow '*' in keys,
348         too.  (#394262)
349
350 2007-01-09  Behdad Esfahbod  <behdad@gnome.org>
351
352         * glib/gutils.h: Use a more optimized g_bit_storage() when gcc is
353         available.  (#371670, Daniel Elstner)
354
355 2007-01-08  Matthias Clasen  <mclasen@redhat.com>
356
357         * gthread/gthread-posix.c (g_thread_impl_init): Don't
358         use _SC_MONOTONIC_CLOCK unless USE_CLOCK_GETTIME is
359         defined.  (#394150)
360
361 2007-01-07  Matthias Clasen  <mclasen@redhat.com>
362
363         Don't link glib against libpthread.  (#393812)
364
365         * configure.in: Link gthread against librt, not glib itself.
366
367         * glib/gthread.h:
368         * glib/gthread.c: Add a new thread function, gettime.
369
370         * glib/gtimer.c: Use gettime instead of directly working with
371         the various system interfaces.
372
373         * gthread/gthread-impl.c:
374         * gthread/gthread-posix.c:
375         * gthread/gthread-win32.c: Implement gettime.
376
377 2007-01-07  Matthias Clasen  <mclasen@redhat.com>
378
379         * m4macros/glib-2.0.m4: Use PKG_PROG_PKG_CONFIG.  (#392636,
380         Yevgen Muntyan)
381
382 2007-01-07  Tor Lillqvist  <tml@novell.com>
383
384         * glib/giowin32.c: Handle GIOChannels for file descriptors
385         connected to the console separately. This would typically be the
386         fd 0, 1, or 2 (if not redirected) in a console application. For
387         such fds we don't need a separate thread, as console HANDLEs are
388         waitable objects. (#359202, Michiel de Hoon)
389
390 2007-01-04  Behdad Esfahbod  <behdad@gnome.org>
391
392         * tests/bit-test.c (builtin_bit_nth_lsf1), (builtin_bit_nth_lsf2),
393         (builtin_bit_nth_msf): Fix tests on x86_64.
394
395 2007-01-03  Behdad Esfahbod  <behdad@gnome.org>
396
397         * glib/goption.c (_g_unichar_get_width), (_g_utf8_strwidth),
398         (calculate_max_length), (print_entry), (print_help): Take zerowidth
399         and double-width chars into consideration when computing width of a
400         string.  Also fix another bug in width computation. (#346955)
401
402         * glib/guniprop.c (g_unichar_iszerowidth): Fix typo.  It was not
403         working correctly.
404
405 2007-01-03  Behdad Esfahbod  <behdad@gnome.org>
406
407         * glib/glib.symbols:
408         * glib/gunicode.h:
409         * glib/guniprop.c: Add g_unichar_iszerowidth(). (#347645)
410
411 2007-01-03  Behdad Esfahbod  <behdad@gnome.org>
412
413         * glib/gutils.h: Fix bug in g_bit_nth_lsf (#371631) and use
414         __builtin_clzl for g_bit_storage if available (#371670).
415
416         * tests/Makefile.am:
417         * tests/bit-test.c: New test, to test g_bit_* operations against
418         naive and builtin implementations.
419
420 2007-01-02  Behdad Esfahbod  <behdad@gnome.org>
421
422         * configure.in: Avoid more warnings from running libtool --config.
423         (#391364)
424
425 2007-01-03  Michael Natterer  <mitch@imendio.com>
426
427         * removed all .cvsignore files. SVN doesn't need them.
428
429 2007-01-02  Emmanuele Bassi  <ebassi@gnome.org>
430
431         * glib/gbookmarkfile.c (expand_exec_line): Add support for
432         expanding the desktop entry spec variables %U (list of URIs)
433         and %F (list of filenames), so that using the command line
434         from the Exec and TryExec key of a desktop entry file works
435         as intended.
436
437 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
438
439         * configure.in: Avoid warnings from running libtool --config.
440         (#391364, Loïc Minier)
441
442 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
443
444         * glib/gbookmarkfile.c (g_bookmark_file_get_app_info):
445         Return an error if the uri is bad. (#391370, Maciej Piechotka)
446
447 2007-01-02  Matthias Clasen  <mclasen@redhat.com>
448
449         * glib/glib.symbols: Guard g_slice_debug_tree_statistics
450         by G_ENABLE_DEBUG.  (#390940, Kazuki Iwamoto)
451
452 2007-01-02  Michael Natterer  <mitch@imendio.com>
453
454         * configure.in
455         * Makefile.am: remove references to build/ until a proper decision
456         has been made what to do with it.
457
458 2007-01-01  Matthias Clasen  <mclasen@redhat.com>
459
460         * glib-gettextize.in: Silence autoconf warnings about
461         datarootdir.  (#391367, Loïc Minier)
462
463 2006-12-31  Matthias Clasen  <mclasen@redhat.com>
464
465         * glib/gslice.c: Fix some C99isms.  (#390913, Kazuki Iwamoto)
466
467 Fri Dec 29 13:28:07 2006  Tim Janik  <timj@imendio.com>
468
469         * glib/gslice.c: turned detection of too late g_thread_init() calls
470         into a warning. this is a temporary work-around for some head-room
471         to fix affected programs, memory corruption still occours regardless.
472
473 2006-12-29  Matthias Clasen  <mclasen@redhat.com>
474
475         * tests/gobject/Makefile.am:
476         * tests/gobject/dynamictype.c: New test for dynamic type
477         registration macros.
478
479 Thu Dec 28 21:14:45 2006  Tim Janik  <timj@imendio.com>
480
481         * glib/gslice.c: removed pthread-dependant debugging bits, the code
482         was already converted to GMutex. this obsoletes Tor's recent fixups.
483
484 2006-12-28  Tor Lillqvist  <tml@novell.com>
485
486         * glib/gutils.h (G_WIN32_DLLMAIN_FOR_DLL_NAME)
487         * glib/gutils.c (get_windows_directory_root): : Use only the wide
488         character API here, too.
489
490         * glib/gslice.c: Make it compile on Win32 without pthreads: Use a
491         Win32 critical section instead.
492
493         * glib/gmessages.c (g_logv): On Win32, if we get a fatal error
494         message while being debugged we break into the debugger with
495         G_BREAKPOINT(). Don't call abort() if the user is foolhardy enough
496         to continue after the breakpoint. The user presumably knows what
497         he is doing and deserves what he gets. (#376645, Andreas Köhler)
498
499 Thu Dec 28 12:50:31 2006  Tim Janik  <timj@imendio.com>
500
501         * glib/gslice.h, glib/gslice.c: implemented static debugging
502         hash-tree to validate slice adresses and sizes with G_SLICE=debug-blocks.
503         use abort() to exit in mem_error() to allow catching of these in gdb.
504         abort programs with a descriptive error message if g_thread_init() is
505         called after GSlice was in use. previously this just silently corrupted
506         the magazines.
507
508         * glib/ghash.c (struct _GHashNode): reordered fields to keep 8-byte
509         pointer alignment on 64bit systems and request smaller slice sizes
510         on 32bit systems.
511
512         * tests/slice-test.c: support '~' option flag to introduce slice
513         allocation/release corruption with a significant probability. this
514         allowes testing of G_SLICE=debug-blocks.
515
516 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
517
518         * glib/gconvert.[hc]:
519         * glib/gfileutils.c:
520         * glib/giochannel.c:
521         * glib/goption.c:
522         * glib/gspawn.c:
523         * glib/gunicollate.c:
524         * glib/gutils.c:
525         * tests/timeloop-basic.c:
526         Consistently use gsize rather than size_t.  (#333310,
527         Morten Welinder)
528
529 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
530
531         * configure.in: Use AC_CACHE_CHECK for the nl_langinfo
532         check.  (#304517, Lőrinczy Zsigmond)
533
534 2006-12-27  Tor Lillqvist  <tml@novell.com>
535
536         * glib/gwin32.h
537         * glib/gwin32.c (get_package_directory_from_module)
538         (g_win32_get_package_installation_directory)
539         (g_win32_get_package_installation_subdirectory): Add const to
540         gchar* arguments. (#384523, Yevgen Muntyan)
541
542 2006-12-27  Ryan Lortie  <desrt@desrt.ca>
543
544         * glib/ghash.c: cache the value of the hash function
545         in the GHashNode.  this speeds up resizing the hash
546         table and it also allows a slight optimisation on
547         lookups.  (#388332)
548
549 2006-12-27  Matthias Clasen  <mclasen@redhat.com>
550
551         * glib/gunicollate.c (g_utf8_collate_key): Don't modify
552         the current locale.  (#389300)
553
554 2006-12-26  Matthias Clasen  <mclasen@redhat.com>
555
556         * glib/gutf8.c: Add hints for locale-dependent interfaces.
557         * glib/gconvert.c: Add hints for locale-dependent interfaces.
558
559         * glib/gconvert.c (g_get_filename_charsets): Improve
560         formatting of docs.
561
562 2006-12-26  Behdad Esfahbod  <behdad@gnome.org>
563
564         * configure.in: Use libtool to determine shared library suffix.
565         (#357245)
566
567 2006-12-24  Matthias Clasen  <mclasen@redhat.com>
568
569         * tests/run-collate-tests.sh:
570         * tests/unicode-collate.c: Silently skip tests if
571         we can't set LC_COLLATE to en_US.  (#336438)
572
573 2006-12-19  Matthias Clasen  <mclasen@redhat.com>
574
575         * glib/gkeyfile.c (g_key_file_is_key_name): Accept
576         '/', '+' and '.' in key names, since gnome-vfs uses
577         mime types as keys in some cache.
578
579         * tests/keyfile-test.c: Tests for the above.
580
581 2006-12-18  Matthias Clasen  <mclasen@redhat.com>
582
583         * configure.in: Fix the broken poll test.  (#387260,
584         Christian Persch)
585
586         * glib/gmain.c (child_watch_helper_thread): Readd a
587         return which was removed as dead code a while ago.
588         icc may consider it dead, but gcc doesn't like non-void
589         functions without a return...  (#354707)
590
591         * tests/Makefile.am: Try a different fix for bug 346373.
592
593 2006-12-18  Matthias Clasen  <mclasen@redhat.com>
594
595         Fix bug 161288:
596
597         * configure.in: Check for wcslen.
598
599         * glib/gnulib/vasnprintf.c: Handle wcslen missing.
600
601 2006-12-18  Matthias Clasen  <mclasen@redhat.com>
602
603         * glib/gkeyfile.c: Accept '@' in locale names.
604
605         * glib/gkeyfile.c: Tighten up the check for allowed
606         key and group names.  (#343191, Tommi Komulainen)
607
608         * tests/keyfile-test.c: Test handling of key and group names.
609
610         * tests/Makefile.am: Don't use $RANDOM if the shell doesn't
611         have it.  (#346373, Thomas Klausner)
612
613 2006-12-17  Behdad Esfahbod  <behdad@gnome.org>
614
615         * glib/gstring.c: Improve docs about string functions taking a
616         length.  (#378727)
617
618 2006-12-17  Matthias Clasen  <mclasen@redhat.com>
619
620         * glib/gconvert.c:
621         * glib/gutf8.c (_g_charset_get_aliases): Put the G_GNUC_INTERNAL
622         where gcc doesn't complain about it.
623
624         * glib/ghash.c: Make ref_count an int to avoid compiler
625         warnings.
626
627         * configure.in: Use AC_LANG_SOURCE for the clock test.
628
629         * glib/gthreadpool.h:
630         * glib/gthreadpool.c (g_thread_pool_free): Don't use "wait"
631         as parameter name.  (#379207, Christian Biere)
632
633         * glib/gspawn.c: Refer to g_child_watch_add() in addition
634         to waitpid().
635
636         * glib/gstrfuncs.c (g_strndup, g_strnfill): Move docs
637         inline, and improve wording.  (#372598, Behdad Esfahbod)
638
639         * glib/gspawn.c: Add some pointers to the gdk_spawn_
640         variants.  (#338134, Federico Mena Quintero)
641
642         * configure.in: Make montonic clock test work again. Does
643         AC_COMPILE_IFELSE not get confdefs ? Also, move the clock
644         tests below the thread checks to fix #364663.
645
646         * tests/run-markup-tests.sh: Don't use diff -u  (#380801,
647         Marek Rouchal)
648
649         * glib/gspawn.c: Fix the recent fdwalk()-related changes
650         to not break mapping-test.  (#286838, Marco Barisione)
651
652         * glib/gstring.c (g_string_chunk_new): Don't shadow size.
653         (#386760, Kazuki IWAMOTO)
654
655 2006-12-16  Matthias Clasen  <mclasen@redhat.com>
656
657         * glib/gstring.c: Move more documentation inline.
658
659         * configure.in: Use AC_COMPILE_IFELSE for the monotonic
660         clock test.  (#362918, Han-Wen Nienhuys, Jeremy Lainé)
661
662         * glib/gstring.c: Move documentation inline.
663
664 2006-12-15  Matthias Clasen  <mclasen@redhat.com>
665
666         * glib/giochannel.h: Make ref_count a gint to avoid
667         compiler warnings.  (#321977, Andrew Paprocki)
668
669         * configure.in: On Solaris, set CFLAGS and LDFLAGS that
670         work both with Sun cc and gcc.  (#315061, Lazlo Peter)
671
672         * glib/gspawn.c: Undefine READ_OK to fix the build on
673         old versions of Darwin.  (#327800)
674
675         * glib/glib.symbols:
676         * glib/gstring.[hc] (g_string_chunk_clear): Add a function
677         for clearing a GStringChunk. (#364608, Matt Barnes)
678
679         * glib/guniprop.c (interval_compare): Avoid a compiler
680         warning.
681
682         * glib/gspawn.c (do_exec): Call set_cloexec() with
683         the right parameters.  (#386252, Guillaume Desmottes)
684
685 2006-12-15  Matthias Clasen  <mclasen@redhat.com>
686
687         Fix #357585, Padraig O'Briain.
688
689         * configure.in: Check for fdwalk.
690
691         * glib/gspawn.c (do_exec): Use fdwalk() to close all
692         file descriptors.
693
694         * glib/gspawn.c (fdwalk): Fallback implementation of
695         fdwalk.
696
697 2006-12-14  Matthias Clasen  <mclasen@redhat.com>
698
699         * glib/gconvert.c (open_converter): Don't use alloca
700         and avoid allocating memory for small keys that are
701         already cached.  (#172406, Morten Welinder)
702
703         * glib/gmain.c (g_child_watch_add_full): Improve the docs.
704         (#345569, Tim-Philipp Müller)
705
706         * glib/gkeyfile.c (g_key_file_add_group): If the group
707         is already there, make it current.  (#385910, Joe Halliwell)
708
709         * tests/keyfile-test.c: Add a test for duplicate groups/keys.
710
711 2006-12-13  Matthias Clasen  <mclasen@redhat.com>
712
713         * m4macros/glib-gettext.m4: Require AC_CANONICAL_HOST in
714         GLIB_WITH_NLS.  (#385132, Laszlo Peter)
715
716 2006-12-12  Matthias Clasen  <mclasen@redhat.com>
717
718         * configure.in: Add a check for broken poll on Mac OS X.
719
720         * glib/gmain.c: Use poll emulation on OS X.  (#302672, Toby Peterson,
721         patch by Dave Vasilevsky)
722
723 2006-12-11  Matthias Clasen  <mclasen@redhat.com>
724
725         * glib/gatomic.c: Don't use local numeric labels in
726         inline assembler on AIX.  (#316434, Hans Rosenfeld)
727
728         * glib/gunicode.h (g_utf8_next_char): Cast to const char *,
729         not char *.  (#138153, Nikolai Weibull)
730
731 Wed Nov 22 16:09:13 2006  Tim Janik  <timj@gtk.org>
732
733         * glib/gmacros.h: added G_GNUC_MAY_ALIAS, suggested by Mathias
734         Hasselmann in bug #335341, fixes bug #335853.
735
736 2006-11-15  Matthias Clasen  <mclasen@redhat.com>
737
738         * m4macros/glib-gettext.m4: Apply a patch from James
739         Henstridge for compatibility with automake 2.60 (#343825)
740
741 2006-11-14  Behdad Esfahbod  <behdad@gnome.org>
742
743         * sanity_check: Replace bash-specific == with sh-understood =.
744         Fixes bug #373864.
745
746 2006-11-05  Hans Breuer  <hans@breuer.org>
747
748         * glib/makefile.msc.in : glib/ version not the gobject/
749         one I accidentially commited. Fixes bug #371074.
750
751 2006-11-05  Tor Lillqvist  <tml@novell.com>
752
753         * makefile.mingw
754         * gmodule/makefile.mingw.in
755         * glib/makefile.mingw.in
756         * gobject/makefile.mingw.in
757         * gthread/makefile.mingw.in
758         * tests/makefile.mingw.in: Remove from CVS. Haven't been
759         maintained or distributed for long.
760
761 2006-10-26  Pascal Terjan  <pterjan@linuxfr.org>
762
763         * glib/libcharset/localcharset.c: Fix small leak on failed
764         realloc in _g_locale_get_charset_aliases (#338582)
765
766 2006-10-16  Behdad Esfahbod  <behdad@gnome.org>
767
768         * glib/gnulib/Makefile.am: Add $(GLIB_DEBUG_FLAGS).  (#362543,
769         Peter Kjellerstedt)
770
771 2006-10-15  Sebastian Wilhelmi  <seppi@seppi.de>
772
773         * tests/Makefile.am: Compile errorcheck-mutex-test with thread
774         libraries explicitly. (#74748, Javier Villavicencio)
775
776 2006-10-08  Matthias Clasen  <mclasen@redhat.com>
777
778         Add a way to obtain Unicode script information.  (#348348,
779         Marco Barisione)
780
781         * glib/glib.symbols:
782         * glib/gunicode.h: Add GUnicodeScript enumeration and
783         g_unichar_get_script.
784
785         * glib/guniprop.c: Implement g_unichar_get_script.
786
787         * glib/gscripttable.h: Generated private header containing
788         script tables.
789
790         * glib/gen-script-table.pl: Script to generate gscripttable.h.
791
792         * glib/Makefile.am: Update
793
794 2006-10-08  Matthias Clasen  <mclasen@redhat.com>
795
796         * tests/run-markup-tests.sh: Small portability fix.  (#347944,
797         Dan McMahill)
798
799 2006-10-07  Tor Lillqvist  <tml@novell.com>
800
801         * glib/gwin32.c (get_package_directory_from_module)
802         (g_win32_get_package_installation_directory): g_strdup the keys
803         that we are passed before adding them to the hash tables, to guard
804         against the caller freeing them. (#355955, Andreas Köhler)
805
806 2006-10-06  Matthias Clasen  <mclasen@redhat.com>
807
808         * glib/gtimer.c: Fix a typo.  (#359190)
809
810 2006-10-02  Behdad Esfahbod  <behdad@gnome.org>
811
812         * glib/Makefile.am:
813         * gobject/Makefile.am:
814         Include pltcheck.sh in EXTRA_DIST, and remove redefinition of TESTS.
815         (#358966)
816
817 2006-10-01  Matthias Clasen  <mclasen@redhat.com>
818
819         * glib/gtimer.c (g_usleep): Use nsleep to implement
820         g_usleep on AIX.  (#321974, Andrew Paprocki)
821
822         * configure.in: Check for nsleep
823
824         * glib/gmain.c: Fix typos in doc comments.
825         (#358421, Tom Tromey)
826
827 2006-09-30  Matthias Clasen  <mclasen@redhat.com>
828
829         * glib/pltcheck.sh: A script to check PLT entries.
830         * glib/Makefile.am (TESTS): Run pltcheck.sh
831
832         * glib/*: Fix includes to correct some issues with
833         PLT entries.  (#354522, Behdad Esfahbod)
834
835 2006-09-17  Hans Breuer  <hans@breuer.org>
836
837         * glib/makefile.msc.in gobject/makefile.msc.in : better filtering
838         of G_GNUC_* stuff when generating .def files. Now also works with
839         newer (less tolerant) linkers, e.g. from vc2500e
840
841 2006-09-10  Matthias Clasen  <mclasen@redhat.com>
842
843         * glib/gbacktrace.c: Assume string.h is available.
844         (#354523, Behdad Esfahbod)
845
846         * configure.in: Bump version to 2.13.0
847
848         * glib/glib.symbols:
849         * glib/gmain.[hc]: Add functions to create approximate
850         timeouts.  (#353942, Arjan van de Ven)
851
852         * glib/gstdio.c (g_rename): Initialize save_errno.
853         (#355206, Mike Edenfield)
854
855 2006-09-03  Matthias Clasen  <mclasen@redhat.com>
856
857         * glib/gerror.c: Allocate GErrors using the slice allocator.
858         (#354054, Matt Barnes)
859
860 2006-09-02  Matthias Clasen  <mclasen@redhat.com>
861
862         * glib/gtimer.c: Forgotten HAVE_CLOCK_GETTIME.
863
864 2006-09-02  Tor Lillqvist  <tml@novell.com>
865
866         * glib/gutils.c (g_get_any_init_do): Correct C99ism (mixed
867         declarations and code) in Win32 ifdef branch. (#353903, Mike
868         Edenfield)
869
870 2006-09-01  Abel Cheung  <abel@oaka.org>
871
872         * configure.in: Added 'dz' 'hy' to ALL_LINGUAS.
873
874 2006-09-01  Matthias Clasen  <mclasen@redhat.com>
875
876         * configure.in: Check for CLOCK_MONOTONIC.
877
878         * glib/gtimer.c: Only use clock_gettime if we
879         have a monotonic clock.
880
881 2006-08-31  Matthias Clasen  <mclasen@redhat.com>
882
883         * configure.in: Add missing includes to a few test
884         programs.  (#353580, Chris Wilson)
885
886 2006-08-30  Matthias Clasen  <mclasen@redhat.com>
887
888         * glib/gmarkup.c (g_markup_vprintf_escaped): Don't call
889         va_end on caller-provided va_args.  (#353584, Chris Wilson)
890
891 2006-08-29  Tor Lillqvist  <tml@novell.com>
892
893         Remove support for Windows 9x/ME, as will be done also in Pango
894         and GTK+. GTK+ hasn't worked on Win9x since 2.6 or 2.8 anyway, so
895         it's pretty pointless to keep the Win9x code in here either. If
896         somebody is interested, the code can always be found in older GLib
897         versions, and in CVS.
898
899         * glib/gdir.c
900         * glib/gfileutils.c
901         * glib/gspawn-win32-helper.c
902         * glib/gspawn-win32.c
903         * glib/gstdio.c
904         * glib/gutils.c
905         * glib/gwin32.c
906         * glib/gwin32.h: Remove the G_WIN32_IS_NT_BASED() and
907         G_WIN32_HAVE_WIDECHAR_API() tests and their false (Win9x)
908         branches, and any variables or static functions used only by the
909         Win9x branches.
910
911         * glib/gwin32.c (g_win32_windows_version_init): Call g_error() if
912         run on Win9x.
913
914 2006-08-27  Matthias Clasen  <mclasen@redhat.com>
915
916         * configure.in: Fix pthread compiler flag detection.
917
918         * glib/gtimer.c: Use Posix monotonic clocks instead of
919         gettimeofday when available.  (#336114, William Jon McCann)
920
921 2006-08-26  Matthias Clasen  <mclasen@redhat.com>
922
923         * glib/gutils.h:
924         * glib/gscanner.c: Fix some typos.  (#351741, Kjartan Maraas)
925
926 2006-08-25  Matthias Clasen  <mclasen@redhat.com>
927
928         * configure.in: Fix the pthread compiler flag detection.
929
930         * glib/gunicode.h:
931         * glib/gutf8.c (_g_utf8_make_valid): Rename make_valid_utf8
932         from gconvert.c, move it to gutf8.c, and export it privately.
933
934         * glib/gconvert.c (g_filename_display_name): Adjust callers.
935
936         * glib/gkeyfile.c: Use _g_utf8_make_valid() in a number of
937         places to ensure error messages are valid UTF-8.  (#351853,
938         Simon Budig)
939
940 2006-08-22  Matthias Clasen <mclasen@redhat.com>
941
942         * Branch for 2.12