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