Remove g_snprintf() and g_vsnprintf(), since they are already declared in
[platform/upstream/glib.git] / ChangeLog
1 2005-09-26  Matthias Clasen  <mclasen@redhat.com>
2
3         * glib/glib.symbols:
4         * glib/gprintf.h: Remove g_snprintf() and g_vsnprintf(), since
5         they are already declared in glib.h. This doesn't break documented
6         use of gprintf.h, but should probably be pointed out in the 
7         release notes for 2.10. (#314232, Behdad Esfahbod)
8
9 Tue Sep 20 13:16:04 2005  Tim Janik  <timj@imendio.com>
10
11         * glib/gpattern.c (g_pattern_ph_match): applied significant recursion
12         complexity optimization, based on a patch from Matthias Clasen.
13
14         * tests/patterntest.c: more tests, mostly from matthias.
15
16 2005-09-20  Matthias Clasen  <mclasen@redhat.com>
17
18         * glib/gqueue.c (g_queue_insert_sorted): Correct the docs.
19         (#316703, Mark Drago)
20
21 Mon Sep 19 17:23:23 2005  Tim Janik  <timj@imendio.com>
22
23         * glib/gpattern.c: applied a patch from matthias which checks on the
24         upper bound of GPatternSpec length to optimize matches.
25         cosmetic fixups.
26
27         * tests/patterntest.c: added more match cases.
28
29 2005-09-16  Tor Lillqvist  <tml@novell.com>
30
31         * glib/gstrfuncs.c (g_ascii_strcasecmp, g_ascii_strncasecmp): Add
32         warning to doc comment that these functions should not be used on
33         encodings like CP932.
34
35 2005-09-14  Matthias Clasen  <mclasen@redhat.com>
36
37         * tests/keyfile-test.c: Add a test for grup names of length 1.
38
39         * glib/gkeyfile.c (g_key_file_line_is_group): Accept group names
40         of length 1.  (#316309)
41         
42 2005-09-12  Matthias Clasen  <mclasen@redhat.com>
43
44         * glib/gmarkup.c (g_markup_escape_text): Clarify docs.
45
46 2005-09-11  Sebastian Wilhelmi  <seppi@seppi.de>
47
48         * tests/refcount/Makefile.am (INCLUDES): Link the the refcount
49         tests to the system thread library $(G_THREAD_LIBS). Fixes #313744
50         and #314217.
51
52 2005-09-11  Kjartan Maraas  <kmaraas@gnome.org>
53
54         * glib/gmain.c: (g_child_watch_prepare), (g_child_watch_check),
55         (child_watch_helper_thread): Remove some dead code. Closes
56         bug #315278.
57
58 2005-09-07  Tor Lillqvist  <tml@novell.com>
59
60         * glib/Makefile.am: Create also a console version of the
61         gspawn-win32-helper program, gspawn-win32-helper-console.exe.
62         It's otherwise identical to gspawn-win32-helper.exe, except marked
63         as a console application (linked without the -mwindows option).
64         
65         * glib/gspawn-win32.c (do_spawn_directly, do_spawn_with_pipes):
66         Drop the dont_wait parameter. Its truth value correlated 100% with
67         the NULLness of the exit_status parameter anyway, so it's enough
68         to check whether exit_status is NULL. Invert the sense of the
69         dont_return_handle parameter and rename it to do_return_handle, to
70         make the code easier to read by avoiding double negations.
71
72         (g_spawn_sync_utf8, g_spawn_async_with_pipes_utf8): Modify calls
73         to do_spawn_with_pipes() accordingly.
74
75         (do_spawn_with_pipes): If we have a console, use the console
76         version of the helper program, otherwise use the GUI one. This
77         avoids extra console windows opening up in some situations. (In
78         case a console application uses the GUI gspawn-win32-helper.exe to
79         spawn another console application we would get a separate console
80         for the spawned console application).
81
82         * glib-zip.in: Distribute also gspawn-win32-helper-console.exe.
83
84 2005-09-05  Matthias Clasen  <mclasen@redhat.com>
85
86         * glib/gmappedfile.c (g_mapped_file_new): Report an error
87         if the file is too large.  (#315275, Kjartan Maraas)
88
89         * glib/gkeyfile.c (g_key_file_load_from_fd): The return value
90         of read() is signed.  (#315273, Kjartan Maraas)
91         
92 2005-08-31  Tor Lillqvist  <tml@novell.com>
93
94         * glib/gutils.h: Wrapping atexit() is a bad idea on Windows, where
95         the EXE and each DLL have their own atexit function chains.
96
97         #define g_atexit as atexit instead. This means it has a
98         better chance of doing what the caller wants. For instance,
99         gtkhtml calls g_atexit() registering a function in gtkhtml
100         itself. This caused a crash when g_atexit() was implemented as a
101         function in the GLib DLL. The gtkhtml DLL was already unloaded by
102         the time the GLib DLL got unloaded.
103
104         * glib/gutils.c: #undef the #define mentioned above, to also get a
105         real g_atexit() into the DLL for backward compatibility. Document
106         the Windows behaviour of g_atexit(), and document the varying ways
107         atexit() can behave in the context of dynamically loaded modules
108         on Unix.
109
110 2005-08-31  Matthias Clasen  <mclasen@redhat.com>
111
112         * glib/glib.symbols: 
113         * glib/gquark.h: 
114         * glib/gdataset.c: Add string interning functions.
115
116 2005-08-28  Matthias Clasen  <mclasen@redhat.com>
117
118         * glib/giochannel.c: Unify some near-duplicate strings. (#314654,
119         Clytie Siddall)
120         
121 2005-08-26  Matthias Clasen  <mclasen@redhat.com>
122
123         * configure.in: Bump version to 2.9.0
124
125 2005-08-25  Tor Lillqvist  <tml@novell.com>
126
127         Make also the g_spawn*() functions take parameters in the GLib
128         file name encoding, i.e. UTF-8, on Windows. Has no impact on Unix
129         API or ABI. Like the other GLib API that was earlier changed to
130         use UTF-8 on Windows, the names of the functions that take UTF-8
131         have _utf8 suffixes added by using preprocessor macros in the
132         header file. The old names are kept for functions with the old
133         behaviour, taking parameters in the system codepage, for DLL ABI
134         stability.
135         
136         * glib/gspawn.h: On Win32 add the suffix _utf8 to the names of the
137         g_spawn*() functions.
138         
139         * glib/gspawn-win32.c: Use wide-char API on NT-based
140         Windows. Convert parameters from UTF-8 to wide chars (NT) or
141         system codepage (Win9x) and call the C library _wspawn*() or
142         spawn*() functions respectvely. Add DLL ABI stability versions
143         that take parameters in the system codepage.
144
145         * glib/gspawn-win32-helper.c: On NT-based Windows use the
146         wide-char versions of argv and envp, and use wide-char API to
147         change directory and spawn the program to run. Remove the verbose
148         debugging output, it was too complex to modify for the wide-char
149         features. (Just add temporary debugging printouts if needed, no
150         need to have them permanently in the source.)
151
152         * glib/gspawn.c: Corresponding documentation updates.
153
154         * glib/glib.symbols: Corresponding changes: Mark the ABI stability
155         symbols as PRIVATE, add the new _utf8-suffixed ones.
156
157 2005-08-24  Stepan Kasal  <kasal@ucw.cz>
158
159         * glib/gtypes.h (G_MININT64): Cast the constant to gint64; it is
160         guint64 otherwise and that can produce warnings about comparison
161         between signed and unsigned.
162
163 2005-08-23  Matthias Clasen  <mclasen@redhat.com>
164
165         * glib/gutils.c: Fix the crt_externs.h include.
166
167 2005-08-23  Stepan Kasal  <kasal@ucw.cz>
168
169         * NEWS: Fix spelling of my first name.
170
171 2005-08-23  Matthias Clasen  <mclasen@redhat.com>
172
173         * Bump version
174
175         * === Released 2.8.1 ===
176
177         * NEWS: Updates
178
179 2005-08-20  Hans Breuer  <hans@breuer.org>
180
181         * glib/makefile.msc.in : link with ws2_32.lib
182
183 2005-08-18  Tor Lillqvist  <tml@novell.com>
184
185         * configure.in: Check for <sys/wait.h>
186
187         * glib/gbacktrace.c: Include <sys/wait.h> on if HAVE_SYS_WAIT_H.
188
189 2005-08-18  Ross Burton  <ross@burtonini.com>
190
191         * glib/gstring.c:
192         Optimise single-character insertions.
193         
194         * glib/gutf8.c:
195         Note copied code.
196         
197         * tests/string-test.c:
198         Add tests for new optimisation, and fix a leak.
199
200 2005-08-17  Matthias Clasen  <mclasen@redhat.com>
201
202         * configure.in: Check for crt_externs.h and _NSGetEnviron.
203
204         * glib/gutils.c: On Darwin, include crt-externs.h and
205         define environ using _NSGetEnviron().  (#313731)
206
207 2005-08-16  Stepan Kasal  <kasal@ucw.cz>
208
209         * glib/gutils.c (g_get_any_init): Move the body of the big if...
210         (g_get_any_init_do): ... to this new function.
211         (g_get_any_init): Declare as inline.
212         (g_get_any_init_locked): New inline function, does the locking.
213         Make use of these two throughout the code.
214
215 2005-08-15  Matthias Clasen  <mclasen@redhat.com>
216
217         * glib/gbacktrace.c (g_on_error_stack_trace): Wait for
218         the child process and then simply return. This makes 
219         The "S" option work as documented in g_on_error_query().
220         (#313125, Matthew F. Barnes)
221
222         * glib/gunicode.h: Update the link to Unicode category
223         values.  (#313369, Behnam Esfahbod)
224
225         * glib/gqueue.c (g_queue_find_custom): Clarify docs
226         a little.  (#311727, Tristan van Berkom)
227
228         * glib/abicheck.sh, gobject/abicheck.sh: Make the 
229         check work on ia64 too, where some symbols ended up 
230         in yet another section.
231