Fix the docs
[platform/upstream/glib.git] / ChangeLog
1 2008-04-03  Matthias Clasen  <mclasen@redhat.com>
2
3         Bug 525674 – A typo in gmarkup.c
4
5         * glib/gmarkup.c (g_markup_parse_context_get_element_stack): Fix
6         the docs, reported by Hiroyuki Ikezoe
7
8 2008-04-03  Matthias Clasen  <mclasen@redhat.com>
9
10         Bug 525732 – Error in documentation for g_list_first
11
12         * glib/glist.c (g_list_first): Fix the docs, reported by 
13         Salvatore Iovene
14
15 2008-04-02  Tor Lillqvist  <tml@novell.com>
16
17         Bug 524314 - g_convert() on Win32 implicitly converts full width
18         alphanumerics into half width
19         
20         * glib/win_iconv.c: Update from Yukihiro Nakadaira. Use
21         WC_NO_BEST_FIT_CHARS flag for WideCharToMultiByte() unless the
22         //translit flag was suffixed to the codeset name.
23
24         * glib/gconvert.c: Include win_iconv.c earlier so that its
25         definition of WINVER before it includes <windows.h> is used.
26
27 2008-03-31  Tor Lillqvist  <tml@novell.com>
28
29         * glib/gmain.c (g_poll): Improve fix for #525192 below: Use
30         SleepEx() so that the sleep is alertable. Thanks to John
31         Ehresman.
32
33 2008-03-31  Tor Lillqvist  <tml@novell.com>
34
35         * glib/gwin32.c
36         (g_win32_get_package_installation_directory_of_module): Fix Cygwin
37         breakage. Patch by Lieven van der Heide.
38
39 2008-03-31 10:39:17  Tim Janik  <timj@imendio.com>
40
41         * glib/gutils.h: reapply inlining fix from r6333 to fix:
42         Bug 522292 – Gives warnings in glib/gutils.h with GCC in C99 mode
43         and again:
44         Bug 315437 – extern inline -> static inline
45
46 2008-03-31  Tor Lillqvist  <tml@novell.com>
47
48         Bug 525192 - 100% CPU if run main loop with no IO sources
49
50         * glib/gmain.c (g_poll) [Win32]: Patch by Neil Roberts.
51
52 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
53
54         * glib/gtester.c: Don't use ARG_MAX.  (#522335, patch by 
55         Sebastian Dröge)
56
57 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
58
59         * glib/gmacros.h: Add macros wrapping the gcc alloc_size 
60         function attribute.  (#523019, Rodrigo Moya)
61
62         * glib/gmem.h: 
63         * glib/gslice.h:
64         * glib/gstrfuncs.h: Use the new attribute where appropriate.
65
66 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
67
68         * glib/glibintl.h:
69         * glib/gstrfuncs.c:
70         * glib/gutils.c: Simple fixes to help building GLib on 
71         embedded systems without NLS.  (#524350, Peter Kjellerstedt)
72
73 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
74
75         * glib/ghash.c: Fix the build with -DG_DISABLE_ASSERT.
76         (#525060, Arfrever Frehtes Taifersar Arahesis)
77
78 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
79         
80         * glib/gthread.h: Replace occurrances of G_GNUC_PRETTY_FUNCTION
81         by G_STRFUNC.  (#524344, Peter Kjellerstedt)
82
83 2008-03-30  Matthias Clasen  <mclasen@redhat.com>
84
85         * glib/gtestutils.c: Fix a doc typo. (#524742, Hiroyuki Ikezoe)
86
87 2008-03-22  Claudio Saavedra  <csaavedra@gnome.org>
88
89         Bug 523877 – gbookmarkfile: avoid using g_string_append_printf() and
90         other optimizations
91
92         * glib/gbookmarkfile.c: (bookmark_metadata_dump),
93         (bookmark_item_dump), (g_bookmark_file_dump), (expand_exec_line):
94         Replace all calls to g_string_append_printf with g_strconcat () or
95         g_string_append () where appropriate, to reduce the file creation time.
96         Also, use g_string_sized_new () with an appropriate buffer size instead
97         of g_string_new (NULL), to reduce time spent in memory reallocation.
98         (#523877, Claudio Saavedra, Emmanuele Bassi)
99
100 2008-03-22  Emmanuele Bassi  <ebassi@gnome.org>
101
102         Bug 518160 - replace two g_strdup_printf calls in GBookmarkFile
103
104         * glib/gbookmarkfile.c (is_element_full): Compare the fragments
105         instead of building two strings; this avoids two g_strdup_printf()
106         per namespaced element enountered. (#518160, Felix Riemann)
107
108 2008-03-20  Alexander Larsson  <alexl@redhat.com>
109
110         * configure.in:
111         Final fixes for struct statfs.f_fstypename checks (OpenBSD). (#521045)
112         Patch from ephraim_owns@hotmail.com
113
114 2008-03-19  Tor Lillqvist  <tml@novell.com>
115
116         Bug 523298 - win_iconv can't convert from UTF-8 to GB18030 (or vice versa)
117
118         * glib/win_iconv.c: Fixes for code page 54936 (GB18030)
119         (mbtowc_flags): New function. Check if a code page is one of those
120         for which the dwFlags parameter to MultiByteToWideChar() must be
121         zero. Return 0 or MB_ERR_INVALID_CHARS.
122         (mbcs_mblen): New function for multi-byte (more than two bytes for
123         some characters) code pages. Only handles 54936 for now.
124         (make_csconv): Use it for 54936.
125         (kernel_mbtowc): Use mbtowc_flags().
126
127 2008-03-18  Sebastian Dröge  <slomo@circular-chaos.org>
128
129         Bug 522292 - Gives warnings in glib/gutils.h with GCC in C99 mode
130
131         * glib/gutils.h: Use "__attribute__ ((__gnu_inline__))" for inlining
132         if either __GNUC_STDC_INLINE__ or __GNUC_GNU_INLINE__ are defined. In
133         gcc version prior to 4.3 no correct C99-inline was implemented which
134         has semantic differences to GNU inline.
135
136 2008-03-16  Tor Lillqvist  <tml@novell.com>
137
138         * configure.in: Don't bother defining Autoconf variables for
139         glib.def, gmodule.def, gobject.def and gthread.def when this can
140         be handled easily in */Makefile.am which are the only files that
141         use them. Remove also TESTGMODULE_EXP which isn't used at all.
142
143         * glib/Makefile.am: Corrsponding change.
144         
145 2008-03-14  Michael Natterer  <mitch@imendio.com>
146
147         * glib/*.h: make it possible to disable single-file includes by
148         defining G_DISABLE_SINGLE_INCLUDES when building against GLib.
149         Approved by Tim Janik.
150
151         * glib/glib.h: include <glib/gslice.h>.
152
153         * glib/gi18n.h
154         * glib/gi18n-lib.h
155         * glib/gprintf.h: include <glib.h> so the above works when these
156         files are included without including <glib.h> first.
157
158 2008-03-14  Alexander Larsson  <alexl@redhat.com>
159
160         * configure.in:
161         Add required includes for f_fstypename member check.
162
163 2008-03-14  Alexander Larsson  <alexl@redhat.com>
164
165         * configure.in:
166         Added checks for FEN (Solaris  File Event Notification)
167
168 2008-03-13  Tor Lillqvist  <tml@novell.com>
169
170         * glib-zip.in: Add lib/gio-2.0.lib and lib/gio-2.0.def.
171
172 2008-03-12  Tor Lillqvist  <tml@novell.com>
173
174         * configure.in: Expand gio/win32/Makefile.
175
176 2008-03-12  Matthias Clasen <mclasen@redhat.com>
177
178         * configure.in: Bump version to 2.17.0
179
180         * ChangeLog.pre-2-16: rotate ChangeLog
181         
182         * === branch for 2.16 ===