sl@0
|
1 |
Fri Dec 20 10:45:29 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
2 |
|
sl@0
|
3 |
* === Released 2.2.0 ===
|
sl@0
|
4 |
|
sl@0
|
5 |
* INSTALL.in: --enable-included-printf, not --enable-trio.
|
sl@0
|
6 |
(Matthias Clasen)
|
sl@0
|
7 |
|
sl@0
|
8 |
Fri Dec 20 09:52:15 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
9 |
|
sl@0
|
10 |
* INSTALL.in: Document --enable-trio, --disable-mempools,
|
sl@0
|
11 |
--enable-debug. Include docs on cross compilation.
|
sl@0
|
12 |
|
sl@0
|
13 |
* NEWS: Update.
|
sl@0
|
14 |
|
sl@0
|
15 |
* configure.in: Version 2.2.0, interface age 0.
|
sl@0
|
16 |
|
sl@0
|
17 |
Fri Dec 20 09:37:27 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
18 |
|
sl@0
|
19 |
* gthread/gthread-impl.c (g_thread_init): Call g_main_thread_init()
|
sl@0
|
20 |
after setting g_threads_got_initialized. (#101624,
|
sl@0
|
21 |
Alceste Scalas, Sebastian Wilhelmi)
|
sl@0
|
22 |
|
sl@0
|
23 |
Wed Dec 18 16:19:08 2002 Manish Singh <yosh@gimp.org>
|
sl@0
|
24 |
|
sl@0
|
25 |
* glib/gtypes.h: new endian asm for ia64 and x86_64, general
|
sl@0
|
26 |
reorg and clean up. New implementation of GUINT16_SWAP_LE_BE_CONSTANT()
|
sl@0
|
27 |
that should optimize better. (#101318)
|
sl@0
|
28 |
|
sl@0
|
29 |
2002-12-17 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
30 |
|
sl@0
|
31 |
Improvement based on suggestion by Thorsten Maerz:
|
sl@0
|
32 |
|
sl@0
|
33 |
* glib/giowin32.c (struct _GIOWin32Channel): Don't need thread_handle.
|
sl@0
|
34 |
|
sl@0
|
35 |
(create_thread): We can close thread handle right away, it isn't
|
sl@0
|
36 |
used for anything.
|
sl@0
|
37 |
|
sl@0
|
38 |
(read_thread, select_thread): Thus, don't close it here.
|
sl@0
|
39 |
|
sl@0
|
40 |
Fix #57690, partial fix for #57689:
|
sl@0
|
41 |
|
sl@0
|
42 |
* glib/giowin32.c (g_io_win32_set_flags): Don't set the GError,
|
sl@0
|
43 |
instead call g_warning().
|
sl@0
|
44 |
|
sl@0
|
45 |
(g_io_win32_fd_get_flags_internal): New function, sets the
|
sl@0
|
46 |
is_readable, is_writeable and is_seekable flags based on the
|
sl@0
|
47 |
actual access modes of the underlying Win32 HANDLE, by trying
|
sl@0
|
48 |
Win32 ReadFile() and WriteFile() of zero bytes, and
|
sl@0
|
49 |
PeekNamedPipe(). Should work for disk files and pipes. For devices
|
sl@0
|
50 |
(consoles) unfortunately not.
|
sl@0
|
51 |
|
sl@0
|
52 |
(g_io_win32_fd_get_flags): Don't set the
|
sl@0
|
53 |
G_IO_FLAG_IS_{READ,WRITE}ABLE flags, g_io_channel_get_flags()
|
sl@0
|
54 |
already does. Call g_io_win32_fd_get_flags_internal() to set the
|
sl@0
|
55 |
is_* flags.
|
sl@0
|
56 |
|
sl@0
|
57 |
(g_io_win32_msg_get_flags, g_io_win32_sock_get_flags): Splice the
|
sl@0
|
58 |
generic g_io_win32_get_flags() into these specific functions, as
|
sl@0
|
59 |
they need to do different things. Not implemented yet, though.
|
sl@0
|
60 |
|
sl@0
|
61 |
(g_io_channel_win32_new_fd_internal): New function, to avoid
|
sl@0
|
62 |
duplicate fstat() calls. Most code from g_io_channel_win32_new_fd()
|
sl@0
|
63 |
moved here. Call g_io_win32_fd_get_flags_internal() to set the
|
sl@0
|
64 |
is_* flags.
|
sl@0
|
65 |
|
sl@0
|
66 |
(g_io_channel_win32_new_fd, g_io_channel_unix_new): Call
|
sl@0
|
67 |
g_io_channel_win32_new_fd_internal().
|
sl@0
|
68 |
|
sl@0
|
69 |
(g_io_win32_no_seek): Remove. Don't set is_seekable for those
|
sl@0
|
70 |
channel types.
|
sl@0
|
71 |
|
sl@0
|
72 |
Mon Dec 16 17:31:50 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
73 |
|
sl@0
|
74 |
* === Released 2.1.5 ===
|
sl@0
|
75 |
|
sl@0
|
76 |
* configure.in: Version 2.1.5, interface age 2.
|
sl@0
|
77 |
|
sl@0
|
78 |
* NEWS: Updated.
|
sl@0
|
79 |
|
sl@0
|
80 |
Mon Dec 16 14:58:33 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
81 |
|
sl@0
|
82 |
* configure.in: Add a hack to mostly deal with
|
sl@0
|
83 |
problems in support of -pthread and -lpthread;
|
sl@0
|
84 |
pass -lpthread (for linux) or -Wc,-pthread (for
|
sl@0
|
85 |
other platforms) to libtool when linking libgthread.
|
sl@0
|
86 |
(#100697)
|
sl@0
|
87 |
|
sl@0
|
88 |
2002-12-16 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
89 |
|
sl@0
|
90 |
* glib/gspawn-win32.c (do_spawn): Fix potential heap
|
sl@0
|
91 |
corruption. Sometimes called g_free() on string literal.
|
sl@0
|
92 |
|
sl@0
|
93 |
Sun Dec 15 19:51:58 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
94 |
|
sl@0
|
95 |
* m4macros/glib-gettext.m4: AC_SUBST() DATADIRNAME, not
|
sl@0
|
96 |
DATADIR.
|
sl@0
|
97 |
|
sl@0
|
98 |
Sun Dec 15 19:22:58 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
99 |
|
sl@0
|
100 |
* m4macros/glib-gettext.m4: Restore a missing AC_SUBST()
|
sl@0
|
101 |
for DATADIRNAME. (Found by Kjartan Maraas)
|
sl@0
|
102 |
|
sl@0
|
103 |
Sun Dec 15 11:24:29 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
104 |
|
sl@0
|
105 |
* m4macros/glib-gettext.m4: Actually set INTLLIBS
|
sl@0
|
106 |
when needed. (Reported by Tor Lillqvist)
|
sl@0
|
107 |
|
sl@0
|
108 |
2002-12-15 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
109 |
|
sl@0
|
110 |
* glib/glib.def: Add g_rand_init.
|
sl@0
|
111 |
|
sl@0
|
112 |
* config.h.win32.in: Slight update to match what is currently
|
sl@0
|
113 |
produced by configure.
|
sl@0
|
114 |
|
sl@0
|
115 |
Sat Dec 14 21:24:04 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
116 |
|
sl@0
|
117 |
* glib/gutils.c (g_get_any_init): HP-UX 10 xshares the
|
sl@0
|
118 |
same non-posix getpwuid_r signature as AIX.
|
sl@0
|
119 |
(#100756, Kai Poitschke)
|
sl@0
|
120 |
|
sl@0
|
121 |
Sat Dec 14 21:10:57 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
122 |
|
sl@0
|
123 |
* glib/gthread.h: Mark the contents of the strucures
|
sl@0
|
124 |
in this file /*< private >*/
|
sl@0
|
125 |
|
sl@0
|
126 |
* glib/gthread.[ch]: Rename the 'write' field of the
|
sl@0
|
127 |
structure to 'have_writer' to avoid any possible
|
sl@0
|
128 |
conflict with system headers. (#90549, Morten Welinder)
|
sl@0
|
129 |
|
sl@0
|
130 |
Sat Dec 14 20:11:41 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
131 |
|
sl@0
|
132 |
* glib/libcharset/{localcharset.[ch] libcharset-glib.patch}
|
sl@0
|
133 |
glib/gutf8.c: Break _g_locale_charset() into two pieces
|
sl@0
|
134 |
- a fast "raw" piece, and a slow "unalias pieces".
|
sl@0
|
135 |
Always call the "raw" piece, and call the unalias bit
|
sl@0
|
136 |
if it changes. Use a per-thread cache. (#79529)
|
sl@0
|
137 |
|
sl@0
|
138 |
2002-12-15 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
139 |
|
sl@0
|
140 |
* configure.in: Set TRIO_LIBS when building with trio.
|
sl@0
|
141 |
|
sl@0
|
142 |
* glib-2.0.pc.in (Libs): Add @TRIO_LIBS@.
|
sl@0
|
143 |
|
sl@0
|
144 |
* glib/trio/Makefile.am (libtrio_la_LIBADD): Use @TRIO_LIBS@.
|
sl@0
|
145 |
|
sl@0
|
146 |
* glib/trio/glibtrio.h: New file, redefining all trio symbols to
|
sl@0
|
147 |
fall into the _G/_g_ private glib namespace.
|
sl@0
|
148 |
|
sl@0
|
149 |
* glib/trio/Makefile.am (libtrio_la_SOURCES): Add glibtrio.h
|
sl@0
|
150 |
|
sl@0
|
151 |
* glib/trio/trionan.c:
|
sl@0
|
152 |
* glib/trio/triostr.c:
|
sl@0
|
153 |
* glib/trio/trio.c: Include glibtrio.h
|
sl@0
|
154 |
|
sl@0
|
155 |
* glib/gprintfint.h:
|
sl@0
|
156 |
* glib/trio/trionan.c:
|
sl@0
|
157 |
* glib/trio/triostr.c:
|
sl@0
|
158 |
* glib/trio/trio.c: Include glibtrio.h
|
sl@0
|
159 |
|
sl@0
|
160 |
Fri Dec 13 17:10:21 2002 Manish Singh <yosh@gimp.org>
|
sl@0
|
161 |
|
sl@0
|
162 |
* glib/gscanner.c (g_scanner_unexp_token): Fix typo. Missing '%'
|
sl@0
|
163 |
in my last commit.
|
sl@0
|
164 |
|
sl@0
|
165 |
Thu Dec 12 23:08:29 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
166 |
|
sl@0
|
167 |
Fixes from Johannes Stezenbach
|
sl@0
|
168 |
|
sl@0
|
169 |
* configure.in: When adding extra libraries to $LIBS for
|
sl@0
|
170 |
tests, always put them at the front, since that's how
|
sl@0
|
171 |
they'll be used in the actual Makefiles.
|
sl@0
|
172 |
|
sl@0
|
173 |
* configure.in: Add a couple of missing ','s in AC_LINK_IFELSE()
|
sl@0
|
174 |
|
sl@0
|
175 |
* m4macros/glib-gettext.m4: Remove a stray setting of $LIBS.
|
sl@0
|
176 |
|
sl@0
|
177 |
Thu Dec 12 20:46:26 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
178 |
|
sl@0
|
179 |
* configure.in: Allow not setting glib_cv_long_long_format
|
sl@0
|
180 |
when cross-compiling since we assume other things that
|
sl@0
|
181 |
will cause us to pull in Trio anyways.
|
sl@0
|
182 |
|
sl@0
|
183 |
* configure.in: long_long_format is always ll for trio.
|
sl@0
|
184 |
|
sl@0
|
185 |
* configure.in: Error out if --disable-trio is specified
|
sl@0
|
186 |
but the C library doesn't have the necessary features.
|
sl@0
|
187 |
|
sl@0
|
188 |
2002-12-13 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
189 |
|
sl@0
|
190 |
* glib/trio/Makefile.am (libtrio_la_LIBADD): Add -lm for pow().
|
sl@0
|
191 |
|
sl@0
|
192 |
* tests/string-test.c: Add a test for positional parameters in
|
sl@0
|
193 |
g_snprintf().
|
sl@0
|
194 |
|
sl@0
|
195 |
Thu Dec 12 14:58:55 2002 Manish Singh <yosh@gimp.org>
|
sl@0
|
196 |
|
sl@0
|
197 |
* configure.in: pull in trio if host printf doesn't have a known
|
sl@0
|
198 |
way of printing 64-bit ints.
|
sl@0
|
199 |
|
sl@0
|
200 |
* glib/gmacros.h: remove extra whitespace at the end
|
sl@0
|
201 |
|
sl@0
|
202 |
* glib/gscanner.c (g_scanner_unexp_token): use G_GUINT64_FORMAT
|
sl@0
|
203 |
instead of hardcoding "%llu"
|
sl@0
|
204 |
|
sl@0
|
205 |
* tests/testglib.c: remove obsolete conditionals using G_HAVE_GINT64,
|
sl@0
|
206 |
we always have it now.
|
sl@0
|
207 |
|
sl@0
|
208 |
* tests/type-test.c: same as above, and for G_G[U]INT64_FORMAT as
|
sl@0
|
209 |
well.
|
sl@0
|
210 |
|
sl@0
|
211 |
Thu Dec 12 13:52:58 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
212 |
|
sl@0
|
213 |
* m4macros/glib-gettext.m4: AC_PREREQ(2.53) here; convinces
|
sl@0
|
214 |
Debian's wrappers to use the right autoconf for atk, etc.
|
sl@0
|
215 |
(Reported by Jody Goldberg)
|
sl@0
|
216 |
|
sl@0
|
217 |
2002-12-11 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
218 |
|
sl@0
|
219 |
* glib/gtimer.c (g_timer_elapsed): Fix off-by-one error. (#100853)
|
sl@0
|
220 |
|
sl@0
|
221 |
* glib/gfileutils.c (g_file_test): Bypass extra test for root on
|
sl@0
|
222 |
Win32.
|
sl@0
|
223 |
|
sl@0
|
224 |
* glib/glib.def: Add g_{get,set}_application_name.
|
sl@0
|
225 |
|
sl@0
|
226 |
Wed Dec 11 17:53:34 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
227 |
|
sl@0
|
228 |
* === Released 2.1.4 ===
|
sl@0
|
229 |
|
sl@0
|
230 |
* NEWS: Updates.
|
sl@0
|
231 |
|
sl@0
|
232 |
Wed Dec 11 17:49:15 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
233 |
|
sl@0
|
234 |
* m4macros/glib-gettext.m4: Unset
|
sl@0
|
235 |
ac_cv_func_bind_textdomain_codeset before calling
|
sl@0
|
236 |
AC_CHECK_FUNCS(bind_textdomain_codeset) again.
|
sl@0
|
237 |
|
sl@0
|
238 |
* configure.in: Remove duplicate call to
|
sl@0
|
239 |
AC_CHECK_FUNCS(bind_textdomain_codeset)
|
sl@0
|
240 |
|
sl@0
|
241 |
2002-12-11 Pauli Virtanen <pauli.virtanen@hut.fi>
|
sl@0
|
242 |
|
sl@0
|
243 |
* configure.in: Added "fi" to ALL_LINGUAS.
|
sl@0
|
244 |
|
sl@0
|
245 |
Wed Dec 11 17:00:20 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
246 |
|
sl@0
|
247 |
* acglib.m4 (ac_compile): Add GLIB_ASSERT_SET() as
|
sl@0
|
248 |
a helper for adding "must be set when cross-compiling"
|
sl@0
|
249 |
errors.
|
sl@0
|
250 |
|
sl@0
|
251 |
* configure.in: For all cached variables without defaults,
|
sl@0
|
252 |
error out if they aren't set.
|
sl@0
|
253 |
|
sl@0
|
254 |
Wed Dec 11 15:52:01 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
255 |
|
sl@0
|
256 |
* configure.in: Also assume AC_LINK_IFELSE() is
|
sl@0
|
257 |
OK when cross-compiling for the libs checks, and for
|
sl@0
|
258 |
the sched_get_priority_min() check.
|
sl@0
|
259 |
|
sl@0
|
260 |
* configure.in: Add cached value glib_cv_use_pid_surrogate.
|
sl@0
|
261 |
|
sl@0
|
262 |
Wed Dec 11 15:10:25 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
263 |
|
sl@0
|
264 |
* configure.in: Factor out repeated thread test into
|
sl@0
|
265 |
a m4_define(); when cross-compiling, assume that
|
sl@0
|
266 |
AC_LINK_IFELSE() is good enough for thinking that
|
sl@0
|
267 |
-pthread[s] is OK. (More of #58786)
|
sl@0
|
268 |
|
sl@0
|
269 |
* m4macros/glib-gettext.m4: Fix typo. (Manish Singh)
|
sl@0
|
270 |
|
sl@0
|
271 |
Wed Dec 11 14:28:50 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
272 |
|
sl@0
|
273 |
* configure.in: Version 2.1.4, interface age 1.
|
sl@0
|
274 |
|
sl@0
|
275 |
* m4macros/glib-gettext.m4: Major rewrite; remove leftovers
|
sl@0
|
276 |
from building intl/, prefer libintl if both libc and libintl
|
sl@0
|
277 |
have dgettext and libintl also has bind_textdomain_codeset().
|
sl@0
|
278 |
(#70627)
|
sl@0
|
279 |
|
sl@0
|
280 |
* configure.in acinclude.m4: Use an include to avoid having
|
sl@0
|
281 |
to duplicate the gettext macros between glib-gettext.m4
|
sl@0
|
282 |
and acinclude.m4.
|
sl@0
|
283 |
|
sl@0
|
284 |
* m4macros/glib-gettext.m4: Do some tricks so that configure.in
|
sl@0
|
285 |
can use macros under hidden names, but aclocal will still
|
sl@0
|
286 |
find them when installed.
|
sl@0
|
287 |
|
sl@0
|
288 |
* m4macros/glib-gettext.m4: Add AM_GLIB_DEFINE_LOCALEDIR
|
sl@0
|
289 |
to encapsulate install location of catalog files.
|
sl@0
|
290 |
|
sl@0
|
291 |
* m4macros/glib-gettext.m4 (AM_GLIB_DEFINE_LOCALEDIR):
|
sl@0
|
292 |
Fix bug where if --prefix wasn't set on the configure line,
|
sl@0
|
293 |
GLib would look for translations in NONE/share/locale.
|
sl@0
|
294 |
|
sl@0
|
295 |
Wed Dec 11 11:11:44 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
296 |
|
sl@0
|
297 |
* glib/grand.c: Include string.h, supress a warning.
|
sl@0
|
298 |
|
sl@0
|
299 |
2002-12-10 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
sl@0
|
300 |
|
sl@0
|
301 |
* glib/grand.c (g_rand_int_range): Improve generation of
|
sl@0
|
302 |
pseudo-random integers. (#99720, Morten Welinder <terra@diku.dk>)
|
sl@0
|
303 |
|
sl@0
|
304 |
* README.in, docs/reference/glib/running.sgml,
|
sl@0
|
305 |
docs/reference/glib/tmpl/random_numbers.sgml,
|
sl@0
|
306 |
docs/reference/glib/changes.sgml: Added notes about the new
|
sl@0
|
307 |
algorithm.
|
sl@0
|
308 |
|
sl@0
|
309 |
2002-12-09 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
sl@0
|
310 |
|
sl@0
|
311 |
* configure.in: use 0 instead of $defattr, as it isn't defined
|
sl@0
|
312 |
anymore on platforms using -pthread and linux, where this is used,
|
sl@0
|
313 |
only uses 0 anyway and not "pthread_attr_default".
|
sl@0
|
314 |
|
sl@0
|
315 |
Sun Dec 8 23:36:12 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
316 |
|
sl@0
|
317 |
* glib/gfileutils.c (g_file_test): Guard against
|
sl@0
|
318 |
the POSIX allowed behavior where access (file, X_OK)
|
sl@0
|
319 |
succeeds for uid==0 when no executable bits are set.
|
sl@0
|
320 |
|
sl@0
|
321 |
* glib/gfileutils.c (g_file_test): Add doc notes
|
sl@0
|
322 |
about the possibility of race conditions, and the
|
sl@0
|
323 |
fact that EXISTS and IS_EXECUTABLE give results
|
sl@0
|
324 |
for the real uid not the effective user ID.
|
sl@0
|
325 |
(#81854, Morten Welinder.)
|
sl@0
|
326 |
|
sl@0
|
327 |
Fri Dec 6 14:34:42 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
328 |
|
sl@0
|
329 |
Avoid literal UTF-8. (Allow it to build with
|
sl@0
|
330 |
IRIX cc, #72757, Tomas Ogren)
|
sl@0
|
331 |
|
sl@0
|
332 |
* tests/patterntest.c (main): Convert literal
|
sl@0
|
333 |
iso-8859-1 high bit characters in tests to
|
sl@0
|
334 |
string escapes.
|
sl@0
|
335 |
|
sl@0
|
336 |
* glib/gunichartable.h glib/gen-unicode-tables.pl:
|
sl@0
|
337 |
Use hex \xMN escapes rather than literal UTF-8
|
sl@0
|
338 |
for casefold tables.
|
sl@0
|
339 |
|
sl@0
|
340 |
* configure.in: AC_PREREQ(2.53). needed for recent
|
sl@0
|
341 |
GLIB_SIZEOF() changes.
|
sl@0
|
342 |
|
sl@0
|
343 |
Fri Dec 6 12:40:00 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
344 |
|
sl@0
|
345 |
* glib/libcharset/Makefile.am (EXTRA_DIST): Don't
|
sl@0
|
346 |
distribute ref-add/del.sed., fixing problem with
|
sl@0
|
347 |
srcdir != destdir. (#99813, Phuc LeHong)
|
sl@0
|
348 |
|
sl@0
|
349 |
Fri Dec 6 12:31:30 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
350 |
|
sl@0
|
351 |
* configure.in: chmod 0755 scripts in AC_OUTPUT(), since
|
sl@0
|
352 |
install -c won't necessarily do that. (#74376, Martin
|
sl@0
|
353 |
Gansser, Joshua Weage)
|
sl@0
|
354 |
|
sl@0
|
355 |
Thu Dec 5 16:05:55 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
356 |
|
sl@0
|
357 |
* configure.in: Use AC_LINK_IFELSE(), not AC_TRY_RUN()
|
sl@0
|
358 |
for va_copy(), __va_copy() checks.
|
sl@0
|
359 |
|
sl@0
|
360 |
* configure.in: When there is a reasonable default,
|
sl@0
|
361 |
provide that in the 3rd argument of AC_TRY_RUN(),
|
sl@0
|
362 |
instead of just leaving the 3rd argument empty.
|
sl@0
|
363 |
|
sl@0
|
364 |
2002-12-05 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
365 |
|
sl@0
|
366 |
* glib/gstrfuncs.c (g_strncasecmp): Break long deprecation
|
sl@0
|
367 |
info into two paragraphs.
|
sl@0
|
368 |
|
sl@0
|
369 |
Thu Dec 5 15:43:46 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
370 |
|
sl@0
|
371 |
* configure.in: Fix multiple problems with the programs
|
sl@0
|
372 |
in the argument of AC_TRY_RUN() having preprocessor
|
sl@0
|
373 |
defines not in the first column.
|
sl@0
|
374 |
|
sl@0
|
375 |
Thu Dec 5 15:24:14 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
376 |
|
sl@0
|
377 |
Start of fixes for cross-compilation. Based on
|
sl@0
|
378 |
patches from Dimi Shahbaz, Dan Kegel, Johannes Stezenbach,
|
sl@0
|
379 |
Amy Lin. (#58786)
|
sl@0
|
380 |
|
sl@0
|
381 |
* configure.in: Don't run the Digital-Unix 4 -std1 check
|
sl@0
|
382 |
when cross_compiling.
|
sl@0
|
383 |
|
sl@0
|
384 |
* configure.in: Use AC_TRY_COMPILE() rather than
|
sl@0
|
385 |
AC_TRY_RUN() for inline checks. (Daniel Egger)
|
sl@0
|
386 |
|
sl@0
|
387 |
* configure.in: use AC_CHECK_SIZEOF rather than
|
sl@0
|
388 |
GLIB_SIZEOF for size_t. Remove unused checks for
|
sl@0
|
389 |
size of ptrdiff_t/intmax_t.
|
sl@0
|
390 |
|
sl@0
|
391 |
* acglib.m4: Resync GLIB_SIZEOF of to the current
|
sl@0
|
392 |
AC_CHECK_SIZEOF, which handles cross-compilation.
|
sl@0
|
393 |
|
sl@0
|
394 |
* acglib.m4: Remove no longer needed GLIB_SYSDEFS(),
|
sl@0
|
395 |
add GLIB_CHECK_VALUE() as a wrapper around the
|
sl@0
|
396 |
amazing _AC_COMPUTE_INT() autoconf 2.5x internal.
|
sl@0
|
397 |
|
sl@0
|
398 |
* configure.in: Redo the POLL* value checks in a
|
sl@0
|
399 |
cross-compilation friendly way.
|
sl@0
|
400 |
|
sl@0
|
401 |
Thu Dec 5 15:28:37 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
402 |
|
sl@0
|
403 |
* glib/gtimer.c: Include glibconfig.h early so
|
sl@0
|
404 |
that we include <windows.h> when needed.
|
sl@0
|
405 |
|
sl@0
|
406 |
* glib/gstrfuncs.c: Fix typo.
|
sl@0
|
407 |
|
sl@0
|
408 |
Tue Dec 3 21:10:28 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
409 |
|
sl@0
|
410 |
* configure.in: Add 3rd argument to remaining AC_DEFINES(),
|
sl@0
|
411 |
so we can get rid of acconfig.h. (#76334, Daniel Egger)
|
sl@0
|
412 |
|
sl@0
|
413 |
* acconfig.h: Removed.
|
sl@0
|
414 |
|
sl@0
|
415 |
Tue Dec 3 20:22:27 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
416 |
|
sl@0
|
417 |
* glib/*.c: Patch from Sven Neumann to make the
|
sl@0
|
418 |
include order consistent. (#71704)
|
sl@0
|
419 |
|
sl@0
|
420 |
2002-12-03 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
421 |
|
sl@0
|
422 |
* configure.in: Check that strlcpy behaves as per the OpenBSD
|
sl@0
|
423 |
man page before wrapping it. (#53933)
|
sl@0
|
424 |
|
sl@0
|
425 |
2002-12-03 Frederic Crozat <fcrozat@mandrakesoft.com>
|
sl@0
|
426 |
|
sl@0
|
427 |
* glib/gunicollate.c: (g_utf8_collate_key):
|
sl@0
|
428 |
Fix typo from previous commit
|
sl@0
|
429 |
|
sl@0
|
430 |
Tue Dec 3 01:05:00 2002 James M. Cape <jcape@ignore-your.tv>
|
sl@0
|
431 |
|
sl@0
|
432 |
* glib/gunicollate.c (g_utf8_collate, g_utf8_collate_key):
|
sl@0
|
433 |
Check for NULL before doing anything.
|
sl@0
|
434 |
|
sl@0
|
435 |
Mon Dec 2 16:34:13 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
436 |
|
sl@0
|
437 |
* === Released 2.1.3 ===
|
sl@0
|
438 |
|
sl@0
|
439 |
* NEWS: Updated.
|
sl@0
|
440 |
|
sl@0
|
441 |
[ Unmerged change from stable from May 16 ]
|
sl@0
|
442 |
|
sl@0
|
443 |
* autogen.sh: Remove check for GNU gettext, since it
|
sl@0
|
444 |
was causing problems for Solaris CVS builds.
|
sl@0
|
445 |
(#81885, Hidetoshi Tajima.)
|
sl@0
|
446 |
|
sl@0
|
447 |
Tue Nov 26 09:51:43 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
448 |
|
sl@0
|
449 |
* glib/gstrfuncs.c (g_strchomp): Avoid non-ANSI pointer
|
sl@0
|
450 |
comparison. (#54344, Morten Welinder)
|
sl@0
|
451 |
|
sl@0
|
452 |
* tests/strfunc-test.c (main): Add tests for strchomp().
|
sl@0
|
453 |
|
sl@0
|
454 |
2002-11-30 Ole Laursen <olau@hardworking.dk>
|
sl@0
|
455 |
|
sl@0
|
456 |
* configure.in: Added "da" to ALL_LINGUAS.
|
sl@0
|
457 |
|
sl@0
|
458 |
2002-11-29 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
459 |
|
sl@0
|
460 |
* glib/gstrfuncs.c (g_ascii_strtoull): It is a 2.2 addition.
|
sl@0
|
461 |
|
sl@0
|
462 |
* glib/gtimer.c (g_time_val_add): Adjust to changed parameter names.
|
sl@0
|
463 |
|
sl@0
|
464 |
* glib/gutils.c (g_get_application_name): Mark as 2.2. addition.
|
sl@0
|
465 |
|
sl@0
|
466 |
* glib/gstrfuncs.c (g_ascii_strtoull): Mark as 2.0.7 addition.
|
sl@0
|
467 |
|
sl@0
|
468 |
2002-11-28 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
469 |
|
sl@0
|
470 |
* glib/gutils.c:
|
sl@0
|
471 |
* glib/gtree.c:
|
sl@0
|
472 |
* glib/gstring.c:
|
sl@0
|
473 |
* glib/gstrfuncs.c:
|
sl@0
|
474 |
* glib/giochannel.c: Move some docs inline, and add deprecation
|
sl@0
|
475 |
information. To see the list of affected functions, grep for
|
sl@0
|
476 |
"Deprecated:".
|
sl@0
|
477 |
|
sl@0
|
478 |
* configure.in: Fix the definitions around printf: either we use
|
sl@0
|
479 |
system printf in which case HAVE_VASPRINTF, HAVE_C99_VSNPRINTF and
|
sl@0
|
480 |
HAVE_UNIX98_PRINTF have already been determined by earlier tests,
|
sl@0
|
481 |
or we use the included printf, in which case we know that these
|
sl@0
|
482 |
three can be defined as 1. (#99826)
|
sl@0
|
483 |
|
sl@0
|
484 |
* glib/gutf8.c (g_utf8_strreverse):
|
sl@0
|
485 |
* glib/gstrfuncs.c (g_str_has_suffix):
|
sl@0
|
486 |
(g_str_has_prefix):
|
sl@0
|
487 |
* glib/gprintf.c (g_printf):
|
sl@0
|
488 |
(g_fprintf):
|
sl@0
|
489 |
(g_sprintf):
|
sl@0
|
490 |
(g_vprintf):
|
sl@0
|
491 |
(g_vfprintf):
|
sl@0
|
492 |
(g_vsprintf):
|
sl@0
|
493 |
* glib/gmarkup.c (g_markup_parse_context_get_element):
|
sl@0
|
494 |
Mark as 2.2 API additions.
|
sl@0
|
495 |
|
sl@0
|
496 |
* configure.in: Fix the gtk-doc version check.
|
sl@0
|
497 |
|
sl@0
|
498 |
2002-11-27 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
499 |
|
sl@0
|
500 |
* glib/gmessages.h: Use G_LIKELY without surrounding parentheses
|
sl@0
|
501 |
in g_assert() and g_return_[val]_if_fail() so that we always trigger
|
sl@0
|
502 |
the gcc warning about "assignment used as truth value".
|
sl@0
|
503 |
|
sl@0
|
504 |
* glib/gmacros.h: Always put parentheses in G_LIKELY and G_UNLIKELY.
|
sl@0
|
505 |
|
sl@0
|
506 |
2002-11-26 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
507 |
|
sl@0
|
508 |
* glib/gmessages.h: Only use G_LIKELY in g_assert() and
|
sl@0
|
509 |
g_return_[val]_if_fail() if it is actually doing something.
|
sl@0
|
510 |
|
sl@0
|
511 |
2002-11-26 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
sl@0
|
512 |
|
sl@0
|
513 |
* glib/grand.c, gthread/gthread-impl.c, tests/rand-test.c:
|
sl@0
|
514 |
Changed the seeding algorithm. Old behaviour can be achived by
|
sl@0
|
515 |
setting envvar G_RANDOM_VERSION to "2.0". (#99262)
|
sl@0
|
516 |
|
sl@0
|
517 |
* docs/reference/glib/glib-docs.sgml,
|
sl@0
|
518 |
docs/reference/glib/Makefile.am: Renamed
|
sl@0
|
519 |
docs/reference/glib/changes-2.0.sgml to
|
sl@0
|
520 |
docs/reference/glib/changes.sgml and added section for changes
|
sl@0
|
521 |
from 2.0 to 2.2 (Also corrected 1.0 to 1.2).
|
sl@0
|
522 |
|
sl@0
|
523 |
* README.in, docs/reference/glib/running.sgml,
|
sl@0
|
524 |
docs/reference/glib/tmpl/random_numbers.sgml,
|
sl@0
|
525 |
docs/reference/glib/changes.sgml: Added notes about the new
|
sl@0
|
526 |
seeding algorithm.
|
sl@0
|
527 |
|
sl@0
|
528 |
* configure.in: Make CPPFLAGS, not CFLAGS, include
|
sl@0
|
529 |
G_THREAD_CFLAGS. CFLAGS is used while linking too and thus GLib
|
sl@0
|
530 |
programs would link to the threads library on some platforms. Also
|
sl@0
|
531 |
fixed a bug manifesting through this change. (#77981)
|
sl@0
|
532 |
|
sl@0
|
533 |
2002-11-26 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
534 |
|
sl@0
|
535 |
* glib/gmacros.h: Fix the non-gcc-3.x definitions of G_LIKELY
|
sl@0
|
536 |
and G_UNLIKELY. (Reported by Dan Mills)
|
sl@0
|
537 |
|
sl@0
|
538 |
2002-11-25 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
539 |
|
sl@0
|
540 |
* glib/gfileutils.c (g_build_path):
|
sl@0
|
541 |
(g_build_filename): Document that the varargs must be
|
sl@0
|
542 |
NULL-terminated. (#99510)
|
sl@0
|
543 |
|
sl@0
|
544 |
* glib/gmessages.h (g_assert):
|
sl@0
|
545 |
(g_return_if_fail):
|
sl@0
|
546 |
(g_return_val_if_fail): Remove the (no longer effective) empty
|
sl@0
|
547 |
if-branch.
|
sl@0
|
548 |
|
sl@0
|
549 |
* glib/gmacros.h: Change the definition of G_LIKELY, so that
|
sl@0
|
550 |
g_return_if_fail() and friends still trigger a gcc warning if
|
sl@0
|
551 |
the expr is an assignment.
|
sl@0
|
552 |
|
sl@0
|
553 |
2002-11-23 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
554 |
|
sl@0
|
555 |
* configure.in: Generate docs/reference/*/version.xml.
|
sl@0
|
556 |
|
sl@0
|
557 |
* glib/gdir.h: Add Copyright notice.
|
sl@0
|
558 |
|
sl@0
|
559 |
2002-11-22 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
sl@0
|
560 |
|
sl@0
|
561 |
* configure.in: Fixed typo: PTHREAD_PRIO_MIN ->
|
sl@0
|
562 |
PTHREAD_PRIO_MAX. (Laurent Vivier, #99293)
|
sl@0
|
563 |
|
sl@0
|
564 |
Fri Nov 22 09:39:09 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
565 |
|
sl@0
|
566 |
* glib/gmacros.h: Remove broken G_HIDDEN_SYMBOL
|
sl@0
|
567 |
definition which wasn't supposed to be committed
|
sl@0
|
568 |
at all.
|
sl@0
|
569 |
|
sl@0
|
570 |
Thu Nov 21 16:19:21 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
571 |
|
sl@0
|
572 |
* glib/ghash.c: Patch from Morten Welinder to
|
sl@0
|
573 |
make ghash.c properly obey DISABLE_MEM_POOLS. (#96600)
|
sl@0
|
574 |
|
sl@0
|
575 |
Thu Nov 21 14:09:44 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
576 |
|
sl@0
|
577 |
* glib/gmacros.h: Add G_GNUC_DEPRECATED. (Tom Tromey,
|
sl@0
|
578 |
#87969)
|
sl@0
|
579 |
|
sl@0
|
580 |
2002-11-21 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
581 |
|
sl@0
|
582 |
* config.h.win32.in: Update to match what is currently produced by
|
sl@0
|
583 |
autotools.
|
sl@0
|
584 |
|
sl@0
|
585 |
* configure.in: Remove superfluous spaces on two shell variable
|
sl@0
|
586 |
assignment lines. Don't define HAVE_GOOD_PRINTF as 0 if we don't
|
sl@0
|
587 |
have a good printf, it is tested with #ifdef.
|
sl@0
|
588 |
|
sl@0
|
589 |
* glib/glib.def: Add new functions.
|
sl@0
|
590 |
|
sl@0
|
591 |
* glib/Makefile.am: If !HAVE_GOOD_PRINTF, add libtrio.la to LIBADD
|
sl@0
|
592 |
and DEPENDENCIES.
|
sl@0
|
593 |
|
sl@0
|
594 |
* glib/glib.rc.in
|
sl@0
|
595 |
* gmodule/gmodule.rc.in
|
sl@0
|
596 |
* gobject/gobject.rc.in
|
sl@0
|
597 |
* gthread/gthread.rc.in
|
sl@0
|
598 |
* {glib,gmodule,gobject,gthread}/makefile.{mingw,msc}.in:
|
sl@0
|
599 |
Hardcode 2.0 in the names, as that is what Makefile.am does.
|
sl@0
|
600 |
|
sl@0
|
601 |
2002-11-21 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
602 |
|
sl@0
|
603 |
Include a printf implementation supporting C99 snprintf and SUS
|
sl@0
|
604 |
positional parameters: (#79488)
|
sl@0
|
605 |
|
sl@0
|
606 |
* glib/gstrfuncs.c:
|
sl@0
|
607 |
* glib/gspawn-win32.c:
|
sl@0
|
608 |
* glib/gscanner.c:
|
sl@0
|
609 |
* glib/gconvert.c:
|
sl@0
|
610 |
* glib/gbacktrace.c: Use _g_printf wrappers.
|
sl@0
|
611 |
|
sl@0
|
612 |
* glib/gutils.c (g_vsnprintf): Simplify, since we can assume C99
|
sl@0
|
613 |
snprintf semantics now.
|
sl@0
|
614 |
|
sl@0
|
615 |
* glib/gmessages.c (printf_string_upper_bound): No longer needed,
|
sl@0
|
616 |
since we can assume C99 snprintf semantics now.
|
sl@0
|
617 |
(g_logv): Simplify.
|
sl@0
|
618 |
|
sl@0
|
619 |
* acinclude.m4 (AC_FUNC_PRINTF_UNIX98): New macro to check wether
|
sl@0
|
620 |
printf supports SUS positional parameters.
|
sl@0
|
621 |
|
sl@0
|
622 |
* configure.in: New option --enable-included-printf to force
|
sl@0
|
623 |
compilation of trio; otherwise trio is compiled if the system
|
sl@0
|
624 |
printf misses either C99 snprintf semantics of SUS positional
|
sl@0
|
625 |
parameters.
|
sl@0
|
626 |
|
sl@0
|
627 |
* glib/Makefile.am (SUBDIRS): Conditionally compile trio.
|
sl@0
|
628 |
(libglib_2_0_la_SOURCES): Add gprintf.c and gprintfint.h.
|
sl@0
|
629 |
(glibsubinclude_HEADERS): Add gprintf.h.
|
sl@0
|
630 |
|
sl@0
|
631 |
* glib/gprintfint.h: New private wrapping either system printf
|
sl@0
|
632 |
or trio printf variants in _g_printf wrappers for use inside glib.
|
sl@0
|
633 |
|
sl@0
|
634 |
* glib/gprintf.h: New public header declaring g_printf variants.
|
sl@0
|
635 |
* glib/gprintf.c: Corresponding implementations.
|
sl@0
|
636 |
|
sl@0
|
637 |
* glib/trio/*: New directory, containing the trio-1.9 sources.
|
sl@0
|
638 |
|
sl@0
|
639 |
2002-11-20 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
640 |
|
sl@0
|
641 |
* glib/gmessages.h (g_return_if_fail):
|
sl@0
|
642 |
(g_return_val_if_fail): Use G_LIKELY. (#69022)
|
sl@0
|
643 |
|
sl@0
|
644 |
* glib/gmacros.h (G_LIKELY):
|
sl@0
|
645 |
(G_UNLIKELY): New macros for hinting the compiler about the
|
sl@0
|
646 |
expected result of expressions. For gcc 3.x, define these
|
sl@0
|
647 |
using __builtin_expect. (#69022)
|
sl@0
|
648 |
|
sl@0
|
649 |
Tue Nov 19 14:38:18 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
650 |
|
sl@0
|
651 |
* glib/gstrfuncs.c (g_ascii_strtoull): Fix
|
sl@0
|
652 |
strtull/strtoull type in docs (#99012, Morten
|
sl@0
|
653 |
Welinder.) Add copyright information for code
|
sl@0
|
654 |
taken from GNU libc.
|
sl@0
|
655 |
|
sl@0
|
656 |
2002-11-18 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
657 |
|
sl@0
|
658 |
* glib/gspawn-win32.c (do_spawn_with_pipes): Do handle
|
sl@0
|
659 |
G_SPAWN_DO_NOT_REAP_CHILD after all, similarily as on Unix. If the
|
sl@0
|
660 |
flag is not set, don't call DuplicateHandle() on the handle
|
sl@0
|
661 |
returned by the helper process, and set the "child pid" returned
|
sl@0
|
662 |
to the called to zero. Close the handle to the helper process in
|
sl@0
|
663 |
all cases.
|
sl@0
|
664 |
|
sl@0
|
665 |
* glib/gspawn.c (g_spawn_async_with_pipes): Document Windows
|
sl@0
|
666 |
behaviour of G_SPAWN_DO_NOT_REAP_CHILD.
|
sl@0
|
667 |
|
sl@0
|
668 |
2002-11-18 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
669 |
|
sl@0
|
670 |
[Win32] Fix the asynchronous g_spawn* to return the process handle
|
sl@0
|
671 |
of the started program properly. (Note: not the process id. The
|
sl@0
|
672 |
spawn*() functions in the C runtime return the created process's
|
sl@0
|
673 |
handle. There doesn't seem to be any way to get the process id of
|
sl@0
|
674 |
a child process if you have the handle. But then, the process
|
sl@0
|
675 |
handle usually is more useful anyway.)
|
sl@0
|
676 |
|
sl@0
|
677 |
* glib/gspawn-win32-helper.c (WinMain): If the spawning of the
|
sl@0
|
678 |
child process succeeded, and if asynchronous spawn (P_NOWAIT),
|
sl@0
|
679 |
write the result handle up to the parent process, waiting to read
|
sl@0
|
680 |
it in do_spawn_with_pipes().
|
sl@0
|
681 |
|
sl@0
|
682 |
* glib/gspawn-win32.c (do_spawn): Use return value from spawning
|
sl@0
|
683 |
the helper. If it is -1 the helper wasn't found or couldn't be run
|
sl@0
|
684 |
for some reason. Otherwise it is the helper's process handle.
|
sl@0
|
685 |
|
sl@0
|
686 |
(g_spawn_async_with_pipes): Pass the child_pid parameter on to
|
sl@0
|
687 |
do_spawn_with_pipes().
|
sl@0
|
688 |
|
sl@0
|
689 |
(do_spawn_with_pipes): Take also a child_pid parameter. If
|
sl@0
|
690 |
do_spawn() returned -1, fail immediately. Otherwise make the
|
sl@0
|
691 |
handle passed to us by the helper process into a handle valid in
|
sl@0
|
692 |
this process by calling DuplicateHandle().
|
sl@0
|
693 |
|
sl@0
|
694 |
2002-11-17 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
695 |
|
sl@0
|
696 |
* glib/gspawn-win32.c (g_spawn_async_with_pipes): Ignore the
|
sl@0
|
697 |
G_SPAWN_DO_NOT_REAP_CHILD flag, can't be meaninfully implemented
|
sl@0
|
698 |
on Windows, at least not now. Always pass dont_wait as TRUE to
|
sl@0
|
699 |
do_spawn_with_pipes(). The semantics of the dont_wait parameter is
|
sl@0
|
700 |
very different from the semantics of the intermediate_child
|
sl@0
|
701 |
parameter to fork_exec_with_pipes() in the Unix version. This
|
sl@0
|
702 |
fixes a serious bug, g_spawn_async() in fact behaved
|
sl@0
|
703 |
synchronously.
|
sl@0
|
704 |
|
sl@0
|
705 |
(do_spawn_with_pipes, do_spawn): Rename from
|
sl@0
|
706 |
fork_exec_with_pipes() and do_exec(), those names were from the
|
sl@0
|
707 |
Unix bersion, and misleading.
|
sl@0
|
708 |
|
sl@0
|
709 |
(close_and_invalidate): Don't try to close invalid fds.
|
sl@0
|
710 |
|
sl@0
|
711 |
* glib/gspawn.c (g_spawn_async_with_pipes): Add warning about
|
sl@0
|
712 |
Windows behaviour. There is no fork(), so the child_setup()
|
sl@0
|
713 |
function is in fact called in the parent.
|
sl@0
|
714 |
|
sl@0
|
715 |
* glib/gspawn-win32-helper.c (WinMain): Insert spaces in argv
|
sl@0
|
716 |
debugging output.
|
sl@0
|
717 |
|
sl@0
|
718 |
* tests/spawn-test-win32-gui.c: New file. Test program to be
|
sl@0
|
719 |
linked as a GUI application. Behaves differently depending on how
|
sl@0
|
720 |
invoked (by spawn-test).
|
sl@0
|
721 |
|
sl@0
|
722 |
* tests/spawn-test.c (run_tests): On Win32, run the
|
sl@0
|
723 |
spawn-test-win32-gui program, too, in several ways, synchronously
|
sl@0
|
724 |
and asynchronously.
|
sl@0
|
725 |
|
sl@0
|
726 |
* tests/Makefile.am: Corresponding change.
|
sl@0
|
727 |
|
sl@0
|
728 |
Fri Nov 8 19:44:20 2002 Soeren Sandmann <sandmann@daimi.au.dk>
|
sl@0
|
729 |
|
sl@0
|
730 |
* docs/reference/glib/tmpl/arrays.sgml:
|
sl@0
|
731 |
* docs/reference/glib/tmpl/arrays_byte.sgml:
|
sl@0
|
732 |
* docs/reference/glib/tmpl/arrays_pointer.sgml:
|
sl@0
|
733 |
* docs/reference/glib/tmpl/date.sgml:
|
sl@0
|
734 |
* docs/reference/glib/tmpl/linked_lists_double.sgml:
|
sl@0
|
735 |
* docs/reference/glib/tmpl/linked_lists_single.sgml:
|
sl@0
|
736 |
* docs/reference/glib/tmpl/main.sgml:
|
sl@0
|
737 |
* docs/reference/glib/tmpl/queue.sgml:
|
sl@0
|
738 |
* docs/reference/glib/tmpl/random_numbers.sgml:
|
sl@0
|
739 |
* docs/reference/glib/tmpl/relations.sgml:
|
sl@0
|
740 |
* docs/reference/glib/tmpl/scanner.sgml:
|
sl@0
|
741 |
* docs/reference/gobject/tmpl/gtype.sgml:
|
sl@0
|
742 |
* docs/reference/gobject/tmpl/value_arrays.sgml glib/garray.h:
|
sl@0
|
743 |
* glib/gdate.h glib/giochannel.h glib/glist.h glib/gmain.c:
|
sl@0
|
744 |
* glib/gmain.h glib/gqueue.c glib/gqueue.h glib/grand.c glib/grand.h:
|
sl@0
|
745 |
* glib/grel.h glib/gslist.h glib/gtimer.h gobject/gvaluearray.h:
|
sl@0
|
746 |
|
sl@0
|
747 |
Trivial s/foo/foo_/ fixes to make <glib.h> includable with
|
sl@0
|
748 |
-Wshadow without warnings (#91680)
|
sl@0
|
749 |
|
sl@0
|
750 |
Thu Nov 7 19:32:26 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
751 |
|
sl@0
|
752 |
* glib/gutils.[ch] (g_set/get_application_name):
|
sl@0
|
753 |
Patch from Havoc Pennington to add functions for
|
sl@0
|
754 |
setting and getting a human readable application
|
sl@0
|
755 |
name.
|
sl@0
|
756 |
|
sl@0
|
757 |
* configure.in: Up to version 2.1.3, since we'll
|
sl@0
|
758 |
need to depend on last addition for GTK+.
|
sl@0
|
759 |
|
sl@0
|
760 |
2002-11-06 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
761 |
|
sl@0
|
762 |
* glib/glib.def: Add g_main_thread_init.
|
sl@0
|
763 |
|
sl@0
|
764 |
2002-11-06 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
765 |
|
sl@0
|
766 |
* glib/gstrfuncs.c (g_str_has_suffix):
|
sl@0
|
767 |
(g_str_has_prefix): Minor doc markup fix.
|
sl@0
|
768 |
|
sl@0
|
769 |
Mon Nov 4 10:45:48 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
770 |
|
sl@0
|
771 |
* configure.in: Add -DG_DISABLE_CAST_CHECKS for
|
sl@0
|
772 |
everything but --enable-debug.
|
sl@0
|
773 |
|
sl@0
|
774 |
* configure.in: Require pkg-config 0.14. (#97553)
|
sl@0
|
775 |
|
sl@0
|
776 |
Mon Nov 4 14:41:48 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
777 |
|
sl@0
|
778 |
* glib/gbsearcharray.c: Include config.h
|
sl@0
|
779 |
so DISABLE_MEMPOOLS actually has an effect.
|
sl@0
|
780 |
(#96437, Morten Welinder)
|
sl@0
|
781 |
|
sl@0
|
782 |
* tests/uri-test.c: Include <config.h>
|
sl@0
|
783 |
|
sl@0
|
784 |
2002-11-03 Dmitry G. Mastrukov <dmitry@taurussoft.org>
|
sl@0
|
785 |
|
sl@0
|
786 |
* configure.in: Added Belarusian to ALL_LINGUAS
|
sl@0
|
787 |
|
sl@0
|
788 |
2002-11-02 Daniel Elstner <daniel.elstner@gmx.net>
|
sl@0
|
789 |
|
sl@0
|
790 |
* glib/giochannel.c (g_io_channel_write_chars): Fix left_len
|
sl@0
|
791 |
calculation in the from UTF-8 to UTF-8 case: left_len should
|
sl@0
|
792 |
be the number of bytes left in the input buffer rather than
|
sl@0
|
793 |
channel->write_buf. (#96373)
|
sl@0
|
794 |
|
sl@0
|
795 |
2002-10-27 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
796 |
|
sl@0
|
797 |
* configure.in (G_MODULE_LDFLAGS): Don't set on Win32, only causes
|
sl@0
|
798 |
trouble.
|
sl@0
|
799 |
|
sl@0
|
800 |
* glib/gmain.c (g_poll): Fix for bug reported by Herman Bloggs
|
sl@0
|
801 |
(http://mail.gnome.org/archives/gtk-devel-list/2002-October/msg00101.html)
|
sl@0
|
802 |
and others. We waited for events only for GPollFDs whose events
|
sl@0
|
803 |
field had G_IO_IN set. We need to wait also for events for
|
sl@0
|
804 |
GPollFDs that have just G_IO_OUT set. Non-blocking sockets in the
|
sl@0
|
805 |
process of being connect()ed are one such case. Also silence a
|
sl@0
|
806 |
couple of gcc warnings.
|
sl@0
|
807 |
|
sl@0
|
808 |
Fri Oct 18 13:41:30 2002 Manish Singh <yosh@gimp.org>
|
sl@0
|
809 |
|
sl@0
|
810 |
* glib/giochannel.c (g_io_channel_read_line_backend): avoid
|
sl@0
|
811 |
creating negative values out of unsigned values using MAX,
|
sl@0
|
812 |
check to see if the result would be positive before doing
|
sl@0
|
813 |
the calculation.
|
sl@0
|
814 |
|
sl@0
|
815 |
Tue Oct 15 15:28:47 2002 Manish Singh <yosh@gimp.org>
|
sl@0
|
816 |
|
sl@0
|
817 |
* tests/iochannel-test.c: use gsize instead of int where appropriate
|
sl@0
|
818 |
(64-bit cleanliness fix). Removed leftover line_term cruft.
|
sl@0
|
819 |
|
sl@0
|
820 |
Tue Oct 15 15:07:45 2002 Manish Singh <yosh@gimp.org>
|
sl@0
|
821 |
|
sl@0
|
822 |
* gmodule/Makefile.am gobject/Makefile.am gthread/Makefile.am:
|
sl@0
|
823 |
add -DG_DISABLED_DEPRECATED
|
sl@0
|
824 |
|
sl@0
|
825 |
* tests/gio-test.c tests/mainloop-test.c tests/string-test.c
|
sl@0
|
826 |
tests/testglib.c test/tree-test.c tests/unicode-collate.c
|
sl@0
|
827 |
tests/unicode-normalize.c: Deprecation cleanup
|
sl@0
|
828 |
|
sl@0
|
829 |
Mon Oct 14 15:51:05 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
830 |
|
sl@0
|
831 |
* glib/gdate.c (g_date_fill_parse_tokens): Fix a memory
|
sl@0
|
832 |
leak. (#94550, Sebastian Rittau)
|
sl@0
|
833 |
|
sl@0
|
834 |
Mon Oct 14 15:36:11 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
835 |
|
sl@0
|
836 |
* glib/gcompletion.[ch] (g_completion_complete): Make
|
sl@0
|
837 |
prefix argument const. (#91662, Gustavo Carneiro)
|
sl@0
|
838 |
|
sl@0
|
839 |
Mon Oct 14 15:32:14 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
840 |
|
sl@0
|
841 |
* tests/mainloop-test.c (adder_response): Fix a minor memory
|
sl@0
|
842 |
leak.
|
sl@0
|
843 |
|
sl@0
|
844 |
Sat Oct 12 21:30:41 2002 Tim Janik <timj@gtk.org>
|
sl@0
|
845 |
|
sl@0
|
846 |
* merged up from glib-2-0:
|
sl@0
|
847 |
|
sl@0
|
848 |
* glib/gstrfuncs.c (g_ascii_strtod): fix comment.
|
sl@0
|
849 |
(g_ascii_strtoull): new function, acting like strtoull(3) in the C
|
sl@0
|
850 |
locale.
|
sl@0
|
851 |
|
sl@0
|
852 |
* glib/gscanner.[hc]: fix 32bit issues with integer parsing and
|
sl@0
|
853 |
support storing 64bit values in GTokenValue by
|
sl@0
|
854 |
using g_ascii_strtoull().
|
sl@0
|
855 |
|
sl@0
|
856 |
Sat Oct 12 12:34:22 2002 Soeren Sandmann <sandmann@daimi.au.dk>
|
sl@0
|
857 |
|
sl@0
|
858 |
* glib/gtree.c (g_tree_search), glib/gspawn.c
|
sl@0
|
859 |
(g_spawn_async_with_pipes):
|
sl@0
|
860 |
|
sl@0
|
861 |
Documentation fixes: #71778, Owen Taylor; #85095, Bill Janssen,
|
sl@0
|
862 |
Owen Taylor.
|
sl@0
|
863 |
|
sl@0
|
864 |
Thu Oct 10 23:27:02 2002 Tim Janik <timj@gtk.org>
|
sl@0
|
865 |
|
sl@0
|
866 |
* glib/gscanner.c (g_scanner_msg_handler): if input_name is NULL,
|
sl@0
|
867 |
print out "<memory>" instead of completely skipping input specification
|
sl@0
|
868 |
and thusly loosing error line information.
|
sl@0
|
869 |
|
sl@0
|
870 |
Sun Sep 29 12:15:44 2002 Manish Singh <yosh@gimp.org>
|
sl@0
|
871 |
|
sl@0
|
872 |
* tests/mainloop-test.c: use gsize instead of int where appropriate
|
sl@0
|
873 |
(64-bit cleanliness fix)
|
sl@0
|
874 |
|
sl@0
|
875 |
2002-09-29 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
876 |
|
sl@0
|
877 |
* configure.in: Instead of forcing -fnative-struct into CFLAGS
|
sl@0
|
878 |
when using gcc for Win32, check for gcc version 3.x which uses
|
sl@0
|
879 |
-mms-bitfields instead. Also check if either of these switches is
|
sl@0
|
880 |
actually available at all, and warn if not. Thanks to Soren
|
sl@0
|
881 |
Andersen for the inspiration.
|
sl@0
|
882 |
|
sl@0
|
883 |
* HACKING: Say we require autoconf 2.52 as that is what
|
sl@0
|
884 |
configure.in does.
|
sl@0
|
885 |
|
sl@0
|
886 |
2002-09-23 Arvind Samptur <arvind.samptur@wipro.com>
|
sl@0
|
887 |
* glib/gspawn.c (fork_exec_with_pipes) : when the child fails
|
sl@0
|
888 |
we need to reap it to avoid a zombie. This would
|
sl@0
|
889 |
happen in case of g_spawn_sync. Fixes #92658
|
sl@0
|
890 |
|
sl@0
|
891 |
2002-09-20 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
892 |
|
sl@0
|
893 |
* glib/gscanner.c (g_scanner_msg_handler): Don't print
|
sl@0
|
894 |
scanner->input_name when it is NULL. (#93752)
|
sl@0
|
895 |
|
sl@0
|
896 |
2002-09-06 Havoc Pennington <hp@redhat.com>
|
sl@0
|
897 |
|
sl@0
|
898 |
* autogen.sh: automake 1.4
|
sl@0
|
899 |
|
sl@0
|
900 |
2002-09-01 Soeren Sandmann <sandmann@daimi.au.dk>
|
sl@0
|
901 |
|
sl@0
|
902 |
* docs/reference/glib/tmpl/datalist.sgml, glib/gmain.c:
|
sl@0
|
903 |
|
sl@0
|
904 |
Documentation fixes: (#75255, Martin Schulze; #76104, Daryll Strauss)
|
sl@0
|
905 |
|
sl@0
|
906 |
2002-08-26 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
907 |
|
sl@0
|
908 |
* configure.in (G_LIBS_EXTRA): Don't link with -lwsock32 on
|
sl@0
|
909 |
Cygwin (#91696, Masahiro Sakai).
|
sl@0
|
910 |
|
sl@0
|
911 |
Tue Aug 20 16:01:03 2002 HideToshi Tajima <hidetoshi.tajima@sun.com>
|
sl@0
|
912 |
|
sl@0
|
913 |
* glib/gconvert.c (strdup_len): validate 'len' argument properly
|
sl@0
|
914 |
for the case that input string is not null-terminated. (#91222)
|
sl@0
|
915 |
|
sl@0
|
916 |
2002-08-10 Gustavo Noronha Silva <kov@debian.org>
|
sl@0
|
917 |
|
sl@0
|
918 |
* configure.in: added pt_BR to ALL_LINGUAS
|
sl@0
|
919 |
|
sl@0
|
920 |
2002-08-07 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
921 |
|
sl@0
|
922 |
* glib/gmarkup.c (g_markup_parse_context_get_element):
|
sl@0
|
923 |
Use g_return_val_if_fail, no g_return_if_fail.
|
sl@0
|
924 |
|
sl@0
|
925 |
2002-08-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
sl@0
|
926 |
|
sl@0
|
927 |
* glib/gthread.c: Set the normal PID surrogate priority according
|
sl@0
|
928 |
to getpid() to avoid errors for niced processes. (#86116)
|
sl@0
|
929 |
|
sl@0
|
930 |
* gthread/gthread-impl.c, gthread/gthread-posix.c,
|
sl@0
|
931 |
gthread/gthread-solaris.c: Do the same for the posix/dce
|
sl@0
|
932 |
implementation. Solaris still needs to set priority of the main
|
sl@0
|
933 |
thread, because all unbound threads will schedule according to
|
sl@0
|
934 |
that value and it defaults to 0 (the minimal value).
|
sl@0
|
935 |
|
sl@0
|
936 |
* glib/gmain.c: Factor out g_main_context_init_pipe from
|
sl@0
|
937 |
g_main_context_new to initialize the wakeup pipe of a
|
sl@0
|
938 |
context. Call that function from g_main_context_new if threads are
|
sl@0
|
939 |
initialized and for all contexts when threads are initialized
|
sl@0
|
940 |
in g_main_thread_init. (#86872)
|
sl@0
|
941 |
|
sl@0
|
942 |
* gthread/gthread-impl.c: Call g_main_thread_init. (#86872)
|
sl@0
|
943 |
|
sl@0
|
944 |
Thu Jul 25 14:23:15 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
945 |
|
sl@0
|
946 |
* glib/gfileutils.c: Clarify the behavior of g_build_path()
|
sl@0
|
947 |
for empty elements and for leading and trailing copies
|
sl@0
|
948 |
of the separator in the docs.
|
sl@0
|
949 |
|
sl@0
|
950 |
* glib/gfileutils.c: Fix problems with leading elements
|
sl@0
|
951 |
consisting only of "/" characters. (#85928, Guillaume Chazarain)
|
sl@0
|
952 |
|
sl@0
|
953 |
* tests/strfunc-test.c (main): Add more test cases
|
sl@0
|
954 |
for g_build_filename().
|
sl@0
|
955 |
|
sl@0
|
956 |
2002-07-26 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
957 |
|
sl@0
|
958 |
* glib/gunicode.h:
|
sl@0
|
959 |
* glib/gutf8.c (g_utf8_strreverse): New function to revert
|
sl@0
|
960 |
a utf8 string.
|
sl@0
|
961 |
* glib/gpattern.c (g_utf8_reverse): Gone, replaced by
|
sl@0
|
962 |
g_utf8_strreverse. (#87725)
|
sl@0
|
963 |
|
sl@0
|
964 |
Thu Jul 25 20:57:20 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
965 |
|
sl@0
|
966 |
* glib/giochannel.c (g_io_channel_read_line): Fix
|
sl@0
|
967 |
docs for @str_return to conform to the main docs
|
sl@0
|
968 |
and the implementation as to whether the terminator
|
sl@0
|
969 |
is included. (#87964, Jacob Berkman)
|
sl@0
|
970 |
|
sl@0
|
971 |
Thu Jul 25 19:52:41 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
972 |
|
sl@0
|
973 |
* glib/guniprop.c (real_tolower): Handle the
|
sl@0
|
974 |
end of the string properly when max_len is set.
|
sl@0
|
975 |
(#88545, Morten Welinder.) Rename the next_t
|
sl@0
|
976 |
variable to next_type to make cc-mode happy.
|
sl@0
|
977 |
|
sl@0
|
978 |
* glib/gconvert.c (g_iconv_open): Fix missing
|
sl@0
|
979 |
label from previous commit.
|
sl@0
|
980 |
|
sl@0
|
981 |
Thu Jul 25 19:41:03 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
982 |
|
sl@0
|
983 |
* glib/giochannel.c (g_io_channel_get_flags): Fix
|
sl@0
|
984 |
incorrect return value in g_return_val_if_fail
|
sl@0
|
985 |
(#85545, David L. Cooper II)
|
sl@0
|
986 |
|
sl@0
|
987 |
Thu Jul 25 19:12:43 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
988 |
|
sl@0
|
989 |
* glib/giochannel.c (g_io_channel_set_encoding): Clarify
|
sl@0
|
990 |
that only one of the conditions listed in the docs
|
sl@0
|
991 |
need to be true, not all of them. (#87176,
|
sl@0
|
992 |
Sebastian Rittau)
|
sl@0
|
993 |
|
sl@0
|
994 |
* glib/giochannel.c (g_io_channel_read_line): Fix
|
sl@0
|
995 |
description of the return value. (#87754, Manuel Clos)
|
sl@0
|
996 |
|
sl@0
|
997 |
Thu Jul 25 19:02:53 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
998 |
|
sl@0
|
999 |
* glib/gmain.c (g_timeout_add): Remove reference
|
sl@0
|
1000 |
in the docs to @notify parameter. (#87768,
|
sl@0
|
1001 |
Manuel Clos)
|
sl@0
|
1002 |
|
sl@0
|
1003 |
Thu Jul 25 17:57:07 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1004 |
|
sl@0
|
1005 |
* glib/gconvert.c (g_iconv_open): Document the
|
sl@0
|
1006 |
(GIConv)-1 return value on failure. (#87559,
|
sl@0
|
1007 |
Jarek Dukat)
|
sl@0
|
1008 |
|
sl@0
|
1009 |
* glib/gconvert.c (g_iconv_open): Fix potential
|
sl@0
|
1010 |
problems with the assumption that (GIConv)(iconv_t)-1
|
sl@0
|
1011 |
is the same as (GIConv)-1.
|
sl@0
|
1012 |
|
sl@0
|
1013 |
2002-07-15 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
1014 |
|
sl@0
|
1015 |
* glib/gmarkup.h:
|
sl@0
|
1016 |
* glib/gmarkup.c (g_markup_parse_context_get_element): New
|
sl@0
|
1017 |
function to get the currently open element. (#70448)
|
sl@0
|
1018 |
|
sl@0
|
1019 |
2002-07-04 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
sl@0
|
1020 |
|
sl@0
|
1021 |
* tests/*.c: Added #undef G_DISABLE_ASSERT and #undef G_LOG_DOMAIN
|
sl@0
|
1022 |
throughout the files, which didn't already have them. (#87312)
|
sl@0
|
1023 |
|
sl@0
|
1024 |
2002-07-03 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
sl@0
|
1025 |
|
sl@0
|
1026 |
* configure.in: Made the thread flags determination tests first
|
sl@0
|
1027 |
check for the canonical form -pthread[s], then for other
|
sl@0
|
1028 |
possibilities. Also recognize some more platforms. Modeled after
|
sl@0
|
1029 |
patch from Miroslaw Dobrzanski-Neumann <mne@mosaic-ag.com>
|
sl@0
|
1030 |
(#77981).
|
sl@0
|
1031 |
|
sl@0
|
1032 |
* configure.in: Fixed bugs in posix thread priority
|
sl@0
|
1033 |
resolution. Also added AIX priorities. Fix from
|
sl@0
|
1034 |
Laurent Vivier <Laurent.Vivier@bull.net>. (#82599)
|
sl@0
|
1035 |
|
sl@0
|
1036 |
* gthread/gthread-solaris.c: Use thr_min_stack() instead of
|
sl@0
|
1037 |
sysconf (_SC_THREAD_STACK_MIN). if stack_size is 0 on entry to
|
sl@0
|
1038 |
g_thread_create_solaris_impl, also pass 0 to thr_create. Otherwise
|
sl@0
|
1039 |
the stack might be to small for any nontrivial thread. Discovered
|
sl@0
|
1040 |
on intel-solaris by Rajkumar Sivasamy <rajkumar.siva@wipro.com>.
|
sl@0
|
1041 |
|
sl@0
|
1042 |
2002-07-03 Anders Carlsson <andersca@gnu.org>
|
sl@0
|
1043 |
|
sl@0
|
1044 |
* configure.in: Add a forgotten trailing ` in the
|
sl@0
|
1045 |
GLIB_BINARY_AGE expression. Also fixup LT_CURRENT.
|
sl@0
|
1046 |
|
sl@0
|
1047 |
2002-07-02 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
sl@0
|
1048 |
|
sl@0
|
1049 |
* configure.in: Set binary age to 0 to make it compile.
|
sl@0
|
1050 |
|
sl@0
|
1051 |
* configure.in: Improve checks for dce/posix threads to also do
|
sl@0
|
1052 |
the right thing, if the thread functions are not declared in
|
sl@0
|
1053 |
pthread.h. Idea from Miroslaw Dobrzanski-Neumann
|
sl@0
|
1054 |
<mne@mosaic-ag.com> in #77981.
|
sl@0
|
1055 |
|
sl@0
|
1056 |
2002-07-01 Anders Carlsson <andersca@gnu.org>
|
sl@0
|
1057 |
|
sl@0
|
1058 |
* configure.in: Up version to 2.1.0.
|
sl@0
|
1059 |
|
sl@0
|
1060 |
2002-07-01 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
sl@0
|
1061 |
|
sl@0
|
1062 |
* glib/garray.h: Add parenthesis to protect macro
|
sl@0
|
1063 |
argument. Spotted by Sam Couter <sam@topic.com.au>. (#86826)
|
sl@0
|
1064 |
|
sl@0
|
1065 |
2002-06-28 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
sl@0
|
1066 |
|
sl@0
|
1067 |
* glib/gmessages.h (g_assert, g_assert_not_reached,
|
sl@0
|
1068 |
g_return_if_fail, g_return_val_if_fail): In case of
|
sl@0
|
1069 |
G_DISABLE_ASSERT replace "G_STMT_START{ }G_STMT_END" with
|
sl@0
|
1070 |
"G_STMT_START{ (void)0; }G_STMT_END", because the former chokes
|
sl@0
|
1071 |
gcc prior to 3.0. (#86664)
|
sl@0
|
1072 |
|
sl@0
|
1073 |
2002-06-26 Yanko Kaneti <yaneti@declera.com>
|
sl@0
|
1074 |
|
sl@0
|
1075 |
* configure.in: (ALL_LINGUAS) Added Bulgarian (bg).
|
sl@0
|
1076 |
|
sl@0
|
1077 |
Thu Jun 13 16:12:04 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1078 |
|
sl@0
|
1079 |
* glib/gmain.c (struct _GTimeoutSource): Make
|
sl@0
|
1080 |
interval unsigned to match g_timeout_source_new().
|
sl@0
|
1081 |
(#82624, Tim Janik.)
|
sl@0
|
1082 |
|
sl@0
|
1083 |
* glib/gmain.c (g_timeout_prepare): Add some
|
sl@0
|
1084 |
extra gymnastics to avoid signed/unisgned integer
|
sl@0
|
1085 |
overflows.
|
sl@0
|
1086 |
|
sl@0
|
1087 |
Thu Jun 13 15:57:46 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1088 |
|
sl@0
|
1089 |
* INSTALL.in: Add a note about the deficiency
|
sl@0
|
1090 |
of Tru64 iconv. (#81699, Manuel Op de Coul)
|
sl@0
|
1091 |
|
sl@0
|
1092 |
Tue Jun 11 17:03:39 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1093 |
|
sl@0
|
1094 |
* tests/patterntest.c (test_compilation)
|
sl@0
|
1095 |
* glib/gmem.c (profiler_try_realloc): A couple
|
sl@0
|
1096 |
of 64-bit printf format fix from George Lebl.
|
sl@0
|
1097 |
(#82817)
|
sl@0
|
1098 |
|
sl@0
|
1099 |
* glib/gconvert.c (open_converter): Fix gsize/gint
|
sl@0
|
1100 |
mixup for g_iconv() arguments. (#83270,
|
sl@0
|
1101 |
David L. Cooper II)
|
sl@0
|
1102 |
|
sl@0
|
1103 |
2002-06-03 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
1104 |
|
sl@0
|
1105 |
* glib/gwin32.c (g_win32_get_package_installation_directory):
|
sl@0
|
1106 |
Replace homegrown "hash" entity by standard ISO entity "num".
|
sl@0
|
1107 |
|
sl@0
|
1108 |
2002-05-26 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
1109 |
|
sl@0
|
1110 |
* glib/gmain.c: Remove references to nonexisting functions
|
sl@0
|
1111 |
g_source_set_callback_closure(), g_source_poll(), g_source_add()
|
sl@0
|
1112 |
from docs.
|
sl@0
|
1113 |
|
sl@0
|
1114 |
* glib/gdir.c (g_dir_open): Typo fix in docs.
|
sl@0
|
1115 |
|
sl@0
|
1116 |
* glib/gasyncqueue.c (g_async_queue_lock):
|
sl@0
|
1117 |
(g_async_queue_unref_and_unlock): Fix markup to avoid erroneous
|
sl@0
|
1118 |
<link>s in docs.
|
sl@0
|
1119 |
|
sl@0
|
1120 |
* glib/gwin32.c: Escape #'s leading to erroneous <link>s in docs.
|
sl@0
|
1121 |
|
sl@0
|
1122 |
* glib/gtree.c: Replace some occurances of Gtree by GTree in docs.
|
sl@0
|
1123 |
|
sl@0
|
1124 |
* glib/gstring.c (g_string_insert_unichar): Typo fix in docs.
|
sl@0
|
1125 |
|
sl@0
|
1126 |
2002-05-23 Havoc Pennington <hp@redhat.com>
|
sl@0
|
1127 |
|
sl@0
|
1128 |
* glib/gspawn.c (fork_exec_with_pipes): on success, close the
|
sl@0
|
1129 |
pipes from the child. Fix from Tim.
|
sl@0
|
1130 |
|
sl@0
|
1131 |
2002-05-22 jacob berkman <jacob@ximian.com>
|
sl@0
|
1132 |
|
sl@0
|
1133 |
* m4macros/glib-gettext.m4 (AM_GLIB_WITH_NLS): fix tyop
|
sl@0
|
1134 |
|
sl@0
|
1135 |
Wed May 22 15:40:47 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1136 |
|
sl@0
|
1137 |
* README.in: Remove notes about now-fixed-bugs.
|
sl@0
|
1138 |
|
sl@0
|
1139 |
* m4macros/glib-gettext.m4 acinclude.m4: Get rid
|
sl@0
|
1140 |
of AC_MSG_NOTICE() usage, since some broken systems
|
sl@0
|
1141 |
(Hi Debian!) might not be using autoconf-2.5x for
|
sl@0
|
1142 |
downstream packages even though we require it for
|
sl@0
|
1143 |
glib itself.
|
sl@0
|
1144 |
|
sl@0
|
1145 |
* INSTALL.in: Add a note about installing extra
|
sl@0
|
1146 |
converters for Solaris.
|
sl@0
|
1147 |
|
sl@0
|
1148 |
* glib/gutils.h (g_bit_nth_msf): Fix termination
|
sl@0
|
1149 |
condition. (#82582, Paolo Molaro)
|
sl@0
|
1150 |
|
sl@0
|
1151 |
Tue May 21 15:51:17 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1152 |
|
sl@0
|
1153 |
* configure.in: $with_libiconv, not $with_iconv.
|
sl@0
|
1154 |
|
sl@0
|
1155 |
Mon May 20 18:02:46 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1156 |
|
sl@0
|
1157 |
* configure.in: Move iconv tests before gettext
|
sl@0
|
1158 |
checks. (#81999)
|
sl@0
|
1159 |
|
sl@0
|
1160 |
* m4macros/glib-gettext.m4 acinclude.m4: If we can't
|
sl@0
|
1161 |
link to gettext, try adding in -liconv. (#80076,
|
sl@0
|
1162 |
Boyd Lynn Gerber)
|
sl@0
|
1163 |
|
sl@0
|
1164 |
* m4macros/glib-gettext.m4 acinclude.m4: Suppress
|
sl@0
|
1165 |
warnings about xgettext not being GNU gettext when
|
sl@0
|
1166 |
libintl wasn't found at all.
|
sl@0
|
1167 |
(#79016, Andrew P. Lentvorski, Jr.)
|
sl@0
|
1168 |
|
sl@0
|
1169 |
2002-05-21 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
1170 |
|
sl@0
|
1171 |
* glib/gmarkup.c (g_markup_parse_context_parse): Added
|
sl@0
|
1172 |
proper support for CDATA sections.
|
sl@0
|
1173 |
|
sl@0
|
1174 |
2002-05-20 jacob berkman <jacob@ximian.com>
|
sl@0
|
1175 |
|
sl@0
|
1176 |
* glib/gdir.c: include sys/types.h before dirent.h to build on
|
sl@0
|
1177 |
darwin (fixes #72859)
|
sl@0
|
1178 |
|
sl@0
|
1179 |
Mon May 20 15:35:59 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1180 |
|
sl@0
|
1181 |
* glib/gfileutils.c (get_contents_regfile): Fix double
|
sl@0
|
1182 |
close of file descriptor on error. (#82139, Wayne Schuller)
|
sl@0
|
1183 |
|
sl@0
|
1184 |
* glib/gspawn.c (close_and_invalidate): Don't close
|
sl@0
|
1185 |
fd's that have already been closed. (Fix from Michael
|
sl@0
|
1186 |
Meeks, #81959)
|
sl@0
|
1187 |
|
sl@0
|
1188 |
* glib/giochannel.c (g_io_channel_close): If not flushing,
|
sl@0
|
1189 |
dump the contents of the write buffers, so we won't try
|
sl@0
|
1190 |
to write them to an invalid fd later. (Patch from Ron Steinke,
|
sl@0
|
1191 |
fixing #78290, Andreas Persenius.)
|
sl@0
|
1192 |
|
sl@0
|
1193 |
2002-05-18 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
1194 |
|
sl@0
|
1195 |
* tests/markups/fail-36.gmarkup:
|
sl@0
|
1196 |
* tests/markups/fail-35.gmarkup:
|
sl@0
|
1197 |
* tests/markups/valid-8.gmarkup:
|
sl@0
|
1198 |
* tests/markups/valid-7.gmarkup:
|
sl@0
|
1199 |
* tests/markups/valid-6.gmarkup:
|
sl@0
|
1200 |
* tests/markups/valid-5.gmarkup: New testcases.
|
sl@0
|
1201 |
|
sl@0
|
1202 |
* tests/markup-test.c (passthrough_handler):
|
sl@0
|
1203 |
(text_handler): Don't ignore the text_len parameter.
|
sl@0
|
1204 |
|
sl@0
|
1205 |
* glib/gmarkup.c (find_current_text_end): Don't hang on embedded
|
sl@0
|
1206 |
nuls. (#81977)
|
sl@0
|
1207 |
(g_markup_parse_context_parse): Fix passthrough handling to
|
sl@0
|
1208 |
correctly skip processing instructions, comments, doctype
|
sl@0
|
1209 |
declarations and CDATA marked sections. (#81977)
|
sl@0
|
1210 |
|
sl@0
|
1211 |
Sat May 18 00:21:51 2002 Tim Janik <timj@gtk.org>
|
sl@0
|
1212 |
|
sl@0
|
1213 |
[merged from stable]
|
sl@0
|
1214 |
|
sl@0
|
1215 |
* glib/gscanner.c (g_scanner_unexp_token): fix missing cases for
|
sl@0
|
1216 |
expected_token.
|
sl@0
|
1217 |
|
sl@0
|
1218 |
2002-05-17 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
1219 |
|
sl@0
|
1220 |
* config.h.win32.in: Match new additions in a configure-produced
|
sl@0
|
1221 |
config.h.
|
sl@0
|
1222 |
|
sl@0
|
1223 |
* glibconfig.h.win32.in: gssize and gsize as in a
|
sl@0
|
1224 |
configure-produced glibconfig.h.
|
sl@0
|
1225 |
|
sl@0
|
1226 |
* glib/glib.def: Add new functions.
|
sl@0
|
1227 |
|
sl@0
|
1228 |
Thu May 16 12:24:00 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1229 |
|
sl@0
|
1230 |
* acinclude.m4 m4macros/glib-gettext.m4: Incorporate
|
sl@0
|
1231 |
AM_LC_MESSAGES, AM_PATH_PROG_WITH_TEST as AM_GLIB_* to avoid
|
sl@0
|
1232 |
dependencies on gettext m4 files. (#81885, Hidetoshi Tajima.)
|
sl@0
|
1233 |
|
sl@0
|
1234 |
2002-05-14 Alex Larsson <alexl@redhat.com>
|
sl@0
|
1235 |
|
sl@0
|
1236 |
* glib/gstrfuncs.c:
|
sl@0
|
1237 |
* glib/gstrfuncs.h:
|
sl@0
|
1238 |
New functions g_str_has_suffix and g_str_has_prefix.
|
sl@0
|
1239 |
|
sl@0
|
1240 |
* tests/string-test.c: (main):
|
sl@0
|
1241 |
Test the new functions.
|
sl@0
|
1242 |
|
sl@0
|
1243 |
Mon May 13 23:20:00 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1244 |
|
sl@0
|
1245 |
* autogen.sh (have_gettext): Add a check for GNU gettext.
|
sl@0
|
1246 |
(Pointed out by Dan Winship in #59386.)
|
sl@0
|
1247 |
|
sl@0
|
1248 |
Mon May 13 11:55:33 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1249 |
|
sl@0
|
1250 |
* configure.in acglib.m4: If sizeof(int) == sizeof(long)
|
sl@0
|
1251 |
run compilation tests to determine which way gsize should
|
sl@0
|
1252 |
be defined. (#74413, reported by Miroslaw Dobrzanski-Neumann)
|
sl@0
|
1253 |
|
sl@0
|
1254 |
Mon May 13 11:42:23 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1255 |
|
sl@0
|
1256 |
* glib/libcharset/*: Update from libcharset CVS.
|
sl@0
|
1257 |
Includes additional encodings for Solaris (#80396,
|
sl@0
|
1258 |
Qingjiang Yuan)
|
sl@0
|
1259 |
|
sl@0
|
1260 |
* configure.in: Add getc_unlocked to CHECK_FUNCS().
|
sl@0
|
1261 |
|
sl@0
|
1262 |
* glib/gmessages.c (strdup_convert): If
|
sl@0
|
1263 |
g_convert_with_fallback() fails, print the error
|
sl@0
|
1264 |
message to stderr the first time, then return
|
sl@0
|
1265 |
the original string. (#78197)
|
sl@0
|
1266 |
|
sl@0
|
1267 |
2002-05-10 Naba Kumar <kh_naba@users.sourceforge.net>
|
sl@0
|
1268 |
|
sl@0
|
1269 |
* configure.in: Added "hi" to ALL_LINGUAS.
|
sl@0
|
1270 |
|
sl@0
|
1271 |
2002-05-08 Michael Natterer <mitch@gimp.org>
|
sl@0
|
1272 |
|
sl@0
|
1273 |
* configure.in: fixed yesterdays fix for cross compiling: simply
|
sl@0
|
1274 |
check the variable "cross_compiling" which gets set by autoconf.
|
sl@0
|
1275 |
|
sl@0
|
1276 |
2002-05-07 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
1277 |
|
sl@0
|
1278 |
* glib/gmarkup.c (unescape_text): Report unfinished entity
|
sl@0
|
1279 |
references as errors rather than running into an assert. (#80441)
|
sl@0
|
1280 |
|
sl@0
|
1281 |
2002-05-07 Michael Natterer <mitch@gimp.org>
|
sl@0
|
1282 |
|
sl@0
|
1283 |
* configure.in: added a new conditional CROSS_COMPILING which
|
sl@0
|
1284 |
indicates ($build != $host). If it is set, look for
|
sl@0
|
1285 |
glib-genmarshal in PATH. Error out if it was not found.
|
sl@0
|
1286 |
|
sl@0
|
1287 |
Tue May 7 11:24:22 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1288 |
|
sl@0
|
1289 |
Fixes for #79347, Ron Arts.
|
sl@0
|
1290 |
|
sl@0
|
1291 |
* glib/gqsort.c (g_qsort_with_data): Handle 0 elements,
|
sl@0
|
1292 |
don't g_return_if_fail().
|
sl@0
|
1293 |
|
sl@0
|
1294 |
* tests/qsort-test.c (main): Add a 0 element test.
|
sl@0
|
1295 |
|
sl@0
|
1296 |
* glib/garray.c (g_[ptr_]array_sort_with[_data]):
|
sl@0
|
1297 |
Remove invalid assertions that array->pdata != NULL ..
|
sl@0
|
1298 |
it's NULL for 0 elements which is a valid case.
|
sl@0
|
1299 |
|
sl@0
|
1300 |
Mon May 6 16:00:41 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1301 |
|
sl@0
|
1302 |
* glib/gbacktrace.h: Exclude OSF from alpha definition
|
sl@0
|
1303 |
of G_BREAKPOINT(), since the assembler apparently
|
sl@0
|
1304 |
doesn't support bpt. (#77852, Gareth Pierce) [from stable]
|
sl@0
|
1305 |
|
sl@0
|
1306 |
Mon May 6 11:48:08 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1307 |
|
sl@0
|
1308 |
[ merged from stable ]
|
sl@0
|
1309 |
|
sl@0
|
1310 |
* Makefile.am (EXTRA_DIST): Add ChangeLog.pre-2-0 (#78641)
|
sl@0
|
1311 |
|
sl@0
|
1312 |
* m4macros/glib-2.0.m4: save CFLAGS/LIBS properly when
|
sl@0
|
1313 |
compiling "what went wrong" test case. (#79330)
|
sl@0
|
1314 |
|
sl@0
|
1315 |
* m4macros/glib-2.0.m4: Remove reference to editing
|
sl@0
|
1316 |
pkg-config script. (From Jim Gettys)
|
sl@0
|
1317 |
|
sl@0
|
1318 |
* configure.in: (Look for dyld interfaces before dlopen()
|
sl@0
|
1319 |
since OS X can have both. Patch from Jacob Berkman,
|
sl@0
|
1320 |
#80438)
|
sl@0
|
1321 |
|
sl@0
|
1322 |
2002-05-01 jacob berkman <jacob@ximian.com>
|
sl@0
|
1323 |
|
sl@0
|
1324 |
* configure.in: fix typo on 64-bit printf formatting string
|
sl@0
|
1325 |
configure message (fixes #80389)
|
sl@0
|
1326 |
|
sl@0
|
1327 |
2002-04-29 Pablo Saratxaga <pablo@mandrakesoft.com>
|
sl@0
|
1328 |
|
sl@0
|
1329 |
* configure.in: Added Vietnamese (vi) to ALL_LINGUAS
|
sl@0
|
1330 |
|
sl@0
|
1331 |
2002-04-19 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
1332 |
|
sl@0
|
1333 |
* glib/gspawn.c (g_spawn_command_line_sync): Add Windows-specific
|
sl@0
|
1334 |
note to the gtk-doc comment.
|
sl@0
|
1335 |
|
sl@0
|
1336 |
* glib/gspawn-win32.c: Remove the copy-pasted gtk-doc comment
|
sl@0
|
1337 |
blocks. It's enough to have them in gspawn.c.
|
sl@0
|
1338 |
|
sl@0
|
1339 |
2002-04-18 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
sl@0
|
1340 |
|
sl@0
|
1341 |
* gthread/gthread-impl.c (g_thread_init): Fixed typo. (#78985)
|
sl@0
|
1342 |
|
sl@0
|
1343 |
2002-04-13 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
sl@0
|
1344 |
|
sl@0
|
1345 |
* glib/gthreadpool.c (g_thread_pool_thread_proxy): Unlock the pool
|
sl@0
|
1346 |
for all threads leaving it. (#78348)
|
sl@0
|
1347 |
|
sl@0
|
1348 |
2002-04-11 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
1349 |
|
sl@0
|
1350 |
* tests/patterntest.c: Remove manual UTF-8 -> Latin1 conversion for
|
sl@0
|
1351 |
stuff fed to g_print.
|
sl@0
|
1352 |
|
sl@0
|
1353 |
2002-04-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
sl@0
|
1354 |
|
sl@0
|
1355 |
* tests/gio-test.c, tests/markup-test.c: Use gsize instead of
|
sl@0
|
1356 |
gint. From Miroslaw Dobrzanski-Neumann
|
sl@0
|
1357 |
<mne@mosaic-ag.com>. (#77982)
|
sl@0
|
1358 |
|
sl@0
|
1359 |
2002-04-08 Stanislav Brabec <utx@penguin.cz>
|
sl@0
|
1360 |
|
sl@0
|
1361 |
* cs.po: Added Czech (cs) to ALL_LINGUAS.
|
sl@0
|
1362 |
|
sl@0
|
1363 |
2002-03-31 Hasbullah Bin Pit <sebol@ikhlas.com>
|
sl@0
|
1364 |
|
sl@0
|
1365 |
* configure.in: Added Malay (ms)to ALL_LINGUAS.
|
sl@0
|
1366 |
|
sl@0
|
1367 |
2002-03-29 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
1368 |
|
sl@0
|
1369 |
* glib/glib.def: Add g_convert_init.
|
sl@0
|
1370 |
|
sl@0
|
1371 |
Thu Mar 28 18:25:14 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1372 |
|
sl@0
|
1373 |
* Released 2.0.1
|
sl@0
|
1374 |
|
sl@0
|
1375 |
* configure.in: Version 2.0.1, interface, binary age 1.
|
sl@0
|
1376 |
|
sl@0
|
1377 |
Thu Mar 28 18:22:53 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1378 |
|
sl@0
|
1379 |
* README: Remove warning about g_print, etc, encoding.
|
sl@0
|
1380 |
|
sl@0
|
1381 |
* NEWS: Updates.
|
sl@0
|
1382 |
|
sl@0
|
1383 |
* glib/gmessages.c (g_log_default_handler): Use %lu
|
sl@0
|
1384 |
(plus a cast) when printing out pid_t arguments.
|
sl@0
|
1385 |
(#76770, Morten Welinder)
|
sl@0
|
1386 |
|
sl@0
|
1387 |
* glib/gstrfuncs.c (g_strdup_vprintf): Check the
|
sl@0
|
1388 |
result of vasprintf(), return NULL on failure.
|
sl@0
|
1389 |
(#76802, Akira Tagoh)
|
sl@0
|
1390 |
|
sl@0
|
1391 |
* tests/testglib.c (TEST): Supress a warning with
|
sl@0
|
1392 |
some GCC versions.
|
sl@0
|
1393 |
|
sl@0
|
1394 |
Thu Mar 28 20:31:51 2002 Tim Janik <timj@gtk.org>
|
sl@0
|
1395 |
|
sl@0
|
1396 |
* glib/gmessages.c:
|
sl@0
|
1397 |
(g_print):
|
sl@0
|
1398 |
(g_printerr): convert prtinf() strings to local charset
|
sl@0
|
1399 |
when writing them to stdout or stderr.
|
sl@0
|
1400 |
|
sl@0
|
1401 |
Wed Mar 27 18:42:22 2002 Tim Janik <timj@gtk.org>
|
sl@0
|
1402 |
|
sl@0
|
1403 |
* gmessages.[hc]:
|
sl@0
|
1404 |
major cleanups. introduced _g_log_fallback_handler() to handle
|
sl@0
|
1405 |
recursive messages which really doesn't call any GLib functions.
|
sl@0
|
1406 |
this allowes the default handler to use normal GLib functions and
|
sl@0
|
1407 |
also fixes user supplied log level handlers.
|
sl@0
|
1408 |
fixed locking issues, based on a patch from Sebastian Willhelmi,
|
sl@0
|
1409 |
attached to #74356. translate log messages from UTF-8, based
|
sl@0
|
1410 |
on the same patch. save fatal and recursion flags across flag
|
sl@0
|
1411 |
loop. use new integer format code from above patch.
|
sl@0
|
1412 |
move GLib functions out of locked mutex state to avoid deadlocks.
|
sl@0
|
1413 |
move the level prefix and filedescriptor logic into mklevel_prefix().
|
sl@0
|
1414 |
move _g_debug_init() into a place where we can figure and handle
|
sl@0
|
1415 |
recursion.
|
sl@0
|
1416 |
|
sl@0
|
1417 |
Mon Mar 25 18:13:06 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1418 |
|
sl@0
|
1419 |
* glib/gtypes.h (GUINT*_SWAP_LE_BE_X86): Remove __const__
|
sl@0
|
1420 |
qualifier from __asm__ statements... GCC since at least
|
sl@0
|
1421 |
2.96 has assumed no side effects automaticaly, and gcc-3.1
|
sl@0
|
1422 |
will warn about this usage. (#73308, Cody Russell)
|
sl@0
|
1423 |
|
sl@0
|
1424 |
Fri Mar 22 17:59:27 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1425 |
|
sl@0
|
1426 |
* glib/gmem.c (g_mem_chunk_reset): Fix problem where
|
sl@0
|
1427 |
if g_mem_chunk_reset() is called on an alloc-only
|
sl@0
|
1428 |
memchunk, then a useles GTree was created.
|
sl@0
|
1429 |
|
sl@0
|
1430 |
Wed Mar 20 18:20:21 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1431 |
|
sl@0
|
1432 |
* glib/gconvert.c (open_converter): Try to work around segfaults
|
sl@0
|
1433 |
on Solaris if NULL is passed for outbuf... supposedly gchar
|
sl@0
|
1434 |
*outbuf = NULL... &outbuf works. (#74336, Lauri Alanko)
|
sl@0
|
1435 |
|
sl@0
|
1436 |
Wed Mar 20 11:17:32 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1437 |
|
sl@0
|
1438 |
* glib/gfileutils.c (get_contents_regfile): Close the
|
sl@0
|
1439 |
file descriptor. (#75507, Matthias Clasen)
|
sl@0
|
1440 |
|
sl@0
|
1441 |
Wed Mar 20 11:00:59 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1442 |
|
sl@0
|
1443 |
* configure.in: Use $PKG_CONFIG, not pkg-config.
|
sl@0
|
1444 |
(LEE Sau Dan, #75572)
|
sl@0
|
1445 |
|
sl@0
|
1446 |
2002-03-20 Sven Neumann <sven@gimp.org>
|
sl@0
|
1447 |
|
sl@0
|
1448 |
* glib/ghash.c (g_hash_table_resize): avoid repeated call of
|
sl@0
|
1449 |
g_spaced_primes_closest() by moving it out of the CLAMP macro
|
sl@0
|
1450 |
(spotted by Salmaso Raffaele).
|
sl@0
|
1451 |
|
sl@0
|
1452 |
2002-03-17 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
1453 |
|
sl@0
|
1454 |
* README.win32: Add MSVC-specific text by Hans Breuer.
|
sl@0
|
1455 |
|
sl@0
|
1456 |
2002-03-16 Tor Lillqvist <tml@iki.fi>
|
sl@0
|
1457 |
|
sl@0
|
1458 |
* glib/giowin32.c: Some debugging output formatting changes. The
|
sl@0
|
1459 |
following changes fix a problem with buffered GIOChannels, noticed
|
sl@0
|
1460 |
with the help of Owen's test program, thanks! (#59969)
|
sl@0
|
1461 |
(g_io_win32_prepare): Return value that takes the buffer condition
|
sl@0
|
1462 |
into account, like g_io_unix_prepare() does.
|
sl@0
|
1463 |
(g_io_win32_check): Ditto, like g_io_unix_check().
|
sl@0
|
1464 |
(g_io_win32_dispatch): Ditto, like g_io_unix_dispatch().
|
sl@0
|
1465 |
|
sl@0
|
1466 |
Thu Mar 14 17:37:45 2002 Owen Taylor <otaylor@redhat.com>
|
sl@0
|
1467 |
|
sl@0
|
1468 |
* glib/giochannel.c (g_io_channel_write_chars): Fix some
|
sl@0
|
1469 |
gsize/gint mismatches. (#74422, Miroslaw Dobrzanski-Neumann)
|
sl@0
|
1470 |
|
sl@0
|
1471 |
2002-03-14 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
sl@0
|
1472 |
|
sl@0
|
1473 |
* glib/gmessages.c: Fixed threading issues brought up by
|
sl@0
|
1474 |
#74577. Make g_log_find_domain, g_log_domain_new,
|
sl@0
|
1475 |
g_log_domain_check_free and g_log_domain_get_handler require being
|
sl@0
|
1476 |
called with g_messages_lock held and remove all internal locking
|
sl@0
|
1477 |
in them. Then added proper locking to g_log_set_handler,
|
sl@0
|
1478 |
g_log_remove_handler and g_logv. Problem spotted by Miroslaw
|
sl@0
|
1479 |
Dobrzanski-Neumann <mne@mosaic-ag.com>. (#74577)
|
sl@0
|
1480 |
|
sl@0
|
1481 |
2002-03-13 Erwann Chenede <erwann.chenede@sun.com>
|
sl@0
|
1482 |
* glib/gconvert.c
|
sl@0
|
1483 |
glib/gen-unicode-tables.pl
|
sl@0
|
1484 |
glib/gunidecomp.h : fixed cast/type problems to
|
sl@0
|
1485 |
avoid warnings (with forte compiler) (#73898)
|
sl@0
|
1486 |
|
sl@0
|
1487 |
2002-03-12 Alexander Larsson <alla@lysator.liu.se>
|
sl@0
|
1488 |
|
sl@0
|
1489 |
* glib/gconvert.c:
|
sl@0
|
1490 |
Cache getenv("G_BROKEN_FILENAMES") in have_broken_filenames() and
|
sl@0
|
1491 |
use instead. Add g_convert_init() that calls have_broken_filenames()
|
sl@0
|
1492 |
|
sl@0
|
1493 |
* gthread/gthread-impl.c:
|
sl@0
|
1494 |
Have g_thread_init call g_convert_init.
|
sl@0
|
1495 |
|
sl@0
|
1496 |
2002-03-11 Matthias Clasen <maclas@gmx.de>
|
sl@0
|
1497 |
|
sl@0
|
1498 |
* glib/gstrfuncs.c (g_strtod):
|
sl@0
|
1499 |
(g_ascii_strtod):
|
sl@0
|
1500 |
(g_ascii_dtostr):
|
sl@0
|
1501 |
(g_ascii_formatd): Doc formatting fixes.
|
sl@0
|
1502 |
|