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