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