Add USE_LIBICONV.
[platform/upstream/glib.git] / ChangeLog.pre-2-8
1 2000-11-13  Tor Lillqvist  <tml@iki.fi>
2
3         * config.h.win32.in: Add USE_LIBICONV.
4
5         * gconvert.c: Check G_OS_WIN32 only after including glib.h. 
6
7         * glib.def: Update.
8
9 2000-11-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
10
11         * gthread.c (g_static_rec_mutex_*): Made recursive mutexes also
12         work when the thread system is not (yet) initialized.
13
14 Sun Nov 12 18:34:32 2000  Owen Taylor  <otaylor@redhat.com>
15
16         * gconvert.[ch]: Create wrapper functions for iconv()
17         so that we can transparently use the native iconv, 
18         libiconv, or (in the future) a mini-iconv included
19         with glib.
20
21         * glib-config-2.0.in glib-2.0.pc.in: Include @ICONV_LIBS@
22
23         * INSTALL: Added note about libiconv.
24
25         * configure.in: Add checks for libiconv from pango. If
26         EILSEQ is not defined in errno.h add define for it into
27         glibconfig.h so g_iconv can use it. (Note, recompiling
28         from a system without EILSEQ to a system with EILSEQ
29         will break binary compatibility)
30
31 2000-11-12  Robert Brady  <robert@suse.co.uk>
32
33         * gstrfuncs.c, gstrfuncs.h: Remove g_filename_{to,from}_utf8
34
35         * gconvert.c, gconvert.h: Add g_filename_{to,from}_utf8 and
36         g_locale_{to.from}_utf8.  The locale_ variant honours 
37         nl_langinfo(CODESET), the filename_ variant uses UTF-8 unless
38         asked otherwise.
39
40         (g_convert): Add G_CONVERT_ERROR_PARTIAL_INPUT error, if bytesread
41         != length and no bytesread pointer passed.
42
43 Sun Nov 12 15:29:53 2000  Owen Taylor  <otaylor@redhat.com>
44
45         * gfileutils.[ch]: template is a reserved word in
46         C++ s/template/tmpl/. 
47
48 2000-11-11  Havoc Pennington  <hp@pobox.com>
49
50         * gmarkup.c (g_markup_parse_context_parse): Handle a long stream
51         of bytes containing no UTF-8 character starts
52
53 2000-11-11  Tor Lillqvist  <tml@iki.fi>
54
55         * glib.def: Add missing entry points.
56
57         * gfileutils.c (g_mkstemp): Improve chance to generate unique
58         names with less effort a bit.
59
60         * gfileutils.h: Add g_file_open_tmp() declaration.
61
62         * testglib.c: Include <io.h> on Win32.
63
64         * makefile.mingw.in: Correct the way to invoke sub-makes.
65
66 Sun Nov  5 13:20:54 2000  Owen Taylor  <otaylor@redhat.com>
67
68         * glib-object.h: Add gtypemodule.h
69
70 2000-11-11  Tor Lillqvist  <tml@iki.fi>
71
72         * gfileutils.c (g_file_open_tmp): New function, suggested by Havoc
73         earlier this month.
74         (g_mkstemp): Use only one case for letters in temp file name, as
75         this will be used on systems with case-insensitive file systems.
76
77         * testglib.c (main): Test g_mkstemp() and g_file_open_tmp().
78
79 2000-11-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
80
81         * gthreadpool.c: Don't take other threads with other priorities
82         into account as changing the priority is highly
83         unportable. (Actually using it at all already is unportable, but
84         even sometimes where that works, changing priority is not
85         possible).
86
87 2000-11-05  Havoc Pennington  <hp@pobox.com>
88
89         * gmarkup.h: rename G_MARKUP_FOO to
90         G_MARKUP_DO_NOT_USE_THIS_UNSUPPORTED_FLAG
91
92         * gmarkup.c: don't start doc comments with "Returns"
93         
94 2000-11-05  Havoc Pennington  <hp@pobox.com>
95
96         * gmarkup.c: inline docs
97         (unescape_text): properly check strtoul for failure.
98         
99         * gerror.c (g_propagate_error): Free the src error if the dest
100         location is NULL - I'm pretty sure that's what this function was 
101         supposed to do.
102
103 2000-11-05  Havoc Pennington  <hp@pobox.com>
104
105         * gutils.c (g_find_program_in_path): cleanup docs, sync param 
106         names to those in the header
107
108         * gfileutils.c (g_mkstemp): clean up docs
109
110         * gshell.h: sync param names with param names in .c file
111
112         * gfileutils.h (enum GFileTest): remove trailing comma from last
113         member, confuses gtk-doc
114
115         * gmarkup.h: s/GMarkupErrorType/GMarkupError/g; to follow
116         convention
117
118 2000-11-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
119
120         * gasyncqueue.c: Added documentation for asyncronous queues.
121
122         * gspawn.c: Include sys/select.h (some platforms need it for
123         select). 
124
125         * gspawn.c: Changed unportable __FUNCTION__ to the verbatim
126         function name.
127
128 2000-10-31  Tor Lillqvist  <tml@iki.fi>
129
130         * gutils.c
131         * gutils.h
132         * gfileutils.c
133         * gfileutils.h: Actually, g_mkstemp() is better suited in gfileutils.
134
135 2000-10-30  Tor Lillqvist  <tml@iki.fi>
136
137         * configure.in: Check for mkstemp.
138
139         * gutils.c (g_mkstemp): New function. If HAVE_MKSTEMP, just call
140         it, otherwise use code lifted from glibc.
141
142         * gutils.h: Declare it.
143
144         * glib.def: Here, too. Plus two missing functions.
145
146 2000-10-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
147
148         * gcache.h, gcache.c, ghash.h, ghash.c, grel.c, grel.h, gtypes.h:
149         Introduced new function type GEqualFunc to return TRUE for equal
150         params. This is now used instead of GCompareFunc (which should
151         work akin to strcmp) here. This kind of fixes Bug #14412. Note
152         that technically GCompareFunc and GEqualFunc are still the same
153         types, as gint == gboolean.
154
155         * ghash.h, gutils.c: g_int_equal and g_direct_equal now return
156         gboolean to be really become GEqualFunc.
157
158         * gscanner.c, testglib.c, tests/hash-test.c: Some tiny changes to
159         follow the above change.
160
161 2000-10-27  Tor Lillqvist  <tml@iki.fi>
162
163         * makefile.{mingw,msc}.in (glib_OBJECTS): Add gmarkup.
164
165         * glib.def: Add missing functions.
166
167         * tests/makefile.{mingw,msc}.in (TESTS): Add markup-test.
168
169 2000-10-24  Havoc Pennington  <hp@pobox.com>
170
171         * gmarkup.h, gmarkup.c: New module to parse a simple
172         markup language
173         
174         * Makefile.am: add gmarkup.h, gmarkup.c
175
176         * tests/Makefile.am: add markup-test
177
178         * gstring.h (g_string_new_len): new function to create a string
179         with a length
180         (g_string_new): avoid a gratuitous realloc
181
182 2000-10-26  Tor Lillqvist  <tml@iki.fi>
183
184         * makefile.{mingw,msc}.in: Cosmetics.
185
186 2000-10-26  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
187
188         * gstrfuncs.c (g_strsplit): When the string is ended by a
189         delimiter, return an extra empty string just like for a delimiter
190         at the start of the string. This makes the function behave more
191         consitent and also fixes Bug #15026.
192
193 Tue Oct 24 22:09:14 2000  Tim Janik  <timj@gtk.org>
194
195         * glib-object.h: added newly added gobject/ headers.
196
197         * gmesage.c: print g_message() output to stderr instead of stdout.
198
199 2000-10-23  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
200
201         * configure.in: Use one = instead of two, which is plainly wrong.
202
203 2000-10-19  Tor Lillqvist  <tml@iki.fi>
204
205         * makefile.msc.in: Pass -DGSPAWN_HELPER when building it. Link
206         with user32.lib.
207
208         * gspawn-win32.c
209         * gfileutils.c: Make them compile with picky MSVC.
210
211         * gwin32.h: New file. Move Win32-only stuff that isn't related to
212         GIOChannels here from giochannel.h.
213
214         * Makefile.am: Add it here.
215
216         * giochannel.h: Move stuff to gwin32.h.
217
218         * glib.h: On Win32, include gwin32.h.
219
220 Mon Sep 11 10:03:24 2000  Owen Taylor  <otaylor@redhat.com>
221
222         * glib.h convert.c (g_convert_with_fallback): Change
223         ERROR_OTHER to ERROR_FAILED, add some dummy marking with _().
224
225         * docs/reference/glib/glib-sections.txt
226         docs/reference/glib/glib-docs.sgml Update for g_convert,
227         g_unicode_validate.
228
229 2000-10-16  Tor Lillqvist  <tml@iki.fi>
230
231         * glibconfig.h.win32.in: Remove alloca stuff from here. galloca.h
232         takes care of it, correctly.
233
234         * giowin32.c (reader_thread): Some more debugging output.
235         (g_io_channel_win32_poll): Remove unused vars.
236
237         * gfileutils.c: Changes for Win32, with no unistd.h and no
238         S_ISLNK().
239
240         * gspawn-win32.c: Implementation of the g_spwan_* functions for
241         Win32. Due to the general non-Unixness of Win32, much of the
242         functionality that is relatively clean to implement on Unix, is
243         hard to do on Win32. We must use a separate helper program to
244         change directory, close extra file descriptors, redirect the std
245         ones, as needed, and only then start the child process. No child
246         process pid can be returned, unfortunately. Or if we used
247         CreateProcess directly, it probably could. (Now we use the spawnv*
248         functions from msvcrt.)
249
250         * Makefile.am (EXTRA_DIST): Add gspawn-win32.c
251
252         * glib.def: Add new entry points.
253
254         * glib.def
255         * giowin32.c: Remove g_io_channel_win32_wait_for_condition(),
256         g_io_channel_win32_poll() subsumes it.
257
258         * gbacktrace.h: G_BREAKPOINT for MSVC (on the ix86).
259
260         * gwin32.c (g_win32_getlocale): Use "sp" for
261         LANG_CROATIAN+SUBLANG_SERBIAN_LATIN.
262
263         * makefile.{mingw,msc}.in (glib_OBJECTS): Add new files.
264         Add gspawn-win32-helper.exe rule.
265
266         * tests/makefile.{mingw,msc}.in (TESTS): Add shell-test and
267         spawn-test.
268
269         * tests/spawn-test.c: (run_tests): On Win32, don't try to run
270         /bin/sh, but ipconfig (no special significance in choosing that,
271         just a program that outputs something to stdout).
272
273 2000-10-15  Raja R Harinath  <harinath@cs.umn.edu>
274
275         Remove need for acconfig.h, and misc. cleanups.
276         * acglib.m4 (GLIB_SIZEOF): Add 'autoheader' comment to
277         AC_DEFINE_UNQUOTED.
278         (GLIB_BYTE_CONTENTS): Likewise.
279
280         * configure.in: Add 'autoheader' comments to all AC_DEFINE(...)
281         and AC_DEFINE_UNQUOTED(...) lines.
282         Replace AC_MSG_CHECKING/AC_CACHE_VAL with AC_CACHE_CHECK.
283         (AM_PROG_LIBTOOL): Move after AC_PROG_CC.
284         
285         * acconfig.h: Empty out.
286
287         * Makefile.am (BUILT_EXTRA_DIST): New variable.  List 'dist'able
288         files that are created in the builddir.
289         (dist-hook): Handle those files.
290         (libglib_1_3_la_SOURCES): Remove @ALLOCA@.  @ALLOCA@ should only
291         be used in an _LDADD or _LIBADD, since it expands (if necessary)
292         to 'alloca.o'.
293
294         * tests/Makefile.am (BUILT_EXTRA_DIST): New variable.
295         (dist-hook): Handle $(BUILT_EXTRA_DIST).
296         
297 2000-10-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
298
299         * grand.c: Added inline documentation. 
300
301         * gtypes.h, gnode.h, gutils.h: Readded GFreeFunc,
302         g_node_insert_after and g_find_program_in_path resp., which
303         mysteriously disappeared during the glib.h dissection.
304
305 2000-10-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
306
307         * glibconfig.h.win32.in: Adapted accordingly to header separation
308         and GLIB_HAVE_ALLOCA_H renaming.
309
310         * Makefile.am: Added the new headers to glibinclude_HEADERS.
311
312         * glib.h: Forgot to include gerror.h.
313
314         * glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
315         gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
316         ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
317         gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
318         grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
319         gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
320         into many header files mostly according to the resp. *.c-files.
321         
322         * gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
323         of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
324         __END_DECLS.
325
326         * configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
327         gunicode.h, : Changed guard-macro names to something more
328         consistent.
329
330         * configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
331
332         * configure.in: Defined GLIB_HAVE_ALLOCA_H instead of including
333         alloca.h in glibconfig.h, GLIB_HAVE_ALLOCA_H is used in glib.h.
334
335         * configure.in: Removed cruft from old threading code.
336
337 2000-10-09  Raja R Harinath  <harinath@cs.umn.edu>
338
339         Work with beta autoconf 2.50.
340         * configure.in (GLIB_MAJOR_VERSION): Use GLIB_DIVERT_BEFORE_HELP
341         instead of AC_DIVERT_PUSH(),AC_DIVERT_POP.
342         (AC_CHECK_HEADERS): Remove redundant AC_DEFINE(HAVE_...).
343         (REALLOC_0_WORKS): Move AC_DEFINE outside AC_CACHE_VAL.
344         (dlopen): Quote nested AC_CHECK_... calls.
345
346         * acglib.m4 (GLIB_TR_SH, GLIB_TR_CPP): Utility macros copied from
347         beta autoconf 2.50.
348         (GLIB_DIVERT_BEFORE_HELP): New macro that works both with autoconf
349         2.13 and beta autoconf 2.50.
350         (GLIB_SIZEOF, GLIB_BYTECONTENTS): Use GLIB_TR_*.
351
352         * Makefile.am (CONFIGURE_DEPENDENCIES): Use this to specify
353         that 'configure' depends on acglib.m4.
354
355 2000-10-09  Havoc Pennington  <hp@redhat.com>
356
357         * Makefile.am, tests/Makefile.am: Add new files.
358
359         * tests/spawn-test.c, tests/shell-test.c: new tests for
360         the shell/spawn stuff
361
362         * gutils.c (g_find_program_in_path): convert a relative
363         program name into an absolute pathname to an existing 
364         executable
365
366         * gspawn.h, gspawn.c: New fork/exec API
367
368         * gshell.h, gshell.c: Shell-related utilities, at the moment
369         simply routines to parse argv and quote/unquote strings
370
371         * guniprop.c (g_unichar_isspace): Return TRUE for the 
372         ASCII space characters isspace() returns TRUE for.
373
374         * gfileutils.c (g_file_get_contents): Convenience function 
375         to slurp entire file into a string and return it. Partially
376         written by Joel Becker.
377         (g_file_test): file test function
378
379 2000-10-06  Tor Lillqvist  <tml@iki.fi>
380
381         * makefile.msc.in: Revamp to be like makefile.mingw.in, make
382         the MSVC build actually work again.
383
384         * gmodule/makefile.msc.in
385         * gobject/makefile.msc.in
386         * gthread/makefile.msc.in: New files, like their mingw counterparts.
387
388         * gmodule/Makefile.am
389         * gobject/Makefile.am
390         * gthread/Makefile.am: Make and distribute them.
391
392         * */makefile.mingw.in: Allow override of GLib version number from
393         the build/win32/module.defs file.
394
395         * glib.def: Add new entry point.
396
397         * tests/gio-test.c (main): Fix the Win32-only code to use current
398         API, g_io_channel_win32_make_pollfd() and g_io_channel_win32_poll().
399
400         Fixes from Hans Breuer:
401
402         * glib.h (struct DIR): Keep the last readdir result cached inside
403         the DIR struct, to enable several DIRs being open simultaneously.
404
405         * gwin32.c (g_win32_readdir): Use the above instead of static.
406
407         * giowin32.c (g_io_channel_win32_make_pollfd): Insert cast to keep
408         MSVC happy.
409
410 2000-10-05  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
411
412         * glib.h: Changed alloca stuff a bit: when we have a working
413         alloca.h, we're not messing with alloca any further. Should fix a
414         bug reported by Bernd Demian <wega@csc-dd.de>.
415
416 2000-09-29  Jonathan Blandford  <jrb@redhat.com>
417
418         * gnode.c (g_node_insert_after): Added function to keep symetry
419         with g_node_insert_before. 
420
421 2000-09-29  Martin Baulig  <baulig@suse.de>
422
423         Several minor ANSI C fixes.
424
425         Added missing casts:
426         * gdate.c (g_date_fill_parse_tokens): `s = (guchar *) str'.
427         * gmain.c (g_idle_dispatch): `func = (GSourceFunc) source_data'.
428         (g_idle_add_full): `(gpointer) function' in call to g_source_add().
429         * gstrfuncs.c (g_strdown): `s = (guchar *) string' and
430         `return (gchar *) string'.
431         (g_strup): Likewise.
432         (g_strchug): `start = (guchar*) string' in 1st for() argument;
433         `strlen ((gchar *) start)' in call to g_memmove().
434         * gstring.c (g_string_down): `s = (guchar *) string->str'.
435         (g_string_up): Likewise.
436         * gthreadpool.c (stop_this_thread_marker):
437         `(gpointer) &g_thread_pool_new'.
438         * gunidecomp.h (decomp_table[]): Cast all the strings to
439         `unsigned char *'.
440
441         Put text following #endif into comments:
442         * gmain.c: here.
443
444 2000-09-29  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
445
446         * configure.in, glib.h: Added errorcheck mutexes. These are
447         activated through the preprocessor symbol
448         G_ERRORCHECK_MUTEXES. Need to add an extra word to StaticMutex in
449         order to achieve this. g_(static_)mutex_* functions instrument the
450         mutex operations with mutex name and location, when compiled with
451         -DG_ERRORCHECK_MUTEXES. g_thread_init activates the errorcheck
452         mutexes, when compiled with -DG_ERRORCHECK_MUTEXES.
453
454 2000-09-28  Havoc Pennington  <hp@pobox.com>
455
456         * glib.h (GThreadPriority): fix indentation
457         (GConvertError): generic error is conventionally called
458         _FAILED rather than _OTHER, at least at the moment, 
459         according to GError docs in docs/reference.
460
461         * gconvert.c: s/_OTHER/_FAILED/
462
463 2000-09-28  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
464
465         * configure.in: Adjusted the test for an unimplemented
466          getpwuid_r. Info from Michael Pruett. This is just a forward
467          merge from glib-1-2.
468
469         * configure.in: Moved determination of G_THREAD_FLAGS before
470         G_THREAD_LIBS. Check for UnixWare systems and set the right cflags
471         and libs there (it needs -Kthread for the native compiler and
472         -pthread for gcc). Thanks to Boyd Lynn Gerber <gerberb@zenez.com>
473         for the info.
474
475         * configure.in: Fail immediately, when no thread library is found,
476         instead of continuing searching for rt libs etc. Changed almost
477         all occurances of $enable_threads to $have_threads, as that's,
478         what we want.
479
480         * tests/threadpool-test.c: Define vars inside the guard to avoid
481         warnings.
482
483         * configure.in, tests/type-test.c: Some platforms support 64 bit
484         'long long', but you can not printf or scanf them. In that case,
485         don't define G_G{UINT|INT}64_FORMAT. Changed the type-test program
486         to reflect that.
487
488         * gutils.c (g_get_current_dir): max_len can't be initialized
489         statically as it might call a function. So do it at first call.
490
491 Tue Sep 26 2000 Elliot Lee <sopwith@redhat.com>
492         * glib.h: Add G_GNUC_PURE macro (but don't use it anywhere).
493
494 Mon Sep 25 2000 Elliot Lee <sopwith@redhat.com>
495         * garray.c, glib.h, gmem.c: Add a few missing G_GNUC_CONST's.
496
497 2000-09-21  Tor Lillqvist  <tml@iki.fi>
498
499         * makefile.mingw.in: Add gconvert.o. Use libiconv.
500
501         * config.h.win32.in: Define HAVE_GETCWD.
502
503         * glib.def: Add new entry points.
504
505 2000-09-21  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
506
507         * configure.in: The last released automake (1.4) still requires
508         AM_PROG_LIBTOOL instead of AC_PROG_LIBTOOL, so use that for the
509         time being.
510
511 2000-09-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
512
513         * acconfig.h, configure.in, gutils.c: Test for the existence of
514         getcwd, and use it only when found.
515
516         * glib.h: Only use the gcc-variable-macro-argument-extension for
517         gcc >= 2.4. Both patches from Jonas Oberg <jonas@gnu.org>.
518
519 Mon Sep 18 10:58:21 2000  Owen Taylor  <otaylor@redhat.com>
520
521         * gutf8.c: Implement g_ucs4_to_utf8 which was in
522         the header file but not implemented.
523
524 Sun Sep 17 2000 Elliot Lee <sopwith@redhat.com>
525
526         * glib.h configure.in: Define g_alloca() as an
527         alloca-that-works-anywhere.
528
529         * gconvert.c: Fix warnings which could have caused problems on
530         64-bit platforms.
531
532 Sun Sep 10 12:37:40 2000  Owen Taylor  <otaylor@redhat.com>
533
534         * glib.h gconvert.c (g_convert): Havoc Pennington's implementation 
535         of convenient character set conversion using iconv, with
536         the addition of GError. We probably need a fallback that
537         just does conversions between, say UTF-8,16,32 and ISO-8859-1
538         for targets without iconv at all.
539
540         Also add g_convert_with_fallback() to take care of conversions 
541         where we accept some loss going to the target encoding.
542
543 2000-09-10  Havoc Pennington  <hp@redhat.com>
544
545         * gutf8.c (g_utf8_validate): Add this function.
546
547 Sat Sep  9 18:50:42 2000  Owen Taylor  <otaylor@redhat.com>
548
549         * gstrfuncs.c (g_strescape): Add a missing g_return_if_fail().
550
551 Mon Aug 21 03:57:46 2000  Tim Janik  <timj@gtk.org>
552
553         * glib.h (G_BREAKPOINT): for non-i386 and non-alpha, or non gcc,
554         implement BREAKPOINT() as raise (5 /* SIGTRAP */);
555
556         * glib.h: provide user-definable switch G_IMPLEMENT_INLINES,
557         to turn on compilation of inline function implementations provided
558         in header files with extern linkage.
559         wrap inline function implementations into ifdef __G_UTILS_C__, so we
560         really only compile them for gutils.c and not also into arbitrary user
561         code that wants to make use of G_IMPLEMENT_INLINES.
562         adjusted comment apropriately.
563
564         * gutils.c: to turn on compilation of inline functions, provide
565         #define G_IMPLEMENT_INLINES 1 and #define __G_UTILS_C__.
566
567 2000-09-06  Havoc Pennington  <hp@redhat.com>
568
569         * gerror.c: docs
570
571         * docs/reference/glib/tmpl/error_reporting.sgml: docs
572
573 Wed Sep  6 10:28:34 2000  Owen Taylor  <otaylor@redhat.com>
574
575         * guniprop.c gunicode.h gutf8.c: Some inline docs fixes.
576
577 2000-09-06  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
578
579         * glib.h, gtimer.c, tests/thread-test.c:
580         s/G_MICROSEC/G_USEC_PER_SEC/
581
582         * glib.h: Removed G_G{U}{SHORT|INT|LONG}_FORMAT from glib.h, as
583         they are really superfluous.
584
585 Tue Sep  5 20:16:27 2000  Owen Taylor  <otaylor@redhat.com>
586
587         * configure.in docs/Makefile.am: Add gtk-doc checks
588         for newly added docs/reference/ subdir.
589
590 2000-09-05  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
591
592         * gthread.c (g_thread_error_quark): Don't use a G_LOCK, as it
593         isn't necessary.
594
595 2000-09-01  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
596
597         * gstring.c (g_string_free): Use g_return_val_if_fail instead of
598         g_return_if_fail, as the function now is supposed to return
599         something.
600
601         * gerror.c, gerror.h (g_propagte_error): Added function
602         g_propagte_error to hand over local errors to the calling
603         function.
604
605         * glib.h: Include gerror.h before it is used for some g_thread_*
606         functions.
607
608         * gthread.c, gthreadpool.c, glib.h: Enable error reporting for
609         thread creation, namly for g_thread_create, g_thread_pool_new,
610         g_thread_pool_push and g_thread_pool_set_max_threads.
611
612         * tests/thread-test.c, tests/threadpool-test.c: Adapted
613         accordingly.
614
615 2000-08-31  Tor Lillqvist  <tml@iki.fi>
616
617         * glib.h
618         * glib.def
619         * giowin32.c (g_io_channel_win32_make_pollfd): New function, to
620         make a GPollFD from a GIOChannel. Creates the events and starts
621         the reader thread if necessary.
622
623         * glib.h
624         * giowin32.c (g_io_channel_win32_poll): No use for separate
625         condition parameter.
626
627         * gmain.c (g_get_current_time): (Win32): Simplify, use
628         GetSystemTimeAsFileTime().
629
630 2000-08-27  Tor Lillqvist  <tml@iki.fi>
631
632         * giowin32.c (g_io_channel_win32_poll): New function, otherwise
633         like g_io_channel_win32_wait_for_condition(), but accept several
634         GPollFDs.
635         (g_io_channel_win32_wait_for_condition): Call
636         g_io_channel_win32_poll().
637
638         * glib.h: Declare g_io_channel_win32_poll().
639
640         * gwin32.c (g_win32_error_message): Don't believe return value
641         from FormatMessage.
642
643 2000-08-25 Elliot Lee <sopwith@redhat.com>
644
645         * glib.h, gunicode.h, gmodule/gmodule.h:
646         : Mark the following functions G_GNUC_CONST (to allow
647         optimization) because their results are a function of only their parameters:
648         g_int_hash, g_int_equal, g_direct_hash, g_direct_equal, g_quark_to_string,
649         g_date_is_leap_year, g_date_days_in_month, g_date_monday_weeks_in_year,
650         g_date_sunday_weeks_in_year, g_spaced_primes_closest, g_unichar_is*,
651         g_unichar_to*, g_unichar_*digit_value, g_unichar_type
652
653 2000-08-21 Elliot Lee <sopwith@redhat.com>
654
655         * gobject/Makefile.am, gobject/gobject-query.c, gobject/gparamspecs.c: Fix inclusion of
656         config.h
657
658 Mon Aug 21 14:46:23 2000  Owen Taylor  <otaylor@redhat.com>
659
660         * tests/gio-test.c: Fix a couple of trivial bugs that
661         were causing warnings.
662
663 Mon Aug 21 14:39:36 2000  Owen Taylor  <otaylor@redhat.com>
664
665         * glib.h: Use C99 varargs macros where possible 
666         (check __STDC_VERSION__), otherwise, on gcc, use an alternate 
667         form of gcc varargs which is more likely
668         to be supported going forward. (Based on some code
669         from Raja Harinath)
670
671 2000-08-17  Darin Adler  <darin@eazel.com>
672
673         * glib.h:
674         * garray.c: (g_array_free), (g_ptr_array_free),
675         (g_byte_array_free): Return the data left behind.
676         * gstring.c: (g_string_free): Return the data left behind.
677
678         Changed the free calls that leave data behind so they
679         return a pointer to the left-behind data, NULL if told not
680         to leave anything behind. This makes these calls easier
681         to use correctly, without any incompatible API change for
682         callers that don't know about the return value. Of course,
683         it would be even clearer if the free calls weren't dual-purpose
684         in the first place.
685
686 2000-08-12  Tor Lillqvist  <tml@iki.fi>
687
688         * giowin32.c: Some indentation and spacing fixes. Add some more
689         logging.
690         (g_io_win32_add_watch): New function, with common code from
691         g_io_win32_fd_add_watch and g_io_win32_sock_add_watch. Don't start
692         more than one reader thread for a GIOChannel. We should obviously
693         have just one reader thread reading a file descriptor or socket.
694
695 2000-08-10  Havoc Pennington  <hp@redhat.com>
696
697         * gthread-2.0.pc.in (Cflags): don't duplicate glib Cflags
698
699         * gmodule-2.0.pc.in (Cflags): don't duplicate glib Cflags
700
701         * gobject-2.0.pc.in (Cflags): don't duplicate Cflags from glib
702         itself
703
704 2000-08-10  Havoc Pennington  <hp@redhat.com>
705
706         * glib-2.0.pc.in (Cflags): Look in glib-2.0/include for
707         glibconfig.h
708
709 2000-08-07  Tor Lillqvist  <tml@iki.fi>
710
711         * tests/gio-test.c (shutdown_source): New function, that calls
712         g_source_remove(). Check return value of g_source_remove(), and
713         decrement running subprocess counter only if g_source_remove()
714         actually did remove the source.
715
716         (recv_message): Call shutdown_source() on EOF condition. Return
717         FALSE on G_IO_HUP and G_IO_ERR condition. Fix printf format typo.
718
719 Sun Aug  6 20:06:02 2000  Tim Janik  <timj@gtk.org>
720
721         * gmessages.c (g_log_domain_check_free): keep *last updated while
722         running through the domain list, so we don't screw up the removal,
723         patch provided by Gady Kozma <gadykozma@hotmail.com>.
724
725 Sun Aug  6 20:03:41 2000  Tim Janik  <timj@gtk.org>
726
727         * gmessages.c (g_log_remove_handler): keep *last updated while running
728         through the handler list, so we don't screw up the removal.
729
730 Sun Jul 30 16:54:13 2000  Owen Taylor  <otaylor@redhat.com>
731
732         * gunicode.h: Fix stray character
733
734         * gutf8.c (g_unichar_to_utf8): Allow outbuf to be NULL, in
735         which case we just compute the length.
736
737 2000-07-31  Havoc Pennington  <hp@redhat.com>
738
739         * Makefile.am (EXTRA_DIST): forgot to add .pc.in to EXTRA_DIST
740
741 2000-07-31  Havoc Pennington  <hp@redhat.com>
742
743         * glib-2.0.pc.in, gobject-2.0.pc.in, gmodule-2.0.pc.in,
744         gobject-2.0.pc.in: pkg-config data files         
745
746         * Makefile.am: Install/dist the .pc files
747
748         * configure.in: Output the .pc files
749
750 2000-07-31  Tor Lillqvist  <tml@iki.fi>
751
752         * giowin32.c (buffer_read): The code didn't compile (must
753         have been sleepy when committing). "return" instead of "break"
754
755         (g_io_win32_fd_add_watch): Cannot check if the file descriptor is
756         readable by calling ReadFile to read zero bytes. ReadFile blocks
757         on NT even if trying to read nothing at all. So, don't check if
758         file descriptor is readable; assume this function isn't called
759         otherwise.
760
761 Sun Jul 30 10:44:16 2000  Tim Janik  <timj@gtk.org>
762
763         * gmain.c (g_get_current_time): fix tor's recent changes which
764         got rid of a required variable in the non-windows path.
765
766 2000-07-30  Tor Lillqvist  <tml@iki.fi>
767
768         Finally, a new and improved IO Channel and condition watch
769         implementation for Win32. Based on code provided by Craig Setera.
770
771         When watching file descriptors, for which there is no select()
772         like functionality on Win32 that would work on all Win32 platforms
773         for all types of file descriptors (including anonymous pipes), we
774         start a new thread that blocks while trying to read from the file
775         descriptor. When the read returns, a Win32 Event is signalled that
776         the polling routine eventually notices. Meanwhile, the data being
777         read is stored in a circular buffer, from where the IO channel's
778         read() method picks it up.
779
780         If the buffer fills up the reading thread has to wait for space
781         becoming available. For this another Win32 Event is used. The IO
782         Channel's read() method signals this when it has read some data
783         out of the buffer.
784
785         The separate reader thread(s), and the circular buffer(s) with
786         associated events mean lots of possibilities for fun parallellism
787         errors. But it seems to work OK, i.e. GIMP runs.
788
789         * gmain.c: Small changes to the Win32 polling function.
790         (g_main_win32_get_poll_func): New function. Perhaps it would be a
791         good idea to provide this on all platforms.
792
793         * giowin32.c: The bulk of the new implementation.
794         (g_io_channel_win32_wait_for_condition): New function. To be used
795         where on Unix one does a select() on the channel's fd, like
796         libgimp's gimp_extension_process(). Could be provided on all
797         platforms.
798
799         * glib.h: Update documentation for IO Channels on Win32. Remove
800         the declarations for the as of now obsolete old functions related
801         to IO Channels for pipes with "wakeup" messages.
802
803         * glib.def: Some new functions.
804
805         * tests/gio-test.c: New file, to test GIOChannel and main loop.
806
807         * tests/Makefile.am
808         * tests/makefile.mingw.in: Add it.
809
810         (Later the same night:)
811
812         * giowin32.c: Compile in the debugging code all the time, but only
813         output debug messages if told so. Add (unadvertised) function to
814         turn on/off debug messages for a channel.
815
816         (buffer_read): Don't loop. It is expected behaviour to return a
817         short read occasionally, for instance when reading from
818         pipes. It's the calling code that should loop if it *knows* how
819         much the writer has written.
820
821         * tests/gio-test.c: Correct the program's name in the output.
822         (recv_message): Loop calling g_io_channel_read() (in a new
823         function read_all()) until we have all the bytes we want (that we
824         know the writer has written/will write).
825
826 Thu Jul 27 05:15:11 2000  Tim Janik  <timj@gtk.org>
827
828         * gstrfuncs.c (g_strlcpy, g_strlcat): completed tor's fix
829         to cover both #ifdef branches.
830
831 2000-07-26  Tor Lillqvist  <tml@iki.fi>
832
833         * gstrfuncs.c (g_strlcpy, g_strlcat): Return 0 on error, not NULL.
834
835         * glib.def: Add g_strlcpy, g_strlcat.
836
837         * glibconfig.h.win32.in: Add gsize and gssize.
838
839 Wed Jul 26 12:59:31 2000  Tim Janik  <timj@gtk.org>
840
841         * *.[hc]: applied patch from Andreas Persenius <ndap@swipnet.se> that
842         updates the license headers to the GNU Lesser General Public License,
843         as well as updating the copyright year to 2000.
844
845 Wed Jul 26 05:47:48 2000  Tim Janik  <timj@gtk.org>
846
847         * configure.in:
848         * testglib.c:
849         * gstrfuncs.c:
850         * glib.h: added g_strlcat() and g_strlcpy() wrappers, supplied by
851         David Wheeler <dwheeler@ida.org>:
852
853         * glib.h, gstrfuncs.c: added g_strlcpy and g_strlcat to support
854           safe manipulation of fixed-length string buffers.
855           These functions were originally developed by Todd Miller to simplify
856           development of security-related programs, and
857           are available on many (but not all) Unix-like systems,
858           including OpenBSD, FreeBSD, and Solaris.  See
859           ftp://ftp.openbsd.org/pub/OpenBSD/src/lib/libc/string/strlcpy.3
860           and http://www.openbsd.org/security.html.
861           If there's a strlcpy/strlcat on the system, it's called, otherwise
862           an implementation is provided.
863
864         * testglib.c: Added tests for g_strlcpy, g_strlcat.
865
866 Wed Jul 26 05:03:24 2000  Tim Janik  <timj@gtk.org>
867
868         * acglib.m4 (GLIB_SIZEOF): include <stdlib.h> and <stddef.h> if
869         STDC_HEADERS is defined.
870
871         * glib.h:
872         * glibconfig.h: define gsize and gssize in terms of GLIB_SIZEOF_SIZE_T
873
874         * glib.h (g_return_if_reached): applied darin's fix for copy'n
875         paste error in the macro implementation.
876
877 Wed Jul 26 00:46:03 2000  Tim Janik  <timj@gtk.org>
878
879         * glib.h: applied patch from Darin Adler <darin@eazel.com> which
880         supplies g_return_if_reached(), g_return_val_if_reached() and
881         g_critical().
882
883 2000-07-22  Tor Lillqvist  <tml@iki.fi>
884
885         * build-dll: Fix resource handling, the resource file got left out
886         from the DLL after all... Remove the WIN32APIHEADERS, not needed
887         with current windres.
888
889         * glib.def: Add new functions.
890
891 2000-07-20  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
892
893         * gutils.c, glib.h: Mark the functions g_basename and g_dirname
894         deprecated. They will issue an warning once, when compiled with
895         G_ENABLE_DEBUG, but continue to work as before. Instead the
896         functions g_path_get_basename and g_path_get_dirname should be
897         used, which BOTH return newly allocated memory, that has to freed
898         by g_free. The new g_path_get_basename now strips trailing slashes
899         from the path. This fixes #5097. For discussion see
900         http://mail.gnome.org/pipermail/gtk-devel-list/2000-April/003139.html
901
902         * gwin32.c, testglib.c, tests/dirname-test.c: Use the new
903         functions instead of the old ones.
904
905         * ghash.c, gscanner.c, glib.h: Mark the functions
906         g_hash_table_freeze, g_hash_table_thaw and thus
907         g_scanner_freeze_symbol_table and g_scanner_thaw_symbol_table
908         deprecated. They will issue an warning once, when compiled with
909         G_ENABLE_DEBUG. This fixes Bug #3883. For discussion see
910         http://mail.gnome.org/pipermail/gtk-devel-list/2000-April/003139.html
911
912 2000-07-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
913
914         * configure.in, glib.h: glibconfig.h and glib.h now include files
915         outside of the extern "C" block. Makes some C++ compiler
916         happy. Reported by Denis Vakatov <vakatov@peony.nlm.nih.gov>.
917
918 Sat Jul 15 23:49:03 2000  Owen Taylor  <otaylor@redhat.com>
919
920         * glib/glib.texi: Remove incomplete start of info file -
921         real docs are in RDP.   
922
923 Sat Jul 15 22:44:22 2000  Owen Taylor  <otaylor@redhat.com>
924
925         * configure.in: Add build/Makefile and 
926         build/win32/Makefile to AC_OUTPUT() so things build
927         again.
928
929 Sat Jul 15 09:11:46 2000  Tim Janik  <timj@gtk.org>
930
931         * gstrfuncs.c (g_strncasecmp): fixed an off by 0 error (yeah,
932         the function went off when the while (n--) loop failed due to
933         n==0 ;), reported by Jean-Louis HAMEL <jlhamel@club-internet.fr>.
934
935 2000-07-15  Tor Lillqvist  <tml@iki.fi>
936
937         * Makefile.am (SUBDIRS): Include the "build" module in GLib, too,
938         to make it more self-contained. If your CVS client doesn't
939         automatically get it, do a cvs get build in glib.
940
941         * */makefile.mingw.in: Include make.mingw from build in the glib
942         source directory.
943
944 Fri Jul 14 16:26:35 2000  Owen Taylor  <otaylor@redhat.com>
945
946         * Release 1.3.1
947
948 Fri Jul 14 12:22:49 2000  Owen Taylor  <otaylor@redhat.com>
949
950         * configure.in Makefile.am glib-config.m4 glib.m4: Move
951         glib-config to glib-config-2.0 move glib.m4 to
952         glib-2.0.m4
953
954         * Makefile.am gobject/Makefile.am gmodule/Makefile.am
955         gthread/Makefile.am tests/Makefile.am: Change 
956         library names to libglib-1.3.la, etc, so that we
957         can distinguish glib-1.2 and glib-2.0 on the linkline.
958
959         * Makefile.am gobject/Makefile.am gmodule/Makefile.am:
960         Move include files into /usr/include/glib-2.0.
961
962 Thu Jul  6 18:54:49 2000  Owen Taylor  <otaylor@redhat.com>
963
964         * docs/Makefile.am (EXTRA_DIST): Remove info files
965         from the build.
966
967 2000-07-14  Tor Lillqvist  <tml@iki.fi>
968
969         * glib.def: Add g_error functions.
970
971         * makefile.mingw.in: Add gbacktrace.o.
972
973         * gbacktrace.c: No need to include <process.h>.
974
975 2000-07-12  Havoc Pennington  <hp@redhat.com>
976
977         * glib.h: #include <gerror.h>
978
979         * Makefile.am (include_HEADERS): Add gerror.h
980         (libglib_la_SOURCES): Add gbacktrace.c
981
982         * gbacktrace.c: Move g_on_error_query() in here (moved on the 
983         server, so history is preserved)
984
985         * gerror.h: GError interface
986
987         * gerror.c: GError implementation replaces stuff that's now in 
988         gbacktrace.c
989
990 Sun Jul  9 21:20:45 2000  Owen Taylor  <otaylor@redhat.com>
991
992         * gunicode.h: Include stddef.h instead of stdlib.h
993
994 2000-07-08  Tor Lillqvist  <tml@iki.fi>
995
996         * glib.h (GLIB_VAR): Rename the GUTILS_C_VAR macro to GLIB_VAR.
997
998         * gunicode.h: Mark the g_utf8_skip array with GLIB_VAR.
999
1000         * glib.def: Add two missing entry points.
1001
1002 Thu Jul  6 15:35:28 2000  Owen Taylor  <otaylor@redhat.com>
1003
1004         * Release 1.3.1
1005
1006         * Makefile.am (EXTRA_DIST): Dist fixes.
1007
1008         * configure.in: Moderate the warnings just a little bit.
1009
1010 2000-07-05  Tor Lillqvist  <tml@iki.fi>
1011
1012         * README.win32: Update.
1013
1014 Mon Jul  3 17:58:02 2000  Owen Taylor  <otaylor@redhat.com>
1015
1016         * gutf8.c (g_utf8_get_charset_internal): Fix up
1017         to correspond to configure.in checks.
1018
1019 Mon Jul  3 17:18:19 2000  Owen Taylor  <otaylor@redhat.com>
1020
1021         * glib.h: Comment g_get_codeset() out of the header file
1022         temporarily. (Very similar to g_get_charset(), need
1023         to resolve the two.)
1024
1025 2000-07-01  Tor Lillqvist  <tml@iki.fi>
1026
1027         * glib.def: Add new entry points.
1028
1029         * makefile.{mingw,msc}.in: Add the new Unicode object files.
1030
1031 Thu Jun 29 15:57:28 2000  Owen Taylor  <otaylor@redhat.com>
1032
1033         * NEWS: updated
1034
1035         * Makefile.am: added snapcheck target to go along with snapshot
1036
1037         * gstring.c glib.h (g_string_hash): Add g_string_hash to 
1038         go along with g_string_equal.
1039
1040 Tue Jun 27 12:40:23 EDT 2000  David A. Wheeler <dwheeler@dwheeler.com>
1041
1042         * glib.h: Added g_string_equal for comparing GStrings;
1043         changed g_str_equal so it returns gboolean (instead of gint).
1044
1045         * gstring.c: Modified GString implementation to support embedded
1046         ASCII NUL ('\0') characters, and implemented g_string_equal.
1047
1048         * testglib.c tests/string-test.c: Added tests for g_string_equal
1049         and tests for proper handling of embedded ASCII NUL characters.
1050
1051 Wed Jun 28 22:52:00 2000  Owen Taylor  <otaylor@redhat.com>
1052
1053         * Makefile.am (libglib_la_SOURCES): Fix
1054         gunichartable.h => gunichartables.h. (From Eric Limings)
1055
1056 Fri Jun 23 17:20:26 2000  Tim Janik  <timj@gtk.org>
1057
1058         * glib.h: define gstring in terms of gchar*. this typedef reflects
1059         the type name of the primitive G_TYPE_STRING in the gobject module.
1060
1061 Wed Jun 21 12:09:03 2000  Owen Taylor  <otaylor@redhat.com>
1062
1063         * gunicode.h gutf8.c guniprop.c gunidecomp.[ch] gunichartables.h
1064         Makefile.am glib.h: Initial pass at adding unicode support
1065         functions. A few things still need to be implemented, a bit
1066         of cleanup needs to be done, tests need to be added, and 
1067         the docs need to be finished, but this should allow replacing
1068         most or all use of libunicode.
1069
1070 2000-06-06  Tor Lillqvist  <tml@iki.fi>
1071
1072         * giowin32.c (g_io_channel_win32_pipe_readable): If we are
1073         watching the same pipe for different conditions (with different
1074         callbacks), check them all. Only call the callback for G_IO_IN
1075         from here. (This bug popped up when a watch for G_IO_ERR|G_IO_HUP
1076         was added to gimplib.)
1077
1078 2000-05-30  Tor Lillqvist  <tml@iki.fi>
1079
1080         * gutils.c (g_locale_get_codeset): Implement on Win32.
1081
1082         * glib.def: Add g_get_codeset.
1083
1084         * tests/Makefile.am (EXTRA_DIST): makefile.cygwin* has been
1085         renamed to makefile.mingw*.
1086
1087 Tue May 30 16:01:32 2000  Owen Taylor  <otaylor@redhat.com>
1088
1089         * glib.h gutils.c: Move the g_locale_get_codeset() up in the 
1090         header file to correspond to to comments about memory
1091         management. Rename to g_get_codeset() to avoid 
1092         polluting the g_locale_* namespace, which probably
1093         would have g_locale_get_codeset (GLocale *locale).
1094         Add a doc comment.
1095
1096 Mon May 29 14:10:35 2000  Owen Taylor  <otaylor@redhat.com>
1097
1098         * gutils.c (g_locale_get_codeset): Add function to get the 
1099         codeset name for the current locale.
1100
1101         * configure.in acconfig.h: Add check for nl_langinfo(CODESET);
1102
1103 Fri May 19 11:39:29 2000  Tim Janik  <timj@gtk.org>
1104
1105         * gutils.c (g_snprintf):
1106         (g_vsnprintf): added argument assertments.
1107
1108         * gstring.c (g_string_assign): added argument assertments.
1109         (g_string_truncate): make len a guint.
1110
1111 Fri May 19 09:00:44 2000  Tim Janik  <timj@gtk.org>
1112
1113         * gmem.c (g_free): fixed SIZEOF_LONG==4 assumption with
1114         ENABLE_MEM_CHECK, from Art Haas <ahaas@neosoft.com>.
1115
1116         * gslist.c (g_slist_reverse): shut up compiler.
1117
1118         * gscanner.c (g_scanner_get_token_ll): removed inline assignment.
1119
1120         * garray.c: remove index>=0 checks for unsigned indices.
1121
1122         * gmain.c (g_idle_prepare): timeout assignment fix.
1123
1124         * gtree.c (g_tree_node_rotate_right): shut up compiler.
1125
1126 2000-05-13  Tor Lillqvist  <tml@iki.fi>
1127
1128         * makefile.mingw.in
1129         * tests/makefile.mingw.in
1130         * build-dll: Rename makefile.cygwin(.in) to
1131         makefile.mingw(.in), which better describes what it is. Move the
1132         build of gmodule, gthread and gobject DLLs to makefiles in those
1133         directories. Move resource file handling and build number bump to
1134         build-dll, where it sits much cleaner.
1135
1136         * README.win32
1137         * Makefile.am (EXTRA_DIST): Update accordingly.
1138
1139         * glib.h: Add G_PI, G_PI_2, G_PI_4, G_E, G_LN2, G_LN10 and
1140         G_SQRT2. M_PI etc aren't necessarily in <math.h> in strict ISO C
1141         implementations.
1142
1143         * glib.def: Add g_strcanon.
1144
1145         * gtree.c (g_tree_node_rotate_left): Remove unused variables.
1146
1147         * gwin32.c (g_win32_opendir): Remove unneeded statement.
1148
1149 Thu May  4 02:04:46 2000  Tim Janik  <timj@gtk.org>
1150
1151         * configure.in (STRIP_DUMMY): some Make 3.79 $(strip ) versions are
1152         broken and require an empty arg, give it to them.
1153
1154 Fri Apr 28 23:54:35 2000  Tim Janik  <timj@gtk.org>
1155
1156         * setup things for a new sub-library libgobject:
1157
1158         * Makefile.am (SUBDIRS): added gobject
1159
1160         * glib-config.in: feature -lgobject.
1161
1162         * configure.in (AC_OUTPUT): generate gobject/Makefile.
1163
1164         * glib.m4 (AM_PATH_GLIB): feature gobject module.
1165
1166         * glib.spec.in: added %{prefix}/lib/libgobject-1.3.so.*
1167
1168 Fri Apr 28 21:41:49 2000  Tim Janik  <timj@gtk.org>
1169
1170         * glib.h: added G_STRLOC macro.
1171         G_STRUCT_OFFSET(): signedness corrections.
1172         (G_CSET_DIGITS): list 0-9.
1173         * gscanner.c (g_scanner_config_template): use G_CSET_DIGITS.
1174
1175         * glib.h: 
1176         * gstrfuncs.c:
1177         (g_strdown):
1178         (g_strup):
1179         (g_strreverse): return the modified string instead of void, so
1180         calls to these functions can be nested.
1181         (g_strcanon): new function, canonicalizes string according to
1182         a given character set.
1183
1184 Fri Apr 28 19:45:16 2000  Tim Janik  <timj@gtk.org>
1185
1186         * gasyncqueue.c (g_async_queue_unref): get rid of an unused variable.
1187
1188 Wed May 10 19:52:44 2000  Owen Taylor  <otaylor@redhat.com>
1189
1190         * glib.m4: Print found version when test succeeds.
1191
1192 2000-05-04  Tor Lillqvist  <tml@iki.fi>
1193
1194         * makefile.cygwin.in
1195         * tests/makefile.cygwin.in: Include the common makefile snippet
1196         from ../build/win32.
1197
1198         Maybe CVSROOT/modules should be changed so that the 'build' module
1199         is included within the glib module (and gtk+, and gimp, and maybe
1200         others later), in the same way as the 'macros' module is included
1201         in lots of GNOME CVS modules?
1202
1203 2000-05-02  Tor Lillqvist  <tml@iki.fi>
1204
1205         * glib.def: Add new functions.
1206
1207         * makefile.{cygwin,msc}.in (glib_OBJECTS): Add new object files.
1208
1209         * tests/makefile.{cygwin,msc}.in: Add threadpool-test.
1210
1211 2000-04-28  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1212
1213         * gasyncqueue.c: New File implementing an asynchronous queue to be
1214         used for asynchronous inter-thread communication.
1215
1216         * gthreadpool.c: New File implementing a thread pool to be used
1217         for distributing work among several threads. 
1218
1219         * glib.h: Added the type and function declarations for these two
1220         types.
1221
1222         * tests/threadpool-test.c: New File implementing a test for the
1223         thread pool. This also checks the asynchronous queue underlying
1224         the thread pool.
1225
1226         * tests/Makefile.am: Changed accordingly.
1227
1228 2000-04-26  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1229
1230         * configure.in: Look for both pthread_create and pthread_join in
1231         the thread library. Some systems define one of them, but not both
1232         in libc. Arghh. Now we really start a thread and join it later and
1233         check, whether the thread to actually ran.
1234
1235         * glib.h, gcache.c, gtree.c: Changed the 'value' parameter of
1236         g_cache_remove from gpointer to gconstpointer. Dito for the 'key'
1237         parameter of g_tree_lookup and g_tree_remove and the 'data'
1238         parameter of g_tree_search. This function now takes a function of
1239         type GCompareFunc instead of GSearchFunc. This fixes Bug
1240         #8267. Thanks to Juan Toledo <toledo@users.sourceforge.net> for
1241         pointing that out.
1242
1243         * glib.h: Removed declaration of GSearchFunc.
1244
1245         * gmem.c: s/GSearchFunc/GCompareFunc/.
1246
1247 2000-04-19  Tor Lillqvist  <tml@iki.fi>
1248
1249         * glib.def: Update entry point list.
1250
1251 2000-04-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1252
1253         * glib.h (G_TRYLOCK): Made the debugging G_TRYLOCK call also work
1254         for compilers with funny G_STMT_(START|END) macros.
1255
1256         * tests/thread-test.c: Implemented a check for that.
1257
1258         * gutils.c (g_getenv): Changed the win32 part of this function to
1259         be thread safe and to make the returned environment string
1260         persistent to match the UN*X behavior. This is again a response to
1261         Bug #8983.
1262
1263         * glib.h (G_LOCK_NAME): Removed parentheses around the lock name,
1264         as that seems to cause problems for some compilers and really
1265         isn't necessary.
1266
1267 Wed Apr 19 08:32:32 2000  Tim Janik  <timj@gtk.org>
1268
1269         * gscanner.c (g_scanner_new): make sure that
1270         scanner->config->cset_skip_characters is "" instead of NULL, so we
1271         don't segfault further on.
1272
1273 2000-04-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1274
1275         * glib.h, glist.h, gslist.h: Changed the 'data' parameters from
1276         gpointer to gconstpointer for the functions
1277         g_(list|slist)_(remove|find|find_custom|index), as they do not
1278         change this parameter. This fixes bug #4836.
1279
1280         * glib.h: Changed comment for g_getenv to reflect, that the
1281         returned memory must not be freed. Fixes bug #8983.
1282
1283 2000-04-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1284
1285         * configure.in, acconfig.h: Add configure test for garbage
1286         collector friendliness for GLib. If enabled, ENABLE_GC_FRIENDLY
1287         will be defined.
1288
1289         * garray.c, ghash.c, glist.c, gmain.c, gmem.c, gnode.c, gqueue.c,
1290         gslist.c, gtree.c: If ENABLE_GC_FRIENDLY is defined, NULLify all
1291         memory released by the user, but cached by GLib. This lets a
1292         garbage collector have a more correct view of the actually used
1293         memory.
1294
1295         * garray.c, glib.h: Added g_(array|ptr_array|byte_array)_sized_new
1296         functions, that reserve a certain amount of memeory for the array
1297         at creation time to avoid reallocation. Fixes bug #6707 from
1298         Charles Kerr <ckerr@osserver1.nssl.noaa.gov>.
1299
1300         * glib.h, gqueue.c, tests/queue-test.c (main): Renamed
1301         g_queue_create to g_queue_new in conformance to all other GLib
1302         data types.
1303
1304 2000-04-07  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1305
1306         * grand.c (g_rand_new): Fixed bug. Thanks to Marko Kreen
1307         <marko@l-t.ee> for reporting that.
1308
1309 2000-03-26  Tor Lillqvist  <tml@iki.fi>
1310
1311         * README.win32: Tell about using the mingw-based gcc, which is
1312         much easier than modifying the cygwin gcc to product mingw code
1313         for the msvcrt runtime.
1314
1315         * makefile.cygwin.in (WIN32APIHEADERS): Kludge to make it work
1316         with a "pure" mingw gcc, too.
1317
1318 2000-03-24  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1319
1320         * garray.c: Made GArray behave correctly. Now zero_terminated
1321         really means, that the element array->data[array->len] exists and
1322         is zeroed, and clear means that any unassigned elements obtained
1323         through g_array_set_size (the only way to get unassigned elements
1324         AFAICT) are zeroed. Added some macros to make the code more
1325         obvoius. Also made GPtrArray zero elements after
1326         g_ptr_array_set_size. This is done in a portbale way (assignment
1327         of NULL instead of just memsetting it to zero), though that might
1328         be more portability than we actually want.
1329
1330         * Makefile.am, gthread/Makefile.am, gmodule/Makefile.am,
1331         tests/Makefile.am: Added various win32 related *.in files to
1332         EXTRA_DIST to let 'make distcheck' procude all the corresponding
1333         files, which it silently fails to do currently.
1334
1335 2000-03-23  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1336
1337         * configure.in: After finding the right thread library (containing
1338         e.g. pthread_create) we now search for the right realtime library
1339         (containing e.g. sched_get_priority_max). Makes the output of the
1340         thread related libraries correct. 
1341
1342         * gtimer.c (g_usleep): The current implementation of g_usleep
1343         (simply calling select) doesn't work reliable for multi-threaded
1344         programs on some platforms (bad omen for the main loop....), so I
1345         changed the implementation for thread-using programs to wait for a
1346         GCond for the specified amount of time (NB: sleep and usleep are
1347         not MT-safe in general, because they often use signals).
1348
1349 Wed Mar 22 16:49:57 2000  Owen Taylor  <otaylor@redhat.com>
1350
1351         * gmem.c (g_mem_chunk_area_compare): Fix indentation.
1352
1353 2000-03-22 Elliot Lee <sopwith@redhat.com>
1354
1355         * gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in
1356         comparing two pointers more than 4G apart.
1357
1358 2000-03-22  Tor Lillqvist  <tml@iki.fi>
1359
1360         * gutils.c: Move Win32-only includes after inclusion of glib.h, so
1361         that G_OS_WIN32 is defined.
1362
1363         * glibconfig.h.win32.in: Add GSystemThread.
1364
1365 2000-03-22  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1366
1367         * gutils.c (g_get_current_dir): Ok, Marcus Brinkmann
1368         <Marcus.Brinkmann@ruhr-uni-bochum.de> convinced me, that 128 KB
1369         path length might not be enough for the HURD. So I changed the
1370         loop to at least avoid an integer overflow, which could happen at
1371         beyond 2GB size ;-)
1372
1373         * configure.in: Test for sched_yield as the native yield function
1374         first. Corrected typo g_thread_sleep -> g_usleep. Corrected
1375         message for the pthread_create test. Negative Priorities are
1376         allowed (and used on Solaris), so consider
1377         sched_get_priority_min failed only if it returns -1, not <0. Check
1378         for sched_get_priority_min also in -lrt, if not found in -lpthread
1379         alone and add -lrt to G_THREAD_LIBS then. Remove special case
1380         handling of priorities for older solaris versions and posix
1381         threads. Thanks to Wan-Teh Chang <wtc@netscape.com> for suggesting
1382         some of those changes.
1383
1384         * config.guess, config.sub, ltconfig, ltmain.sh:
1385         Upgrade to libtool 1.3.4.
1386
1387 2000-03-21  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1388
1389         * glib.h, configure.in, gutils.h: always define G_GNUC_EXTENSION,
1390         even when not needed by GLib. That's actually also the way, the
1391         GLib reference manual describes that macro. Therefore I had to
1392         remove the lonesome #include <glibconfig.h> in gutils.c, which
1393         doesn't seem to be needed there however. This change should make
1394         Ben Gertzfield <che@debian.org> happy.
1395
1396         * gutils.c: Furthermore two warnings in gutils.c were voided,
1397         which crept in due to my last change.
1398
1399         * gutils.c (g_get_current_dir): Allocate only up to 128KB for a
1400         pathname. While this is an arbitrary value just like 2048, it
1401         seems to be enough (after all, even 4GB is an arbitrary value).
1402
1403 2000-03-20  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1404
1405         * gmain.c (g_main_poll): Warn in case of an error during the call
1406         to poll(2). Closes Bug#7564 as reported by David Helder
1407         <dhelder@umich.edu>.
1408
1409         * gutils.c (g_get_current_dir): Make g_get_current_dir work on
1410         systems with unlimited pathname length like the HURD (It worked
1411         there before, but only for pathes shorter than 2048). Closes
1412         Bug#4525 as reported by Marcus Brinkmann
1413         <Marcus.Brinkmann@ruhr-uni-bochum.de>.
1414
1415 2000-03-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1416
1417         * giounix.c (g_io_unix_write, g_io_unix_read): Interpret EINTR as
1418         G_IO_ERROR_AGAIN.
1419
1420 2000-03-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1421
1422         * configure.in: Added the missing POSIX_NO_YIELD and
1423         POSIX_NO_PRIORITIES warning messages.
1424
1425         * configure.in: Use AC_TRY_RUN instead of AC_TRY_LINK, to test for
1426         real thread support. On solaris pthread_create can be linked to
1427         even in -lc, but it doesn't work then.
1428
1429         * configure.in: Don't use priorities for threads, when the
1430         minimal/maximal priorities couldn't be determined at configure
1431         time.
1432
1433         * configure.in, gthread.c: Always define GSystemThread in
1434         glibconfig.h to represent a system thread.
1435
1436         * configure.in: Do not use native recursive threads, when
1437         possibe. We use some features, that they do not expose (namely the
1438         depth counter).
1439
1440         * glib.h, gthread.c: Redefined GStaticRecMutex. The functions are
1441         now implemented in a different way, which should be way
1442         faster. Alsothere are now functions g_static_rec_mutex_unlock_full
1443         and g_static_rec_mutex_lock_full to leave/enter a recursive mutex
1444         completly.
1445
1446         * gthread.c (g_thread_self): Do not test the system_thread to be
1447         non-zero to speed things up.
1448
1449         * gthread.c (g_mutex_init): Therefore set the system_thread of the
1450         main thread here.
1451
1452         * tests/thread-test.c: Rerun all tests once again, but this time
1453         we fool the system into thinking, that the available thread system
1454         is not native, but userprovided.
1455
1456 2000-03-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1457
1458         * gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
1459         want the next and prev pointer of the inserted link to be NULL.
1460
1461 2000-03-06  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1462
1463         * configure.in: Another small change to the pthread_.. search
1464         pattern. Should work *now* for AIX.
1465
1466 2000-03-04  Tor Lillqvist  <tml@iki.fi>
1467
1468         * gwin32.c (g_win32_error_message): New function that returns the
1469         message string for a Win32 error code.
1470
1471         * glib.h: Declare it.
1472
1473         * glib.def: Export it, plus g_node_copy.
1474
1475 2000-03-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1476
1477         * configure.in: Make the search for pthread_attr_... prototypes
1478         find names at the start of a line also, like it is on AIX. Thanks
1479         to Valdis Kletnieks <Valdis.Kletnieks@vt.edu> for the info.
1480
1481 Wed Mar  1 10:39:39 2000  Tim Janik  <timj@gtk.org>
1482
1483         * gslist.c (g_slist_reverse): minor optimization.
1484
1485         * testglib.c (g_node_test): added a couple of tests for
1486         g_node_copy().
1487
1488         * glib.h:
1489         * gnode.c (g_node_copy): new function to copy subtrees,
1490         supplied by dbsears@ix.netcom.com.
1491         changed iterator to walk the children list backwards, so
1492         we get down from O(n^2) to O(n).
1493
1494         * gnode.c (g_node_first_sibling): applied patch from
1495         dbsears@ix.netcom.com to optimize access if node->parent
1496         is present.
1497
1498         * gutils.c (g_get_any_init): backed out HAVE_PW_GECOS check around
1499         assignment of g_real_name, sicne HAVE_PW_GECOS is never defined and
1500         thus breaks the original code.
1501
1502         * merged changes from 1.2.7.
1503
1504 Fri Jan 28 11:37:41 2000  Owen Taylor  <otaylor@redhat.com>
1505
1506         Bug #4156 - Changes vaguely modelled after Scott Gifford's patch
1507
1508         * gtimer.c (g_timer_elapsed): Never report negative times -
1509         clip times to 0.
1510
1511         * gmain.c (g_timeout_prepare): Guard against unexpected
1512         clock shifts by never setting a timeout of more than
1513         data->interval msecs.
1514
1515 2000-02-27  Tor Lillqvist  <tml@iki.fi>
1516
1517         * glib.def: Add new functions.
1518
1519 2000-02-23  Tor Lillqvist  <tml@iki.fi>
1520
1521         * README.win32: Add a missing step to the setup instructions for
1522         gcc-2.95.2. Thanks to Arnaud Charlet.
1523
1524         * glib.def: Add missing entry point.
1525
1526 2000-02-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1527
1528         * configure.in: Changed GCC version test to also accept major
1529         versions > 2. Thanks to Ben Gertzfield <che@debian.org> for
1530         pointing this out.
1531
1532 Thu Feb 17 12:53:44 2000  Tim Janik  <timj@gtk.org>
1533
1534         * gstring.c: changed g_str_hash() to a 31 bit version based on
1535         a submission by Karl Nelson and hand optimized ad absurdum by
1536         various people ;)
1537
1538         * gstring.c: applied patch from havoc for new gstring functions,
1539         added some more sanity checks, coding style fixups.
1540
1541 2000-02-13  Havoc Pennington  <hp@pobox.com>
1542
1543         * tests/string-test.c (main): Add tests for the new GString 
1544         features
1545
1546         * testglib.c (main): Add tests for the new GString features
1547
1548         * gstring.c (g_string_insert_len): New function; insert 
1549         a given length of string at a given position. 
1550         (g_string_append): reimplement in terms of g_string_insert_len
1551         (g_string_append_len): new function
1552         (g_string_insert_c): accept -1 for "pos" arg to mean "append"
1553         (g_string_append_c): reimplement in terms of g_string_insert_c
1554         (g_string_prepend): reimplement in terms of g_string_insert_len
1555         (g_string_prepend_len): new function
1556         (g_string_prepend_c): reimplement in terms of g_string_insert_c
1557         (g_string_insert): reimplement in terms of g_string_insert_len
1558
1559         * glib.h: Declare g_string_insert_len, g_string_append_len,
1560         g_string_prepend_len
1561
1562 Sun Feb 13 08:16:47 2000  Tim Janik  <timj@gtk.org>
1563
1564         * configure.in: wtf??? someone destroyed the configure.in, reverting to
1565         an older version from Feb 4 which apears to still work.
1566
1567 2000-02-07  Tor Lillqvist  <tml@iki.fi>
1568
1569         * gmodule.rc.in gthread.rc.in: Move to corresponding subdirectories.
1570
1571         * Makefile.am
1572         * gmodule/Makefile.am
1573         * gthread/Makefile.am: Change accordingly.
1574
1575         * makefile.cygwin: Corresponding changes, some cleanup.
1576
1577 2000-02-05  Tor Lillqvist  <tml@iki.fi>
1578
1579         * glib.rc.in gmodule.rc.in gthread.rc.in: New files, for putting
1580         version info in the DLLs on Win32.
1581
1582         * Makefile.am: Generate corresponding *.rc files and distribute
1583         them.
1584
1585         * makefile.cygwin.in: Add rules to automatically bump a "build
1586         number" in the version info in the rc files each time the DLL is
1587         built. But do this only for the person who releases binaries. If
1588         others build the DLLs, the build number is set to zero.
1589
1590 Fri Feb  4 19:36:05 2000  Tim Janik  <timj@gtk.org>
1591
1592         * glib.h: 
1593         * gdataset.c: return stolen data from g_datalist_id_remove_no_notify()
1594         and g_dataset_id_remove_no_notify() to avoid second lookup for common
1595         use.
1596
1597 2000-02-01  Tor Lillqvist  <tml@iki.fi>
1598
1599         * glib.h
1600         * gstrfuncs.c (g_filename_to_utf8, g_filename_from_utf8): New
1601         functions for conversion between UTF-8 and the encoding expected
1602         by C runtime functions like open() and stat(), and returned by
1603         readdir().
1604
1605         Implement them on Win32 where we use the system "ANSI" codepage,
1606         which might be single-byte or double-byte. On Unix, just skip the
1607         issue for now and provide dummy implementations that return a copy
1608         of the argument.
1609
1610         * README.win32
1611         * build-dll
1612         * glib.def: Minor updates.
1613
1614 Wed Jan 26 05:24:38 2000  Tim Janik  <timj@gtk.org>
1615
1616         * glib.h:
1617         * gmain.c: s/current_time/dispatch_time/ for the dispatch() handlers.
1618         refetch the current time after invocation of poll() to cover up for
1619         the time spent in that function call.
1620
1621 Fri Jan 21 10:18:24 2000  Owen Taylor  <otaylor@redhat.com>
1622
1623         * glib.h (G_N_ELEMENTS): Added G_N_ELEMENTS macro to determine
1624         the number of elements in an array.
1625
1626 Sun Jan  9 13:28:36 2000  Tim Janik  <timj@gtk.org>
1627
1628         * gstrfuncs.c (g_strtod): correctly fetch the current locale,
1629         fix from owen.
1630
1631 1999-12-16  Tor Lillqvist  <tml@iki.fi>
1632
1633         * gmodule/gmodule-win32.c: Use FormatMessage to translate system
1634         error codes into textual messages.
1635
1636 1999-11-25  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1637
1638         * glib.h (G_TRYLOCK): This of course should return TRUE in a
1639         program with a thread-disabled GLib.
1640
1641 1999-11-18  Tor Lillqvist  <tml@iki.fi>
1642
1643         * glib.def: g_strjoin was missing.
1644
1645 1999-11-16  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1646
1647         * acconfig.h, config.h.win32.in, configure.in: Renamed
1648         GLIB_SIZEOF_PTHREAD_T to GLIB_SIZEOF_SYSTEM_THREAD to reflect
1649         changed meaning.
1650
1651         * configure.in: Cope with systems, that have a pthread_t type,
1652         that is not a pointer. Hint from Karl Nelson
1653         <kenelson@ece.ucdavis.edu>. Define GLIB_SIZEOF_SYSTEM_THREAD to 4
1654         for Solaris. Cope with systems, that have no default mutex
1655         initialize, like obviously most DCE systems.
1656
1657         * glib.h, gthread.c: Changed the prototype of thread_create and
1658         thread_self to return the system thread into provided memory
1659         instead of a return value. This is necessary, as HPUX has a
1660         pthread_t, that is bigger than the biggest integral type there.
1661
1662         * gthread.c: system_thread is no longer a pointer, but an memory
1663         area of size GLIB_SIZEOF_SYSTEM_THREAD. Changed the
1664         zeroinitialization and the tests for zeroness accordingly.
1665
1666 1999-11-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1667
1668         * configure.in: Create docs/glib-config.1 from
1669         docs/glib-config.1.in. Makes 'make distcheck' happy (and me too).
1670
1671         * glib-config.1: Removed from CVS, as it is a generated file.
1672
1673 1999-11-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1674
1675         * configure.in: Make the test for getpwuid_r work on newer AIX
1676         versions, too. Still works on Solaris and Linux. Patch from Craig
1677         Rodrigues <rodrigc@mediaone.net>.
1678
1679 1999-11-08  Tor Lillqvist  <tml@iki.fi>
1680
1681         * gwin32.c (g_win32_getlocale): Look at env vars LC_ALL, LC_CTYPE
1682         and LANG first. Some refinements to the sublanguage logic.
1683
1684 1999-11-04  Tor Lillqvist  <tml@iki.fi>
1685
1686         * makefile.{cygwin,msc}.in: Add gwin32 object. Add rule to make .i
1687         (preprocessed source) files.
1688
1689 1999-11-01  Tor Lillqvist  <tml@iki.fi>
1690
1691         * glib.h
1692         * glib.def: Rename Win32-only functions from gwin_* to g_win32_*
1693         to match the GLib naming conventions.
1694
1695         * gutils.c
1696         * gwin32.c
1697         * testglib.c
1698         * Makefile.am: Move the Win32-only functions to the new
1699         file gwin32.c
1700
1701 1999-10-31  Tor Lillqvist  <tml@iki.fi>
1702
1703         * gutils.c (gwin_getlocale): New Win32-specific function, returns
1704         a Unixish current locale string (en, zh_TW etc).
1705
1706         * glib.h: Declare it.
1707
1708         * glib.def: Export it.
1709
1710         * testglib.c: Test it.
1711
1712         * gmessages.c (Win32: ensure_stdout_valid): Some improvements,
1713         make sure we don't call AllocConsole several times, which I think
1714         has happened.
1715
1716 Sun Oct 31 18:55:01 1999  ape@spacetec.no  (Asbjorn Pettersen)
1717
1718         * gcache.c (g_cache_remove): Test if node is NULL.
1719         If not tested, GIMP's script-fu will crash. 
1720
1721 Sun Oct 17 18:11:40 1999  Tim Janik  <timj@gtk.org>
1722
1723         * gdataset.c (g_data_set_internal): remove g_dataset_global_lock around
1724         destroy() notification here as well.
1725
1726 1999-10-15  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1727
1728         * gdataset.c (g_datalist_clear_i): Avoid Freezing, when g_datalist
1729         is called recursivly. Reported by Ola Andersson <rand@ling.umu.se>.
1730
1731 Tue Oct 12 14:17:12 1999  Tim Janik  <timj@gtk.org>
1732
1733         * glib.h: removed useless g_string(x) macro that cluttered the namespace
1734         and was just a poor wrapper around the cpp '#' symbol, use #x if you
1735         need to work around this.
1736         added new macro G_STRINGIFY(arg) that will convert arg to a string,
1737         no matter whether it contains macros or not.
1738
1739 1999-10-12  Tor Lillqvist  <tml@iki.fi>
1740
1741         * config.h.win32.in: Define the new GLIB_SIZEOF_* constants here,
1742         too.
1743
1744         * glib.h: Small Win32 comments improvement.
1745
1746 Tue Oct 12 12:16:12 1999  Tim Janik  <timj@gtk.org>
1747
1748         * gmessages.c (g_printf_string_upper_bound): completly new implementation
1749         for printf string upper bounds calculation.
1750         we handle all glibc 2.1 format specifiers now, except for positional
1751         parameters (%nn$...) and wide char strings, plus some obscure upper
1752         case variants of the standard conversions. this fixes a lot of
1753         bugs in the old code, i.e.
1754         - NULL format strings
1755         - floats with exponents >+24
1756         - %G
1757         - precision specifications in general
1758         - negative field widths
1759         - %p for SIZEOF_VOID_P > 4 platforms
1760         we now issue warnigns in places where the old code would have
1761         caused buffer overruns anyways. warnings are suppressed when invoked
1762         from glogv(), to avoid infinite recursions if someone passes a log
1763         message that comes with really obscure format specifications.
1764
1765 Tue Oct 12 11:49:00 1999  Tim Janik  <timj@gtk.org>
1766
1767         * gstrfuncs.c: nuked old g_printf_string_upper_bound() version.
1768
1769 Tue Oct 12 03:34:40 1999  Tim Janik  <timj@gtk.org>
1770
1771         * glib.h: added GFloatIEEE754 and GDoubleIEEE754 unions to access sign,
1772         mantissa and exponent of IEEE floats and doubles (required by the new
1773         version of g_printf_string_upper_bound). the unions are endian specific,
1774         we handle G_LITTLE_ENDIAN and G_BIG_ENDIAN as of currently. ieee floats
1775         and doubles are supported (used for storage) by at least intel, ppc and
1776         sparc, reference:
1777         http://twister.ou.edu/workshop.docs/common-tools/numerical_comp_guide/ncg_math.doc.html
1778
1779 Mon Oct 11 18:01:49 1999  Tim Janik  <timj@gtk.org>
1780
1781         * configure.in: added additional checks to figure sizes of size_t,
1782         ptrdiff_t and intmax_t (required by g_printf_string_upper_bound).
1783
1784 Wed Oct  6 12:44:23 PDT 1999 Manish Singh <yosh@gimp.org>
1785
1786         * configure.in: blah. use G_WITH_CYGWIN instead of G_HAVE_CYGWIN
1787
1788 1999-10-05  Tor Lillqvist  <tml@iki.fi>
1789
1790         * glib.h: (Win32) Drop the mapping of POSIX function names to the
1791         underscored versions, it's unnecessary after all. With MSVC we get
1792         them from oldnames.lib, with gcc-2.95 and mingw32 from
1793         -lmoldname-msvc. Add comment about what headers to include for
1794         prototypes.
1795
1796         * glibconfig.h.win32.in: Don't define WIN32 and NATIVE_WIN32.
1797
1798         * gerror.c (g_on_error_query): (Win32) Slightly increased verbosity.
1799
1800         * build-dll: Don't strip.
1801
1802         * tests/string-test.c tests/dirname-test.c: Use G_OS_WIN32.
1803
1804         * glib.def: Add g_thread_use_default_impl.
1805
1806 Sun Oct  3 19:46:55 PDT 1999 Manish Singh <yosh@gimp.org>
1807
1808         * configure.in: use G_HAVE_CYGWIN instead of G_OS_FEATURE_CYGWIN
1809
1810 Sun Oct  3 19:25:42 PDT 1999 Manish Singh <yosh@gimp.org>
1811
1812         * acconfig.h
1813         * configure.in
1814         * glibconfig.h.win32: G_OS_FOO #defines. I *think* I got the cygwin
1815         and beos stuff right, but I haven't tested it. The respective
1816         porters should fix any screwups
1817
1818         * glib.h
1819         * gerror.c
1820         * gmain.c
1821         * gmessages.c
1822         * gscanner.c
1823         * gthread.c
1824         * gtimer.c
1825         * gutils.c
1826         * testglib.c: use G_OS stuff
1827
1828 Wed Sep 22 01:53:18 1999  Tim Janik  <timj@gtk.org>
1829
1830         * glib.h (NULL): define NULL as (0L) if __cplusplus is defined, to
1831         avoid "ANSI C++ forbids implicit conversion from `void *' in argument
1832         passing" errors upon NULL usage in C++ programs (gcc-2.95 is on crack
1833         for erroring out on this, instead of just issueing a warning).
1834
1835         * glib.h (g_trash_stack_pop): use uncasted NULL again.
1836
1837 Fri Sep 17 10:24:45 1999  Tim Janik  <timj@gtk.org>
1838
1839         * gmem.c (g_mem_chunk_compute_size) (g_mem_chunk_new): applied patch
1840         from Soeren Sandmann <sandmann@daimi.au.dk>, to force mem chunk's area
1841         sizes to be a multitiple of atom_size, and to eliminate the MAX_MEM_AREA
1842         restriction of 65536 bytes. we also catch cases where users pass an area
1843         size < atom size with a return_if_fail statement now (which is ok,
1844         because previously this lead to memory corruption anyways).
1845
1846 Thu Sep 16 13:19:54 1999  Tim Janik  <timj@gtk.org>
1847
1848         * glib.h (g_trash_stack_pop): add explicit (GTrashStack*) cast for NULL
1849         pointer to cure ANSI C++ error.
1850
1851 Mon Sep 13 23:25:59 1999  Tim Janik  <timj@gtk.org>
1852
1853         * gmessages.c (g_logv): in case we have to abort the program,
1854         debugging is enabled and we are not called recursively, try
1855         to abort with raise (SIGTRAP) first, so developers may ignore
1856         certain failure conditions during debugging stage.
1857
1858 Thu Aug 26 15:09:36 1999  Tim Janik  <timj@gtk.org>
1859
1860         * Makefile.am:
1861         * gmodule/Makefile.am:
1862         * gthread/Makefile.am: added --export-dynamic so we can load dynmic
1863         modules, (required, according to the libtool 1.3.3 docu).
1864
1865 1999-07-23  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1866
1867         * grand.c (g_rand_new): Use /dev/urandom, as it doesn't block,
1868         which /dev/random might do. Do not XOR the time, when getting the
1869         seed form /dev/urandom, as this is good itself. Prevent the
1870         initial seed from being zero, which causes the PRNG to produce
1871         only zeros. Hints from Colin Plumb <colin@pgp.com>.
1872
1873 1999-08-17  Tor Lillqvist  <tml@iki.fi>
1874
1875         * glib.h (g_trash_stack_push): Add a cast.
1876
1877         * gslist.c
1878         * glist.c: Make the inline functions static inline, and add
1879         separate extern wrappers. Not all compilers produce callable entry
1880         points for inline functions, even if gcc does.
1881
1882 Sun Aug 15 02:47:14 1999  Tim Janik  <timj@gtk.org>
1883
1884         * glib.h (g_trash_stack_pop): eliminate memset() call, since string.h
1885         has not neccessarily been included prior to glib.h.
1886
1887 Mon Aug  2 21:03:10 1999  Tim Janik  <timj@gtk.org>
1888
1889         * configure.in: added --enable-msg-prefix option.
1890
1891         * gmessages.c (g_log_default_handler): feature "prg_name (pid:%u): "
1892         if --enable-msg-prefix was selected (use "(process:%u): " if
1893         g_get_prgname () returns NULL, along the lines of g_on_error_query).
1894
1895 1999-08-03  Tor Lillqvist  <tml@iki.fi>
1896
1897         * glib.h
1898         * gstrfuncs.c
1899         * tests/strfunc-test.c: Rename g_strccpy to g_strcompress and
1900         g_strecpy to g_strescape per Tim Janik's suggestion. Dropped the
1901         destination parameter, always g_malloc a new string.  Fix bug in
1902         g_strcompress, octal digits were gobbled up without limit, should
1903         use max three.
1904
1905         Sources that use g_strescape must have ifdefs to be compilable
1906         both with GLib 1.2 and 1.3.
1907
1908 Sat Jul 31 17:52:03 PDT 1999 Manish Singh <yosh@gimp.org>
1909
1910         * glib.h
1911         * gstrfuncs.c: the #define for g_strescape interfered with the
1912         compilation of the function, so just remove the function and
1913         note that it's deprecated in the header
1914
1915 1999-08-01  Tor Lillqvist  <tml@iki.fi>
1916
1917         * gstrfuncs.c (g_strccpy, g_strecpy): New functions.
1918
1919         * glib.h: Declare and document them. Define the deprecated
1920         g_strescape as a macro that calls g_strecpy.
1921
1922         * tests/strfunc-test.c (main): Test them.
1923
1924         * makefile.{cygwin,msc}.in
1925         * tests/makefile.{cygwin,msc}.in: Remove gstack and its test
1926         program.
1927
1928         * glib.def: Additions and removals.
1929
1930         * README.win32: Improve gcc build instructions.
1931
1932         * build-dll: Also build import library for MSVC.
1933
1934 Sat Jul 24 20:11:35 1999  Tim Janik  <timj@gtk.org>
1935
1936         * merged GLib 1.3.0 with glib-1.2.3 from Fri Jul 16 22:18:36.
1937         * incorporated proposed cleanups from gtk-devel-list.
1938
1939         * bumped version number to GLib-1.3.1
1940
1941         * glib.h:
1942         * gqueue.c:
1943         * gstring.c:
1944         * glist.c:
1945         removed string tokenisation (we got g_strsplit() and g_strjoin()
1946         already) and readline functions.
1947         s/g_list_delete/g_list_delete_link.
1948         implemented g_slist_delete_link.
1949         removed notion of g_ATEXIT() macro in glib.h, this is an *internal*
1950         macro, g_atexit() is provided for public consumption.
1951         added GTrashStack inline utility functions.
1952         reimplement double eneded queues.
1953         removed GStack implementation, people can use a queue or a (singly)
1954         linked list for this task.
1955         deprecated g_strescape(), we need the SunOS variants here.
1956
1957         * gdate.c: added DEBUG_MSG() macro to wrap old messages.
1958
1959         * *.*: CVS merges.
1960
1961         * upgrade to libtool 1.3.3.
1962
1963 1999-07-21  Tor Lillqvist  <tml@iki.fi>
1964
1965         Win32: With the latest gcc (2.95, pre-release), we can have binary
1966         compatibility with MSVC by using the switch -fnative-struct. No
1967         longer build DLLs with .gcc in the name when using gcc.
1968
1969         * README.win32: Renew gcc build instructions.
1970
1971         * build-dll: Comments change, handle also .a files.
1972
1973         * makefile.cygwin.in
1974         * tests/makefile.cygwin.in: Remove .gcc from DLL name.
1975
1976 1999-07-13  Tor Lillqvist  <tml@iki.fi>
1977
1978         * README.win32: Correct URL for mingw runtime sources.
1979
1980         * build-dll: Combine commands with &&.
1981
1982         * glib.h: Map also rmdir() and hypot() for MSVCRT library.
1983
1984         * makefile.cygwin.in
1985         * tests/makefile.cygwin.in: New DLL naming style. GCC-compiled DLLs are
1986         now called *.gcc.dll, to avoid binary incompatibilities with
1987         MSVC-compiled versions.
1988
1989         * makefile.msc.in: Cosmetics.
1990
1991 1999-07-07  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1992
1993         * configure.in: Test for pthread_join rather than for
1994         pthread_create to determine the right thread-lib. Makes it work on
1995         mips-sgi-irix6.5. Hitn from to Jari Vuoksenranta
1996         <javu@piano.ux.phys.jyu.fi>.
1997
1998 1999-07-02  Tor Lillqvist  <tml@iki.fi>
1999
2000         * README.win32: Note about need to fix another bug in the mingw32
2001         headers.
2002
2003         * makefile.msc.in: Debugging turned on via an nmake variable,
2004         no need to edit the makefile.
2005
2006 1999-07-01  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2007
2008         * configure.in, acconfig.h, gutils.c: Added a g_memmove
2009         replacement for platforms without memmove, where bcopy can't
2010         handle overlapping copies and the corresponding checks, which is
2011         taken form the PERL Configure routine.
2012
2013         * glib.h: Updated the commentary about g_memmove to be right and
2014         more GLib-like.
2015
2016         * configure.in: Removed test for rand_r, as it isn't used anymore.
2017
2018 1999-06-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2019
2020         * glib.h, grand.c: Finally removed the g_random_normal and
2021         g_rand_normal functions.
2022
2023 1999-06-28  Tor Lillqvist  <tml@iki.fi>
2024
2025         * glib.def: Add missing export of g_strncasecmp.
2026
2027 1999-06-21  Jose Mercado  <jmercado@mit.edu>
2028
2029         * glib.spec.in: Changed version number (1.1->1.3) in files section
2030         to allow rpm to build packages again.
2031
2032 1999-06-21  Tor Lillqvist  <tml@iki.fi>
2033
2034         * README.win32: Update the pthreads snapshot version we want.
2035         Advice how to hand-expand the makefile.*.in files.
2036
2037         * config.h.win32.in: Define values needed by Sebastian Wilhelmi's
2038         new thread stuff.
2039
2040         * glib.def: Add new functions.
2041
2042         * glibconfig.h.win32.in: Update the pthreads snapshot version.
2043         Fix typo.
2044
2045         * gthread.c: Include config.h, guard inclusion of unistd.h.  When
2046         using gcc on Win32, g_thread_functions_for_glib_use must be marked
2047         for export here, too.
2048
2049         * gtimer.c: Implement g_usleep on native Win32 using Sleep (which
2050         only has millisecond granularity, though).
2051
2052         * makefile.cygwin.in
2053         * makefile.msc.in: Update pthreads snapshot version. File
2054         name changes. Remove testgthread.
2055
2056         * tests/makefile.cygwin.in
2057         * tests/makefile.msc.in: Add thread-test. Link with gthread lib.
2058
2059 1999-06-18  Jeff Garzik  <jgarzik@pobox.com>
2060
2061         * tests/Makefile.am:  Re-order tests in alpha order.
2062
2063 1999-06-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2064
2065         * configure.in: Changed test for pthread_attr_setstacksize from
2066         AC_TRY_COMPILE to AC_TRY_LINK.
2067
2068 1999-06-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2069
2070         * configure.in, acglib.m4, acconfig.h, glib.h, gthread.c:
2071         Completed the thread support in GLib. Thread creation,
2072         prioritizing threads, yielding, joining threads as well as
2073         reader/writer locks and recursive mutexes are now in place. Please
2074         test heavily on your platform. It is so far tested on
2075         Linux/i386/pthreads, Solaris/Sparc/pthreads and
2076         Solaris/Sparc/solaristhreads.
2077
2078         * gtimer.c, glib.h: Implement g_usleep (gulong microseconds) for
2079         thread safe sleeping. (sleep() is not MT-safe at all!)
2080
2081         * gutils.c: Avoid compiler warning.
2082
2083         * tests/Makefile.am, tests/thread-test.c: New program to test some
2084         aspects of the thread implementation.
2085
2086         * gthread.c, Makefile.am: Renamed from gmutex.c to reflect the
2087         change of content.
2088
2089         * configure.in: Purged all appearances of nspr. 
2090
2091 Wed Jun  2 11:42:46 PDT 1999 Manish Singh <yosh@gimp.org>
2092
2093         * acinclude.m4
2094         * config.guess
2095         * config.status
2096         * ltconfig
2097         * ltmain.sh: upgrade to libtool 1.3.2 (BeOS changes merged)
2098
2099 1999-05-29  Tor Lillqvist  <tml@iki.fi>
2100
2101         * gstrfuncs.c (g_strescape): Backslashify also '"' characters.
2102
2103         * glib.h: Document g_strescape.
2104
2105 1999-05-12  Tor Lillqvist  <tml@iki.fi>
2106
2107         * glib.h (Win32): Map fileno to _fileno for mingw32. Map fstat to
2108         _fstat.
2109
2110         * README.win32: Advice also to remove -lmoldname in the
2111         patch to the egcs-1.1.2 spec file.
2112
2113 Wed May 12 00:23:55 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
2114
2115         * gmodule/Makefile.am: Another small fix.
2116
2117 1999-05-08  Tor Lillqvist  <tml@iki.fi>
2118
2119         * Makefile.am tests/Makefile.am: Correct rules for making the
2120         win32-related files that are made from corresponding .in files.
2121         Is there a cleaner way than explicitly writing rules that invoke
2122         config.status?
2123
2124 Fri Jul 16 22:18:36 PDT 1999 Manish Singh <yosh@gimp.org>
2125
2126         * ltconfig
2127         * ltmain.sh: upgrade to libtool 1.3.3
2128
2129 1999-06-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2130
2131         * gdate.c, gstrfuncs.c, gstring.c: Fixed the use of the
2132         is..... and to..... macros, which take unsigned chars, not chars!
2133         Thanks to Morten Welinder <terra@diku.dk> for pointing this out.
2134
2135 Thu Jun  3 16:30:31 PDT 1999 Manish Singh <yosh@gimp.org>
2136
2137         * gerror.c (g_on_error_query): check isatty() before querying so
2138         we don't loop endlessly
2139
2140 Sat May 29 11:16:29 PDT 1999 Manish Singh <yosh@gimp.org>
2141
2142         * acinclude.m4
2143         * config.guess
2144         * config.status
2145         * ltconfig
2146         * ltmain.sh: upgrade to libtool 1.3.2
2147
2148 1999-05-26  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2149
2150         * gmain.c: provide a poll prototype for SunOS, as they do not do
2151         it self. Hint from Christian Parg <cparg@fs-design.de>.
2152
2153 Tue May 25 12:23:07 1999  Owen Taylor  <otaylor@redhat.com>
2154
2155         * gstrfuncs.c (g_strchug): Use g_memmove() not memmove().
2156         (Reported by Charles Levert <charles@comm.polymtl.ca>)
2157
2158 Mon May 10 22:03:52 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
2159
2160         * Released GLib 1.2.3
2161
2162 1999-05-08  Tor Lillqvist  <tml@iki.fi>
2163
2164         * Makefile.am tests/Makefile.am: Correct rules for making the
2165         win32-related files that are made from corresponding .in files.
2166         Is there a cleaner way than explicitly writing rules that invoke
2167         config.status?
2168
2169 Sat May  1 10:18:01 PDT 1999 Manish Singh <yosh@gimp.org>
2170
2171         * acinclude.m4
2172         * config.guess
2173         * config.status
2174         * ltconfig
2175         * ltmain.sh: upgrade to libtool 1.3
2176
2177 1999-04-30  Tor Lillqvist  <tml@iki.fi>
2178
2179         * Makefile.am: Don't distribute glibconfig.h.win32.in, but
2180         glibconfig.h.win32. Generate it when making a dist. Also generate
2181         makefile.msc and config.h.win32 from corresponding .in files when
2182         making dist.
2183
2184         * configure.in: Also substitute @GLIB_INTERFACE_AGE@ and
2185         @GLIB_BINARY_AGE@ (needed in config.h.win32).
2186
2187         * glibconfig.h.win32.in: Use static mutex structure and initial
2188         value corresponding to the 1999-04-07 snapshot of pthreads-win32.
2189
2190         * tests/Makefile.am: Distribute makefile.msc. Generate it when
2191         making dist.
2192
2193         * tests/makefile.msc.in: New file.
2194
2195         * tests/node-test.c: Include <stdlib.h> for exit().
2196
2197 Thu Apr 29 02:16:36 1999  Tim Janik  <timj@gtk.org>
2198
2199         * gstrfuncs.c: minor code cleanups.
2200
2201 Tue Apr 27 13:11:29 1999  Owen Taylor  <otaylor@redhat.com>
2202
2203         * gmain.c (g_main_poll): Mask out ERR HUP and NVAL from
2204         the events field so we don't give IRIX fits.
2205
2206 Tue Apr 20 08:42:22 1999  Tim Janik  <timj@gtk.org>
2207
2208         * gscanner.c (g_scanner_unexp_token): behave conservative with
2209         G_TOKEN_IDENTIFIER_NULL and always assume scanner->value.v_string
2210         to be "null" in that case.
2211
2212 1999-04-20  Havoc Pennington  <hp@pobox.com>
2213
2214         * gutils.c (g_vsnprintf):  When using the vsnprintf()
2215         implementation, '\0'-terminate the resulting string
2216         and return its length rather than -1.
2217
2218 Mon Apr 19 13:42:21 1999  Owen Taylor  <otaylor@redhat.com>
2219
2220         * gmain.c (g_main_iterate): Added missing
2221         #ifdef G_THREADS_ENABLED. (I never liked G_THREADS_ENABLED in
2222         the first place!)
2223
2224 1999-04-18  Havoc Pennington  <hp@pobox.com>
2225
2226         * gutils.c (g_snprintf): When using the vsnprintf()
2227         implementation, '\0'-terminate the resulting string
2228         and return its length rather than -1.
2229
2230 Fri Apr 16 06:52:07 1999  Tim Janik  <timj@gtk.org>
2231
2232         * gscanner.c (g_scanner_unexp_token): feature G_TOKEN_EOF as a valid
2233         expected token as well, so we get "- expected end of file" instead of
2234         "- expected (unknown) token <0>".
2235
2236 Tue Apr 13 16:16:14 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
2237
2238         * Released GLib 1.2.2
2239
2240 1999-04-12  Elliot Lee  <sopwith@mh69.mh.cuc.edu>
2241
2242         * g_strchug(): s/strcpy/memmove/
2243
2244 1999-04-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2245
2246         * configure.in: Adjusted the test for an unimplemented
2247         getpwuid_r. Info from Michael Pruett <mikep@ugcs.caltech.edu>.
2248
2249 Sun Apr 11 15:07:34 1999  Tim Janik  <timj@gtk.org>
2250
2251         * configure.in: bumped versin number to GLib 1.2.2, interface 2,
2252         binary 2.
2253
2254         * NEWS: updates.
2255
2256 Sun Apr 11 14:37:06 1999  Tim Janik  <timj@gtk.org>
2257
2258         * gstrfuncs.c (g_strcasecmp): always check for s1, s2 != NULL.
2259
2260 Sat Apr 10 19:30:50 1999  Tim Janik  <timj@gtk.org>
2261
2262         * glib.h: removed braces around inline strings for the G_GNUC_FUNCTION
2263         and G_GNUC_PRETTY_FUNCTION macros, so the macros can be used for compile
2264         time string concatenation.
2265
2266 Thu Apr  8 19:53:19 1999  Owen Taylor  <otaylor@redhat.com>
2267
2268         * gmain.c (g_main_iterate): Check for two threads
2269         calling g_main_iterate at once.
2270
2271         * gmain.c: If the set of poll file descriptors changes
2272         during a call to poll(), abort that call, and start
2273         a new poll. My test program still segfaults
2274         obscurely on glibc 2.0 (in read()!!!), but now it works on
2275         glibc 2.1, so I'll blame something else for the other segfault.
2276
2277 1999-03-31  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2278
2279         * configure.in: Fixed slight bug, that made configure hang on some
2280         systems. Please do not merge this into 1.3 branch. It's taken care
2281         of differently there. Info from J. Rhett Aultman
2282         <cuplan@alley.gator.net>
2283
2284 Wed Mar 24 21:23:47 CST 1999 Shawn T. Amundson <amundson@gtk.org>
2285
2286         * Released GLib 1.2.1
2287
2288         * README:
2289           INSTALL: 
2290           NEWS: 
2291           sanity_check: updated
2292
2293         * glibconfig.h.win32.in:
2294           Makefile.am:
2295           docs/glib-config.1.in:
2296           docs/Makefile.am: Added files used to generate new files.
2297
2298         * glibconfig.h.win32:
2299           docs/glib-config.1: Removed, now generated.
2300
2301         * configure.in: Added to output now-generated files.
2302
2303 Tue Mar 23 13:43:39 PST 1999 Manish Singh <yosh@gimp.org>
2304
2305         * giounix.c: add user_data param to check and prepare functions
2306
2307 Mon Mar 22 03:54:43 1999  Tim Janik  <timj@gtk.org>
2308
2309         * glib.h:
2310         * gmain.c: add user_data to the GSource ->check and ->prepare functions,
2311         so it can be used to e.g. pass a GPollFd.
2312         (g_main_poll): only add poll records with an events mask != 0 to the
2313         fd_array. don't even bother calling poll_func() if fds=timeout=0.
2314         added debugging printouts around poll_func() invokation that can be
2315         enabled with #define G_MAIN_POLL_DEBUG.
2316
2317 Fri Mar 19 16:29:50 PST 1999 Manish Singh <yosh@gimp.org>
2318
2319         * acinclude.m4
2320         * config.guess
2321         * config.sub
2322         * ltconfig
2323         * ltmain.sh: upgrade to libtool 1.2f
2324
2325         * autogen.sh: libtool is not required to autogen glib
2326
2327         * acconfig.h: remove WITH_SYMBOL_UNDERSCORE (not explictly
2328         needed)
2329
2330 1999-03-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2331
2332         * gmem.c: Fixed another stupid fault of mine: Did
2333         s/g_static_/g_private_/g
2334
2335 Wed Mar 17 03:17:42 1999  Tim Janik  <timj@gtk.org>
2336
2337         * configure.in bumped versin number to GLib 1.2.1, interface 1,
2338         binary 1.
2339
2340         * NEWS: updates.
2341
2342         * glib.h: added GLIB_CHECK_VERSION() macro similar to
2343         GTK_CHECK_VERSION().
2344
2345 Sun Mar 14 17:50:35 1999  Tim Janik  <timj@gtk.org>
2346
2347         * gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements
2348         to g_return_if_fail().
2349         (g_mem_profile): 
2350         (g_mem_chunk_print): 
2351         (g_mem_chunk_info): removed some extraneous "\n"s at the end of the log
2352         messages.
2353
2354         * gtimer.c (g_timer_*): changed a bunch of g_assert() statements
2355         to g_return_if_fail().
2356         * grel.c (g_*): changed a bunch of g_assert() statements to
2357         g_return_if_fail() and added some extra ones to check relation != NULL.
2358
2359 1999-03-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2360
2361         * configure.in: Also accept _Pctime_r instead of ctime_r, while
2362         seraching for the right `_REENTRANT' flag. This is for Digital
2363         UNIX 4.0d. Thanks to Sascha Brawer <sb@adasys.ch>.
2364
2365 Tue Mar  9 23:25:50 1999  Tim Janik  <timj@gtk.org>
2366
2367         * configure.in: check for working realloc (NULL,).
2368         * gmem.c (g_realloc): use malloc() for initial allocation on systems
2369         where realloc(NULL,) will not work (this is the case on SunOS, reported
2370         by Tom Geiger).
2371
2372 Mon Mar  8 07:42:08 1999  Tim Janik  <timj@gtk.org>
2373
2374         * ghook.c (g_hook_unref): when !hook_list->is_setup, wrap the
2375         flag around the call to g_hook_free() to avoid spurious
2376         warnings (happens during destruction phase).
2377
2378 1999-03-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2379
2380         * glibconfig.h.win32, config.h.win32: Moved G_THREADS_IMPL_POSIX
2381         from config.h.win32 to glibconfig.h.win32
2382
2383         * acconfig.h, configure.in, config.h.win32: Added test for DCE
2384         versions of mutex_trylock and cond_timedwait. The win32 versions
2385         are posix, aren't they?
2386
2387 1999-03-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2388
2389         * gmem.c: Fixed a stupid cut'n'paste error of mine. Thanks to
2390         Friedrich Dominicus <Friedrich.Dominicus@inka.de>
2391
2392 1999-03-01  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2393
2394         * gutils.c (g_get_any_init): Fixed yet another bloody
2395         implementation of getpwuid_r on AIX. Thanks to Olaf Dietsche
2396         <olaf.dietsche+list.gtk@netcologne.de>. I would like a configure
2397         test better than that, but have no idea, how to do that easily.
2398
2399 Sun Feb 21 22:11:51 CST 1999  Shawn T. Amundson <amundson@gtk.org>
2400
2401         * Released GLib 1.2.0
2402
2403         * AUTHORS: updated
2404
2405 Wed Feb 24 00:08:42 CST 1999 Shawn T. Amundson <amundson@gtk.org>
2406
2407         * *.[ch]: inserted additional note to look for ChangeLog and
2408           AUTHORS file for a log of modifications.
2409
2410 Sun Feb 21 14:01:00 1999  Dr Mike <drmike@redhat.com>
2411
2412         * Made specfile generated, tweaked slightly
2413
2414 Sat May  8 06:00:17 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
2415
2416         * configure.in
2417           gmodule/Makefile.am
2418           gthread/Makefile.am: Better testing reveals better
2419           methods.  Fixes for BeOS.
2420
2421 Sat May  8 01:52:29 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
2422
2423         * configure.in
2424           gerror.c
2425           gmain.c
2426           gstrfuncs.c
2427           gutils.c
2428           ltconfig
2429           ltmain.sh
2430           gmodule/Makefile.am
2431           gmodule/gmodule.c
2432           gmodule/gmoduleconf.h.in
2433           gmodule/gmodule-beos.c
2434           gthread/Makefile.am: Port to BeOS by myself and Richard Offer.
2435
2436 1999-05-06  Tor Lillqvist  <tml@iki.fi>
2437
2438         * makefile.msc.in makefile.cygwin.in glibconfig.h.win32.in
2439         config.h.win32.in tests/makefile.msc.in tests/makefile.cygwin.in:
2440         New files, used to generate corresponding non-.in files when
2441         making a dist. This is just so the version numbers will be kept in
2442         synch automatically.
2443
2444         * configure.in: Also substitute @GLIB_MAJOR_VERSION@,
2445         @GLIB_MINOR_VERSION@, and @GLIB_INTERFACE_AGE@.
2446
2447         * Makefile.am tests/Makefile.am: Also distribute makefile.cygwin.
2448
2449         * gerror.c (g_on_error_query): On Win32, put up a MessageBox and
2450         then exit.
2451
2452         * glib.def: Add a couple of functions.
2453
2454 Sat May  1 10:26:20 PDT 1999 Manish Singh <yosh@gimp.org>
2455
2456         * acinclude.m4
2457         * config.guess
2458         * config.status
2459         * ltconfig
2460         * ltmain.sh: upgrade to libtool 1.3
2461
2462 1999-04-25  Tor Lillqvist  <tml@iki.fi>
2463
2464         * README.win32: More editing.
2465         * build-dll: Use gcc, not ld to link.
2466         * glib.h: On native Win32 use _unlink().
2467         * gscanner.c: Use corrent NATIVE_WIN32 feature test macro,
2468         not _MSC_VER.
2469         * gstring.c: Include <io.h> on Win32 for _read prototype.
2470         * gutils.c: Remove old IO channel code (was in #if 0).
2471         * makefile.cygwin: Don't need to link with kernel32 and msvcrt
2472         explicitly, they are included anyway.
2473
2474 1999-04-24  Tor Lillqvist  <tml@iki.fi>
2475
2476         Support added for building using a GNU toolchain on Win32,
2477         i.e. gcc -mno-cygwin on cygwin (a.k.a. mingw32, using egcs-1.1.2).
2478
2479         * README.win32: Updated.
2480         * build-dll makefile.cygwin tests/makefile.cygwin: New files.
2481         * glib.h glib.def glibconfig.h.win32: Slight updates. 
2482         * gmain.c: No need to include <fcntl.h> and <io.h> on Win32.
2483         * gmain.c gutils.c testglib.c tests/string-test.c: Test for
2484         NATIVE_WIN32, not _MSC_VER.
2485         * gmutex.c: Must declare g_thread_functions_for_glib_use as
2486         exported (using the GUTILS_C_VAR macro).
2487         * gutils.c gmodule/libgplugin_[ab].c: LibMain not needed.
2488         * gmodule/gmoduleconf.h.win32: Need underscore with gcc.
2489         * gthread/gthread.c: With gcc on Win32, must use memcpy to assign
2490         value of g_thread_functions_for_glib_use (?).
2491         * makefile.msc tests/makefile.msc: Cosmetics.
2492
2493 Fri Apr 23 14:29:25 BST 1999  Tony Gale <gale@gtk.org>
2494
2495         * glib.h: Fix typo in g_string_ncasecmp macro (by me).
2496           Add b_string_strncasecmp macro.
2497
2498 1999-04-22  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2499
2500         * gutils.c (g_get_any_init): use sysconf (_SC_GETPW_R_SIZE_MAX) as
2501         the new initinal bufsize for getpwuid_r on systems, that support
2502         this. Hint from Holger Duerer <H.Duerer@zait.uni-bremen.de>.
2503
2504 Sat Apr 17 20:55:13 BST 1999  Tony Gale <gale@gtk.org>
2505
2506         * glib.h, gstring.c: Add new g_string functions for reading
2507           from file/socket descriptors, and tokenising strings.
2508
2509           Added various g_string macros.
2510
2511 Tue Apr 13 23:28:32 1999  Tor Lillqvist  <tml@iki.fi>
2512
2513         * README.win32: Mention the tests directory.
2514
2515         * glib.def: Add the functions from grand.c.
2516
2517         * glibconfig.h.win32: Add unsigned max values, and the format
2518         strings.
2519
2520         * makefile.msc: Add grand.
2521
2522         * tests/{date-test,node-test}.c: Include <stdlib.h> for exit().
2523
2524         * tests/makefile.msc: New file.
2525
2526 1999-04-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2527
2528         * glib.h: Moved struct declaration up. Style fixes.
2529
2530         * grand.c: Style fixes. Only try to open /dev/random once.
2531
2532         * tests/rand-test.c (main): New tests; Slight bug fix. 
2533
2534 1999-04-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2535
2536         * grand.c, tests/rand-test.c: New files to implement the Mersenne
2537         Twister Pseudo Random Number Generator.
2538
2539         * glib.h, AUTHORS, Makefile.am, tests/Makefile.am: Changed
2540         accordingly.
2541
2542 Thu Apr  8 21:12:30 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
2543
2544         * Released GLib 1.3.0
2545
2546 1999-03-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2547
2548         * configure.in: Added a check for the right format to printf and
2549         scanf long longs. It is %qi instead of %lli on FreeBSD for
2550         whatever reason.
2551
2552 1999-03-28  Raja R Harinath  <harinath@cs.umn.edu>
2553
2554         * Makefile.am (glibconfig.h): Make sure `glibconfig.h' exists
2555         after the rule is fired.
2556         (install-exec-local): Install glibconfig.h only if the contents
2557         are different from the currently installed glibconfig.h.
2558
2559 1999-03-26  Raja R Harinath  <harinath@cs.umn.edu>
2560
2561         * Makefile.am (configexecincludedir): Rename from 
2562         configincludedir so that glibconfig.h will be installed 
2563         as part of `make install-exec'. 
2564
2565 Thu Mar 25 22:45:47 1999  Tor Lillqvist  <tml@iki.fi>
2566
2567         * config.h.win32: Update version numbers.
2568
2569         * glibconfig.h.win32: Update version numbers and pthreads-win32-
2570         related magic values.
2571
2572         * README.win32: Some improvements.
2573
2574         * makefile.msc: Add gqueue and gstack. Correct version number.
2575
2576 Fri Mar 19 16:29:50 PST 1999 Manish Singh <yosh@gimp.org>
2577
2578         * acinclude.m4
2579         * config.guess
2580         * config.sub
2581         * ltconfig
2582         * ltmain.sh: upgrade to libtool 1.2f
2583
2584         * autogen.sh: libtool is not required to autogen glib
2585
2586         * acconfig.h: remove WITH_SYMBOL_UNDERSCORE (not explictly
2587         needed)
2588
2589 1999-03-18  Jeff Garzik  <jgarzik@pobox.com>
2590
2591         * glib.def: Add new g_list, g_stack, g_queue functions.
2592
2593 1999-03-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2594
2595         * configure.in: added new AC_SUBST(GTHREAD_COMPILE_IMPL_DEFINES)
2596         to hold various defines to get the right thread implementation on
2597         different platforms. Also look in -ldce for pthread_create. Should
2598         make it work on HP-UX 10.x. Information from "D. Emilio Grimaldo
2599         Tunon" <emilio_tunon@nl.compuware.com>.
2600
2601 1999-03-17  Jeff Garzik  <jgarzik@pobox.com>
2602
2603         * gstack.c, gqueue.c:
2604         Add copyright, clean up code a bit.
2605
2606 1999-03-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2607
2608         * configure.in: Added missing values for G_MAXU(SHORT|INT|LONG) on
2609         platforms with only /usr/include/values.h.
2610
2611         * acconfig.h: Removed unnecessary macros.
2612
2613         * glibconfig.h.win32, config.h.win32: Moved G_THREADS_IMPL_POSIX
2614         from config.h.win32 to glibconfig.h.win32. Taken from glib 1.2
2615         branch.
2616
2617         * configure.in: Also accept _Pctime_r instead of ctime_r, while
2618         seraching for the right `_REENTRANT' flag. This is for Digital
2619         UNIX 4.0d. Taken from glib 1.2 branch.
2620
2621 Wed Mar 17 03:14:56 1999  Tim Janik  <timj@gtk.org>
2622
2623         * glib.h: added GLIB_CHECK_VERSION() macro similar to
2624         GTK_CHECK_VERSION().
2625
2626 Wed Mar 17 01:46:28 1999  Tim Janik  <timj@gtk.org>
2627
2628         * merges from glib-1-2:
2629
2630 Sun Mar 14 17:50:35 1999  Tim Janik  <timj@gtk.org>
2631
2632         * gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements
2633         to g_return_if_fail().
2634         (g_mem_profile):
2635         (g_mem_chunk_print):
2636         (g_mem_chunk_info): removed some extraneous "\n"s at the end of the log
2637         messages.
2638
2639         * gtimer.c (g_timer_*): changed a bunch of g_assert() statements
2640         to g_return_if_fail().
2641         * grel.c (g_*): changed a bunch of g_assert() statements to
2642         g_return_if_fail() and added some extra ones to check relation != NULL.
2643
2644 Tue Mar  9 23:25:50 1999  Tim Janik  <timj@gtk.org>
2645
2646         * configure.in: check for working realloc (NULL,).
2647         * gmem.c (g_realloc): use malloc() for initial allocation on systems
2648         where realloc(NULL,) will not work (this is the case on SunOS, reported
2649         by Tom Geiger).
2650
2651 Mon Mar  8 07:42:08 1999  Tim Janik  <timj@gtk.org>
2652
2653         * ghook.c (g_hook_unref): when !hook_list->is_setup, wrap the
2654         flag around the call to g_hook_free() to avoid spurious
2655         warnings (happens during destruction phase).
2656
2657 1999-03-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2658
2659         * gmem.c: Fixed a stupid cut'n'paste error of mine. Thanks to
2660         Friedrich Dominicus <Friedrich.Dominicus@inka.de>
2661
2662 1999-03-16  Timur Bakeyev  <mc@bat.ru>
2663
2664         * configure.in: Fix problem with pthread_create in libc, as running
2665         "gcc test.c -l " is not legal.
2666
2667 1999-03-16  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2668
2669         * tests/type-test.c: Added a test for the
2670         G_(U)?INT(16|32|64)_FORMAT and G_(MIN|MAX|MAXU)(SHORT|INT|LONG)
2671         macros.
2672
2673         * configure.in: Removed G_(U)?INT8_FORMAT again, as it can't be
2674         used for scanf.
2675
2676         * configure.in: Added the macros G_MAXU(SHORT|INT|LONG). I do not
2677         know how to handle these on platforms with /usr/include/values.h,
2678         but without /usr/include/limits.h. Please someone add this.
2679
2680
2681 1999-03-15  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2682
2683         * configure.in: Added the macros G_(U)?INT(8|16|32|64)_FORMAT to
2684         use for printf and (much more important) scanf format strings for
2685         the corresponding GLib types. 
2686
2687         * glib.h Added G_(U)?(SHORT|INT|LONG)_FORMAT for consistency. It
2688         however makes no sense to also provide G_(FLOAT|DOUBLE)_FORMAT, as
2689         they are different for printf (f for both) and scanf (f for float,
2690         lf for double). Defining G_INT_FORMAT makes sense however, as we
2691         might want to define gint to something different than int someday
2692         in the future. Idea from Sascha Brawer <sb@adasys.ch>.
2693
2694 1999-03-14  Jeff Garzik  <jgarzik@pobox.com>
2695
2696         * gdate.c:
2697         Commented out debugging output.
2698
2699         * tests/Makefile.am, tests/date-test.c:
2700         Added test of the GDate module, based closely on testgdate.c.
2701
2702         * tests/Makefile.am:
2703         Bugfix - compile tests with @GLIB_DEBUG_FLAGS@.
2704
2705 1999-03-14  Raja R Harinath  <harinath@cs.umn.edu>
2706
2707         * configure.in (glibconfig.h): Remove widechar tests and defines.
2708         (fd_set): Change the grep for `fd_mask' to search for `fd_set'.
2709         * gerror.c (fd_mask): Remove conditional typedef.  It is not used
2710         elsewhere in the file.
2711         * gmain.c (fd_mask): Likewise.
2712
2713 1999-03-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2714
2715         * configure.in: Test for posix threads first, then for dce threads.
2716
2717 1999-03-11  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2718
2719         * configure.in: Revamped the thread configure stuff. Now dce
2720         threads (old posix draft) are recogniced. This is necessary,
2721         because dce threads are in fact working quite differently from
2722         posix threads. Also changed the conditions for checking for MT
2723         safe functions a bit, because G_THREADS_IMPL_NONE still have to
2724         compile thread safe. NOTE: Please do not commit my change to
2725         glib-1-2/{acconfig.h,configure.in,config.h.win32} from 1999-03-03,
2726         as the current change will take care of that too.
2727
2728 Tue Mar  9 14:37:32 1999  Jeff Garzik  <jgarzik@pobox.com>
2729
2730         * Makefile.am, glib.h, gstack.c, gqueue.c,
2731           tests/Makefile.am, tests/queue-test.c, tests/stack-test.c:
2732         Added stack, queue ADTs and related tests.
2733
2734         * glib.h, glist.c:
2735         New g_list_delete() function.
2736
2737 Sat Mar  6 11:03:08 1999  Asbjorn Pettersen  <ape@lrdpf.spacetec.no>
2738
2739         * gutils.c (g_get_any_init): add OS/2 changes.
2740         change '\\' in HOME to '/'.
2741
2742 1999-03-03  Josh MacDonald  <jmacd@spin.dsl.pacbell.net>
2743
2744         * glib.def: g_spaced_primes_closest was omitted here, so I
2745         couldn't build Xdelta on Windows.
2746
2747 1999-03-01  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2748
2749         * gutils.c (g_get_any_init): Fixed yet another bloody
2750         implementation of getpwuid_r on AIX. Thanks to Olaf Dietsche
2751         <olaf.dietsche+list.gtk@netcologne.de>. I would like a configure
2752         test better than that, but have no idea, how to do that easily.
2753
2754 Sat Feb 27 01:18:47 1999  Tim Janik  <timj@gtk.org>
2755
2756         * ChangeLog: moved old ChangeLog to ChangeLog.pre-1-2, and started
2757         new one.
2758
2759         * configure.in: set glib version to 1.3.0.