keep *last updated while running through the domain list, so we don't
[platform/upstream/glib.git] / ChangeLog.pre-2-8
1 Sun Aug  6 20:06:02 2000  Tim Janik  <timj@gtk.org>
2
3         * gmessages.c (g_log_domain_check_free): keep *last updated while
4         running through the domain list, so we don't screw up the removal,
5         patch provided by Gady Kozma <gadykozma@hotmail.com>.
6
7 Sun Aug  6 20:03:41 2000  Tim Janik  <timj@gtk.org>
8
9         * gmessages.c (g_log_remove_handler): keep *last updated while running
10         through the handler list, so we don't screw up the removal.
11
12 Sun Jul 30 16:54:13 2000  Owen Taylor  <otaylor@redhat.com>
13
14         * gunicode.h: Fix stray character
15         
16         * gutf8.c (g_unichar_to_utf8): Allow outbuf to be NULL, in
17         which case we just compute the length.
18
19 2000-07-31  Havoc Pennington  <hp@redhat.com>
20
21         * Makefile.am (EXTRA_DIST): forgot to add .pc.in to EXTRA_DIST
22
23 2000-07-31  Havoc Pennington  <hp@redhat.com>
24
25         * glib-2.0.pc.in, gobject-2.0.pc.in, gmodule-2.0.pc.in,
26         gobject-2.0.pc.in: pkg-config data files         
27         
28         * Makefile.am: Install/dist the .pc files
29
30         * configure.in: Output the .pc files
31
32 2000-07-31  Tor Lillqvist  <tml@iki.fi>
33
34         * giowin32.c (buffer_read): The code didn't compile (must
35         have been sleepy when committing). "return" instead of "break"
36
37         (g_io_win32_fd_add_watch): Cannot check if the file descriptor is
38         readable by calling ReadFile to read zero bytes. ReadFile blocks
39         on NT even if trying to read nothing at all. So, don't check if
40         file descriptor is readable; assume this function isn't called
41         otherwise.
42
43 Sun Jul 30 10:44:16 2000  Tim Janik  <timj@gtk.org>
44
45         * gmain.c (g_get_current_time): fix tor's recent changes which
46         got rid of a required variable in the non-windows path.
47
48 2000-07-30  Tor Lillqvist  <tml@iki.fi>
49
50         Finally, a new and improved IO Channel and condition watch
51         implementation for Win32. Based on code provided by Craig Setera.
52
53         When watching file descriptors, for which there is no select()
54         like functionality on Win32 that would work on all Win32 platforms
55         for all types of file descriptors (including anonymous pipes), we
56         start a new thread that blocks while trying to read from the file
57         descriptor. When the read returns, a Win32 Event is signalled that
58         the polling routine eventually notices. Meanwhile, the data being
59         read is stored in a circular buffer, from where the IO channel's
60         read() method picks it up.
61  
62         If the buffer fills up the reading thread has to wait for space
63         becoming available. For this another Win32 Event is used. The IO
64         Channel's read() method signals this when it has read some data
65         out of the buffer.
66
67         The separate reader thread(s), and the circular buffer(s) with
68         associated events mean lots of possibilities for fun parallellism
69         errors. But it seems to work OK, i.e. GIMP runs.
70
71         * gmain.c: Small changes to the Win32 polling function.
72         (g_main_win32_get_poll_func): New function. Perhaps it would be a
73         good idea to provide this on all platforms.
74
75         * giowin32.c: The bulk of the new implementation.
76         (g_io_channel_win32_wait_for_condition): New function. To be used
77         where on Unix one does a select() on the channel's fd, like
78         libgimp's gimp_extension_process(). Could be provided on all
79         platforms.
80
81         * glib.h: Update documentation for IO Channels on Win32. Remove
82         the declarations for the as of now obsolete old functions related
83         to IO Channels for pipes with "wakeup" messages.
84         
85         * glib.def: Some new functions.
86         
87         * tests/gio-test.c: New file, to test GIOChannel and main loop.
88
89         * tests/Makefile.am
90         * tests/makefile.mingw.in: Add it.
91
92         (Later the same night:)
93
94         * giowin32.c: Compile in the debugging code all the time, but only
95         output debug messages if told so. Add (unadvertised) function to
96         turn on/off debug messages for a channel.
97         
98         (buffer_read): Don't loop. It is expected behaviour to return a
99         short read occasionally, for instance when reading from
100         pipes. It's the calling code that should loop if it *knows* how
101         much the writer has written.
102
103         * tests/gio-test.c: Correct the program's name in the output.
104         (recv_message): Loop calling g_io_channel_read() (in a new
105         function read_all()) until we have all the bytes we want (that we
106         know the writer has written/will write).
107         
108 Thu Jul 27 05:15:11 2000  Tim Janik  <timj@gtk.org>
109
110         * gstrfuncs.c (g_strlcpy, g_strlcat): completed tor's fix
111         to cover both #ifdef branches.
112
113 2000-07-26  Tor Lillqvist  <tml@iki.fi>
114
115         * gstrfuncs.c (g_strlcpy, g_strlcat): Return 0 on error, not NULL.
116
117         * glib.def: Add g_strlcpy, g_strlcat.
118
119         * glibconfig.h.win32.in: Add gsize and gssize.
120
121 Wed Jul 26 12:59:31 2000  Tim Janik  <timj@gtk.org>
122
123         * *.[hc]: applied patch from Andreas Persenius <ndap@swipnet.se> that
124         updates the license headers to the GNU Lesser General Public License,
125         as well as updating the copyright year to 2000.
126
127 Wed Jul 26 05:47:48 2000  Tim Janik  <timj@gtk.org>
128
129         * configure.in:
130         * testglib.c:
131         * gstrfuncs.c:
132         * glib.h: added g_strlcat() and g_strlcpy() wrappers, supplied by
133         David Wheeler <dwheeler@ida.org>:
134
135         * glib.h, gstrfuncs.c: added g_strlcpy and g_strlcat to support
136           safe manipulation of fixed-length string buffers.
137           These functions were originally developed by Todd Miller to simplify
138           development of security-related programs, and
139           are available on many (but not all) Unix-like systems,
140           including OpenBSD, FreeBSD, and Solaris.  See
141           ftp://ftp.openbsd.org/pub/OpenBSD/src/lib/libc/string/strlcpy.3
142           and http://www.openbsd.org/security.html.
143           If there's a strlcpy/strlcat on the system, it's called, otherwise
144           an implementation is provided.
145
146         * testglib.c: Added tests for g_strlcpy, g_strlcat.
147
148 Wed Jul 26 05:03:24 2000  Tim Janik  <timj@gtk.org>
149
150         * acglib.m4 (GLIB_SIZEOF): include <stdlib.h> and <stddef.h> if
151         STDC_HEADERS is defined.
152
153         * glib.h:
154         * glibconfig.h: define gsize and gssize in terms of GLIB_SIZEOF_SIZE_T
155
156         * glib.h (g_return_if_reached): applied darin's fix for copy'n
157         paste error in the macro implementation.
158
159 Wed Jul 26 00:46:03 2000  Tim Janik  <timj@gtk.org>
160
161         * glib.h: applied patch from Darin Adler <darin@eazel.com> which
162         supplies g_return_if_reached(), g_return_val_if_reached() and
163         g_critical().
164
165 2000-07-22  Tor Lillqvist  <tml@iki.fi>
166
167         * build-dll: Fix resource handling, the resource file got left out
168         from the DLL after all... Remove the WIN32APIHEADERS, not needed
169         with current windres.
170
171         * glib.def: Add new functions.
172
173 2000-07-20  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
174
175         * gutils.c, glib.h: Mark the functions g_basename and g_dirname
176         deprecated. They will issue an warning once, when compiled with
177         G_ENABLE_DEBUG, but continue to work as before. Instead the
178         functions g_path_get_basename and g_path_get_dirname should be
179         used, which BOTH return newly allocated memory, that has to freed
180         by g_free. The new g_path_get_basename now strips trailing slashes
181         from the path. This fixes #5097. For discussion see
182         http://mail.gnome.org/pipermail/gtk-devel-list/2000-April/003139.html
183
184         * gwin32.c, testglib.c, tests/dirname-test.c: Use the new
185         functions instead of the old ones.
186
187         * ghash.c, gscanner.c, glib.h: Mark the functions
188         g_hash_table_freeze, g_hash_table_thaw and thus
189         g_scanner_freeze_symbol_table and g_scanner_thaw_symbol_table
190         deprecated. They will issue an warning once, when compiled with
191         G_ENABLE_DEBUG. This fixes Bug #3883. For discussion see
192         http://mail.gnome.org/pipermail/gtk-devel-list/2000-April/003139.html
193         
194 2000-07-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
195
196         * configure.in, glib.h: glibconfig.h and glib.h now include files
197         outside of the extern "C" block. Makes some C++ compiler
198         happy. Reported by Denis Vakatov <vakatov@peony.nlm.nih.gov>.
199
200 Sat Jul 15 23:49:03 2000  Owen Taylor  <otaylor@redhat.com>
201
202         * glib/glib.texi: Remove incomplete start of info file -
203         real docs are in RDP.   
204
205 Sat Jul 15 22:44:22 2000  Owen Taylor  <otaylor@redhat.com>
206
207         * configure.in: Add build/Makefile and 
208         build/win32/Makefile to AC_OUTPUT() so things build
209         again.
210
211 Sat Jul 15 09:11:46 2000  Tim Janik  <timj@gtk.org>
212
213         * gstrfuncs.c (g_strncasecmp): fixed an off by 0 error (yeah,
214         the function went off when the while (n--) loop failed due to
215         n==0 ;), reported by Jean-Louis HAMEL <jlhamel@club-internet.fr>.
216
217 2000-07-15  Tor Lillqvist  <tml@iki.fi>
218
219         * Makefile.am (SUBDIRS): Include the "build" module in GLib, too,
220         to make it more self-contained. If your CVS client doesn't
221         automatically get it, do a cvs get build in glib.
222
223         * */makefile.mingw.in: Include make.mingw from build in the glib
224         source directory.
225
226 Fri Jul 14 16:26:35 2000  Owen Taylor  <otaylor@redhat.com>
227
228         * Release 1.3.1
229
230 Fri Jul 14 12:22:49 2000  Owen Taylor  <otaylor@redhat.com>
231
232         * configure.in Makefile.am glib-config.m4 glib.m4: Move
233         glib-config to glib-config-2.0 move glib.m4 to
234         glib-2.0.m4
235
236         * Makefile.am gobject/Makefile.am gmodule/Makefile.am
237         gthread/Makefile.am tests/Makefile.am: Change 
238         library names to libglib-1.3.la, etc, so that we
239         can distinguish glib-1.2 and glib-2.0 on the linkline.
240
241         * Makefile.am gobject/Makefile.am gmodule/Makefile.am:
242         Move include files into /usr/include/glib-2.0.
243         
244 Thu Jul  6 18:54:49 2000  Owen Taylor  <otaylor@redhat.com>
245
246         * docs/Makefile.am (EXTRA_DIST): Remove info files
247         from the build.
248
249 2000-07-14  Tor Lillqvist  <tml@iki.fi>
250
251         * glib.def: Add g_error functions.
252
253         * makefile.mingw.in: Add gbacktrace.o.
254
255         * gbacktrace.c: No need to include <process.h>.
256
257 2000-07-12  Havoc Pennington  <hp@redhat.com>
258
259         * glib.h: #include <gerror.h>
260
261         * Makefile.am (include_HEADERS): Add gerror.h
262         (libglib_la_SOURCES): Add gbacktrace.c
263
264         * gbacktrace.c: Move g_on_error_query() in here (moved on the 
265         server, so history is preserved)
266
267         * gerror.h: GError interface
268
269         * gerror.c: GError implementation replaces stuff that's now in 
270         gbacktrace.c
271
272 Sun Jul  9 21:20:45 2000  Owen Taylor  <otaylor@redhat.com>
273
274         * gunicode.h: Include stddef.h instead of stdlib.h
275
276 2000-07-08  Tor Lillqvist  <tml@iki.fi>
277
278         * glib.h (GLIB_VAR): Rename the GUTILS_C_VAR macro to GLIB_VAR.
279
280         * gunicode.h: Mark the g_utf8_skip array with GLIB_VAR.
281
282         * glib.def: Add two missing entry points.
283
284 Thu Jul  6 15:35:28 2000  Owen Taylor  <otaylor@redhat.com>
285
286         * Release 1.3.1
287
288         * Makefile.am (EXTRA_DIST): Dist fixes.
289
290         * configure.in: Moderate the warnings just a little bit.
291
292 2000-07-05  Tor Lillqvist  <tml@iki.fi>
293
294         * README.win32: Update.
295
296 Mon Jul  3 17:58:02 2000  Owen Taylor  <otaylor@redhat.com>
297
298         * gutf8.c (g_utf8_get_charset_internal): Fix up
299         to correspond to configure.in checks.
300
301 Mon Jul  3 17:18:19 2000  Owen Taylor  <otaylor@redhat.com>
302
303         * glib.h: Comment g_get_codeset() out of the header file
304         temporarily. (Very similar to g_get_charset(), need
305         to resolve the two.)
306
307 2000-07-01  Tor Lillqvist  <tml@iki.fi>
308
309         * glib.def: Add new entry points.
310
311         * makefile.{mingw,msc}.in: Add the new Unicode object files.
312
313 Thu Jun 29 15:57:28 2000  Owen Taylor  <otaylor@redhat.com>
314
315         * NEWS: updated
316
317         * Makefile.am: added snapcheck target to go along with snapshot
318         
319         * gstring.c glib.h (g_string_hash): Add g_string_hash to 
320         go along with g_string_equal.
321
322 Tue Jun 27 12:40:23 EDT 2000  David A. Wheeler <dwheeler@dwheeler.com>
323
324         * glib.h: Added g_string_equal for comparing GStrings;
325         changed g_str_equal so it returns gboolean (instead of gint).
326
327         * gstring.c: Modified GString implementation to support embedded
328         ASCII NUL ('\0') characters, and implemented g_string_equal.
329
330         * testglib.c tests/string-test.c: Added tests for g_string_equal
331         and tests for proper handling of embedded ASCII NUL characters.
332
333 Wed Jun 28 22:52:00 2000  Owen Taylor  <otaylor@redhat.com>
334
335         * Makefile.am (libglib_la_SOURCES): Fix
336         gunichartable.h => gunichartables.h. (From Eric Limings)
337
338 Fri Jun 23 17:20:26 2000  Tim Janik  <timj@gtk.org>
339
340         * glib.h: define gstring in terms of gchar*. this typedef reflects
341         the type name of the primitive G_TYPE_STRING in the gobject module.
342
343 Wed Jun 21 12:09:03 2000  Owen Taylor  <otaylor@redhat.com>
344
345         * gunicode.h gutf8.c guniprop.c gunidecomp.[ch] gunichartables.h
346         Makefile.am glib.h: Initial pass at adding unicode support
347         functions. A few things still need to be implemented, a bit
348         of cleanup needs to be done, tests need to be added, and 
349         the docs need to be finished, but this should allow replacing
350         most or all use of libunicode.
351
352 2000-06-06  Tor Lillqvist  <tml@iki.fi>
353
354         * giowin32.c (g_io_channel_win32_pipe_readable): If we are
355         watching the same pipe for different conditions (with different
356         callbacks), check them all. Only call the callback for G_IO_IN
357         from here. (This bug popped up when a watch for G_IO_ERR|G_IO_HUP
358         was added to gimplib.)
359
360 2000-05-30  Tor Lillqvist  <tml@iki.fi>
361
362         * gutils.c (g_locale_get_codeset): Implement on Win32.
363
364         * glib.def: Add g_get_codeset.
365
366         * tests/Makefile.am (EXTRA_DIST): makefile.cygwin* has been
367         renamed to makefile.mingw*.
368
369 Tue May 30 16:01:32 2000  Owen Taylor  <otaylor@redhat.com>
370
371         * glib.h gutils.c: Move the g_locale_get_codeset() up in the 
372         header file to correspond to to comments about memory
373         management. Rename to g_get_codeset() to avoid 
374         polluting the g_locale_* namespace, which probably
375         would have g_locale_get_codeset (GLocale *locale).
376         Add a doc comment.
377
378 Mon May 29 14:10:35 2000  Owen Taylor  <otaylor@redhat.com>
379
380         * gutils.c (g_locale_get_codeset): Add function to get the 
381         codeset name for the current locale.
382
383         * configure.in acconfig.h: Add check for nl_langinfo(CODESET);
384
385 Fri May 19 11:39:29 2000  Tim Janik  <timj@gtk.org>
386
387         * gutils.c (g_snprintf):
388         (g_vsnprintf): added argument assertments.
389
390         * gstring.c (g_string_assign): added argument assertments.
391         (g_string_truncate): make len a guint.
392
393 Fri May 19 09:00:44 2000  Tim Janik  <timj@gtk.org>
394
395         * gmem.c (g_free): fixed SIZEOF_LONG==4 assumption with
396         ENABLE_MEM_CHECK, from Art Haas <ahaas@neosoft.com>.
397
398         * gslist.c (g_slist_reverse): shut up compiler.
399
400         * gscanner.c (g_scanner_get_token_ll): removed inline assignment.
401
402         * garray.c: remove index>=0 checks for unsigned indices.
403
404         * gmain.c (g_idle_prepare): timeout assignment fix.
405
406         * gtree.c (g_tree_node_rotate_right): shut up compiler.
407
408 2000-05-13  Tor Lillqvist  <tml@iki.fi>
409
410         * makefile.mingw.in
411         * tests/makefile.mingw.in
412         * build-dll: Rename makefile.cygwin(.in) to
413         makefile.mingw(.in), which better describes what it is. Move the
414         build of gmodule, gthread and gobject DLLs to makefiles in those
415         directories. Move resource file handling and build number bump to
416         build-dll, where it sits much cleaner.
417
418         * README.win32
419         * Makefile.am (EXTRA_DIST): Update accordingly.
420
421         * glib.h: Add G_PI, G_PI_2, G_PI_4, G_E, G_LN2, G_LN10 and
422         G_SQRT2. M_PI etc aren't necessarily in <math.h> in strict ISO C
423         implementations.
424
425         * glib.def: Add g_strcanon.
426
427         * gtree.c (g_tree_node_rotate_left): Remove unused variables.
428
429         * gwin32.c (g_win32_opendir): Remove unneeded statement.
430
431 Thu May  4 02:04:46 2000  Tim Janik  <timj@gtk.org>
432
433         * configure.in (STRIP_DUMMY): some Make 3.79 $(strip ) versions are
434         broken and require an empty arg, give it to them.
435
436 Fri Apr 28 23:54:35 2000  Tim Janik  <timj@gtk.org>
437
438         * setup things for a new sub-library libgobject:
439
440         * Makefile.am (SUBDIRS): added gobject
441
442         * glib-config.in: feature -lgobject.
443
444         * configure.in (AC_OUTPUT): generate gobject/Makefile.
445
446         * glib.m4 (AM_PATH_GLIB): feature gobject module.
447
448         * glib.spec.in: added %{prefix}/lib/libgobject-1.3.so.*
449
450 Fri Apr 28 21:41:49 2000  Tim Janik  <timj@gtk.org>
451
452         * glib.h: added G_STRLOC macro.
453         G_STRUCT_OFFSET(): signedness corrections.
454         (G_CSET_DIGITS): list 0-9.
455         * gscanner.c (g_scanner_config_template): use G_CSET_DIGITS.
456
457         * glib.h: 
458         * gstrfuncs.c:
459         (g_strdown):
460         (g_strup):
461         (g_strreverse): return the modified string instead of void, so
462         calls to these functions can be nested.
463         (g_strcanon): new function, canonicalizes string according to
464         a given character set.
465
466 Fri Apr 28 19:45:16 2000  Tim Janik  <timj@gtk.org>
467
468         * gasyncqueue.c (g_async_queue_unref): get rid of an unused variable.
469
470 Wed May 10 19:52:44 2000  Owen Taylor  <otaylor@redhat.com>
471
472         * glib.m4: Print found version when test succeeds.
473
474 2000-05-04  Tor Lillqvist  <tml@iki.fi>
475
476         * makefile.cygwin.in
477         * tests/makefile.cygwin.in: Include the common makefile snippet
478         from ../build/win32.
479
480         Maybe CVSROOT/modules should be changed so that the 'build' module
481         is included within the glib module (and gtk+, and gimp, and maybe
482         others later), in the same way as the 'macros' module is included
483         in lots of GNOME CVS modules?
484
485 2000-05-02  Tor Lillqvist  <tml@iki.fi>
486
487         * glib.def: Add new functions.
488
489         * makefile.{cygwin,msc}.in (glib_OBJECTS): Add new object files.
490
491         * tests/makefile.{cygwin,msc}.in: Add threadpool-test.
492
493 2000-04-28  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
494
495         * gasyncqueue.c: New File implementing an asynchronous queue to be
496         used for asynchronous inter-thread communication.
497         
498         * gthreadpool.c: New File implementing a thread pool to be used
499         for distributing work among several threads. 
500
501         * glib.h: Added the type and function declarations for these two
502         types.
503
504         * tests/threadpool-test.c: New File implementing a test for the
505         thread pool. This also checks the asynchronous queue underlying
506         the thread pool.
507
508         * tests/Makefile.am: Changed accordingly.
509         
510 2000-04-26  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
511
512         * configure.in: Look for both pthread_create and pthread_join in
513         the thread library. Some systems define one of them, but not both
514         in libc. Arghh. Now we really start a thread and join it later and
515         check, whether the thread to actually ran.
516
517         * glib.h, gcache.c, gtree.c: Changed the 'value' parameter of
518         g_cache_remove from gpointer to gconstpointer. Dito for the 'key'
519         parameter of g_tree_lookup and g_tree_remove and the 'data'
520         parameter of g_tree_search. This function now takes a function of
521         type GCompareFunc instead of GSearchFunc. This fixes Bug
522         #8267. Thanks to Juan Toledo <toledo@users.sourceforge.net> for
523         pointing that out.
524
525         * glib.h: Removed declaration of GSearchFunc.
526
527         * gmem.c: s/GSearchFunc/GCompareFunc/.
528
529 2000-04-19  Tor Lillqvist  <tml@iki.fi>
530
531         * glib.def: Update entry point list.
532
533 2000-04-19  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
534
535         * glib.h (G_TRYLOCK): Made the debugging G_TRYLOCK call also work
536         for compilers with funny G_STMT_(START|END) macros.
537
538         * tests/thread-test.c: Implemented a check for that.
539
540         * gutils.c (g_getenv): Changed the win32 part of this function to
541         be thread safe and to make the returned environment string
542         persistent to match the UN*X behavior. This is again a response to
543         Bug #8983.
544
545         * glib.h (G_LOCK_NAME): Removed parentheses around the lock name,
546         as that seems to cause problems for some compilers and really
547         isn't necessary.
548
549 Wed Apr 19 08:32:32 2000  Tim Janik  <timj@gtk.org>
550
551         * gscanner.c (g_scanner_new): make sure that
552         scanner->config->cset_skip_characters is "" instead of NULL, so we
553         don't segfault further on.
554
555 2000-04-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
556
557         * glib.h, glist.h, gslist.h: Changed the 'data' parameters from
558         gpointer to gconstpointer for the functions
559         g_(list|slist)_(remove|find|find_custom|index), as they do not
560         change this parameter. This fixes bug #4836.
561
562         * glib.h: Changed comment for g_getenv to reflect, that the
563         returned memory must not be freed. Fixes bug #8983.
564
565 2000-04-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
566
567         * configure.in, acconfig.h: Add configure test for garbage
568         collector friendliness for GLib. If enabled, ENABLE_GC_FRIENDLY
569         will be defined.
570
571         * garray.c, ghash.c, glist.c, gmain.c, gmem.c, gnode.c, gqueue.c,
572         gslist.c, gtree.c: If ENABLE_GC_FRIENDLY is defined, NULLify all
573         memory released by the user, but cached by GLib. This lets a
574         garbage collector have a more correct view of the actually used
575         memory.
576         
577         * garray.c, glib.h: Added g_(array|ptr_array|byte_array)_sized_new
578         functions, that reserve a certain amount of memeory for the array
579         at creation time to avoid reallocation. Fixes bug #6707 from
580         Charles Kerr <ckerr@osserver1.nssl.noaa.gov>.
581
582         * glib.h, gqueue.c, tests/queue-test.c (main): Renamed
583         g_queue_create to g_queue_new in conformance to all other GLib
584         data types.
585
586 2000-04-07  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
587
588         * grand.c (g_rand_new): Fixed bug. Thanks to Marko Kreen
589         <marko@l-t.ee> for reporting that.
590
591 2000-03-26  Tor Lillqvist  <tml@iki.fi>
592
593         * README.win32: Tell about using the mingw-based gcc, which is
594         much easier than modifying the cygwin gcc to product mingw code
595         for the msvcrt runtime.
596
597         * makefile.cygwin.in (WIN32APIHEADERS): Kludge to make it work
598         with a "pure" mingw gcc, too.
599
600 2000-03-24  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
601
602         * garray.c: Made GArray behave correctly. Now zero_terminated
603         really means, that the element array->data[array->len] exists and
604         is zeroed, and clear means that any unassigned elements obtained
605         through g_array_set_size (the only way to get unassigned elements
606         AFAICT) are zeroed. Added some macros to make the code more
607         obvoius. Also made GPtrArray zero elements after
608         g_ptr_array_set_size. This is done in a portbale way (assignment
609         of NULL instead of just memsetting it to zero), though that might
610         be more portability than we actually want.
611
612         * Makefile.am, gthread/Makefile.am, gmodule/Makefile.am,
613         tests/Makefile.am: Added various win32 related *.in files to
614         EXTRA_DIST to let 'make distcheck' procude all the corresponding
615         files, which it silently fails to do currently.
616
617 2000-03-23  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
618
619         * configure.in: After finding the right thread library (containing
620         e.g. pthread_create) we now search for the right realtime library
621         (containing e.g. sched_get_priority_max). Makes the output of the
622         thread related libraries correct. 
623
624         * gtimer.c (g_usleep): The current implementation of g_usleep
625         (simply calling select) doesn't work reliable for multi-threaded
626         programs on some platforms (bad omen for the main loop....), so I
627         changed the implementation for thread-using programs to wait for a
628         GCond for the specified amount of time (NB: sleep and usleep are
629         not MT-safe in general, because they often use signals).
630
631 Wed Mar 22 16:49:57 2000  Owen Taylor  <otaylor@redhat.com>
632
633         * gmem.c (g_mem_chunk_area_compare): Fix indentation.
634
635 2000-03-22 Elliot Lee <sopwith@redhat.com>
636
637         * gmem.c (g_mem_chunk_area_compare): Fix 64-bitness bug in
638         comparing two pointers more than 4G apart.
639
640 2000-03-22  Tor Lillqvist  <tml@iki.fi>
641
642         * gutils.c: Move Win32-only includes after inclusion of glib.h, so
643         that G_OS_WIN32 is defined.
644
645         * glibconfig.h.win32.in: Add GSystemThread.
646
647 2000-03-22  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
648
649         * gutils.c (g_get_current_dir): Ok, Marcus Brinkmann
650         <Marcus.Brinkmann@ruhr-uni-bochum.de> convinced me, that 128 KB
651         path length might not be enough for the HURD. So I changed the
652         loop to at least avoid an integer overflow, which could happen at
653         beyond 2GB size ;-)
654
655         * configure.in: Test for sched_yield as the native yield function
656         first. Corrected typo g_thread_sleep -> g_usleep. Corrected
657         message for the pthread_create test. Negative Priorities are
658         allowed (and used on Solaris), so consider
659         sched_get_priority_min failed only if it returns -1, not <0. Check
660         for sched_get_priority_min also in -lrt, if not found in -lpthread
661         alone and add -lrt to G_THREAD_LIBS then. Remove special case
662         handling of priorities for older solaris versions and posix
663         threads. Thanks to Wan-Teh Chang <wtc@netscape.com> for suggesting
664         some of those changes.
665         
666         * config.guess, config.sub, ltconfig, ltmain.sh:
667         Upgrade to libtool 1.3.4.
668
669 2000-03-21  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
670
671         * glib.h, configure.in, gutils.h: always define G_GNUC_EXTENSION,
672         even when not needed by GLib. That's actually also the way, the
673         GLib reference manual describes that macro. Therefore I had to
674         remove the lonesome #include <glibconfig.h> in gutils.c, which
675         doesn't seem to be needed there however. This change should make
676         Ben Gertzfield <che@debian.org> happy.
677
678         * gutils.c: Furthermore two warnings in gutils.c were voided,
679         which crept in due to my last change.
680
681         * gutils.c (g_get_current_dir): Allocate only up to 128KB for a
682         pathname. While this is an arbitrary value just like 2048, it
683         seems to be enough (after all, even 4GB is an arbitrary value).
684
685 2000-03-20  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
686
687         * gmain.c (g_main_poll): Warn in case of an error during the call
688         to poll(2). Closes Bug#7564 as reported by David Helder
689         <dhelder@umich.edu>.
690
691         * gutils.c (g_get_current_dir): Make g_get_current_dir work on
692         systems with unlimited pathname length like the HURD (It worked
693         there before, but only for pathes shorter than 2048). Closes
694         Bug#4525 as reported by Marcus Brinkmann
695         <Marcus.Brinkmann@ruhr-uni-bochum.de>.
696
697 2000-03-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
698
699         * giounix.c (g_io_unix_write, g_io_unix_read): Interpret EINTR as
700         G_IO_ERROR_AGAIN.
701
702 2000-03-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
703
704         * configure.in: Added the missing POSIX_NO_YIELD and
705         POSIX_NO_PRIORITIES warning messages.
706
707         * configure.in: Use AC_TRY_RUN instead of AC_TRY_LINK, to test for
708         real thread support. On solaris pthread_create can be linked to
709         even in -lc, but it doesn't work then.
710
711         * configure.in: Don't use priorities for threads, when the
712         minimal/maximal priorities couldn't be determined at configure
713         time.
714         
715         * configure.in, gthread.c: Always define GSystemThread in
716         glibconfig.h to represent a system thread.
717
718         * configure.in: Do not use native recursive threads, when
719         possibe. We use some features, that they do not expose (namely the
720         depth counter).
721
722         * glib.h, gthread.c: Redefined GStaticRecMutex. The functions are
723         now implemented in a different way, which should be way
724         faster. Alsothere are now functions g_static_rec_mutex_unlock_full
725         and g_static_rec_mutex_lock_full to leave/enter a recursive mutex
726         completly.
727
728         * gthread.c (g_thread_self): Do not test the system_thread to be
729         non-zero to speed things up.
730         
731         * gthread.c (g_mutex_init): Therefore set the system_thread of the
732         main thread here.
733
734         * tests/thread-test.c: Rerun all tests once again, but this time
735         we fool the system into thinking, that the available thread system
736         is not native, but userprovided.
737         
738 2000-03-13  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
739
740         * gqueue.c (g_queue_push_tail_link, g_queue_push_head_link): We
741         want the next and prev pointer of the inserted link to be NULL.
742
743 2000-03-06  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
744
745         * configure.in: Another small change to the pthread_.. search
746         pattern. Should work *now* for AIX.
747
748 2000-03-04  Tor Lillqvist  <tml@iki.fi>
749
750         * gwin32.c (g_win32_error_message): New function that returns the
751         message string for a Win32 error code.
752
753         * glib.h: Declare it.
754
755         * glib.def: Export it, plus g_node_copy.
756
757 2000-03-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
758
759         * configure.in: Make the search for pthread_attr_... prototypes
760         find names at the start of a line also, like it is on AIX. Thanks
761         to Valdis Kletnieks <Valdis.Kletnieks@vt.edu> for the info.
762
763 Wed Mar  1 10:39:39 2000  Tim Janik  <timj@gtk.org>
764
765         * gslist.c (g_slist_reverse): minor optimization.
766
767         * testglib.c (g_node_test): added a couple of tests for
768         g_node_copy().
769
770         * glib.h:
771         * gnode.c (g_node_copy): new function to copy subtrees,
772         supplied by dbsears@ix.netcom.com.
773         changed iterator to walk the children list backwards, so
774         we get down from O(n^2) to O(n).
775
776         * gnode.c (g_node_first_sibling): applied patch from
777         dbsears@ix.netcom.com to optimize access if node->parent
778         is present.
779
780         * gutils.c (g_get_any_init): backed out HAVE_PW_GECOS check around
781         assignment of g_real_name, sicne HAVE_PW_GECOS is never defined and
782         thus breaks the original code.
783
784         * merged changes from 1.2.7.
785
786 Fri Jan 28 11:37:41 2000  Owen Taylor  <otaylor@redhat.com>
787
788         Bug #4156 - Changes vaguely modelled after Scott Gifford's patch
789
790         * gtimer.c (g_timer_elapsed): Never report negative times -
791         clip times to 0.
792
793         * gmain.c (g_timeout_prepare): Guard against unexpected
794         clock shifts by never setting a timeout of more than
795         data->interval msecs.
796
797 2000-02-27  Tor Lillqvist  <tml@iki.fi>
798
799         * glib.def: Add new functions.
800
801 2000-02-23  Tor Lillqvist  <tml@iki.fi>
802
803         * README.win32: Add a missing step to the setup instructions for
804         gcc-2.95.2. Thanks to Arnaud Charlet.
805
806         * glib.def: Add missing entry point.
807
808 2000-02-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
809
810         * configure.in: Changed GCC version test to also accept major
811         versions > 2. Thanks to Ben Gertzfield <che@debian.org> for
812         pointing this out.
813
814 Thu Feb 17 12:53:44 2000  Tim Janik  <timj@gtk.org>
815
816         * gstring.c: changed g_str_hash() to a 31 bit version based on
817         a submission by Karl Nelson and hand optimized ad absurdum by
818         various people ;)
819
820         * gstring.c: applied patch from havoc for new gstring functions,
821         added some more sanity checks, coding style fixups.
822
823 2000-02-13  Havoc Pennington  <hp@pobox.com>
824
825         * tests/string-test.c (main): Add tests for the new GString 
826         features
827
828         * testglib.c (main): Add tests for the new GString features
829
830         * gstring.c (g_string_insert_len): New function; insert 
831         a given length of string at a given position. 
832         (g_string_append): reimplement in terms of g_string_insert_len
833         (g_string_append_len): new function
834         (g_string_insert_c): accept -1 for "pos" arg to mean "append"
835         (g_string_append_c): reimplement in terms of g_string_insert_c
836         (g_string_prepend): reimplement in terms of g_string_insert_len
837         (g_string_prepend_len): new function
838         (g_string_prepend_c): reimplement in terms of g_string_insert_c
839         (g_string_insert): reimplement in terms of g_string_insert_len
840
841         * glib.h: Declare g_string_insert_len, g_string_append_len,
842         g_string_prepend_len
843         
844 Sun Feb 13 08:16:47 2000  Tim Janik  <timj@gtk.org>
845
846         * configure.in: wtf??? someone destroyed the configure.in, reverting to
847         an older version from Feb 4 which apears to still work.
848
849 2000-02-07  Tor Lillqvist  <tml@iki.fi>
850
851         * gmodule.rc.in gthread.rc.in: Move to corresponding subdirectories.
852
853         * Makefile.am
854         * gmodule/Makefile.am
855         * gthread/Makefile.am: Change accordingly.
856         
857         * makefile.cygwin: Corresponding changes, some cleanup.
858
859 2000-02-05  Tor Lillqvist  <tml@iki.fi>
860
861         * glib.rc.in gmodule.rc.in gthread.rc.in: New files, for putting
862         version info in the DLLs on Win32.
863
864         * Makefile.am: Generate corresponding *.rc files and distribute
865         them.
866
867         * makefile.cygwin.in: Add rules to automatically bump a "build
868         number" in the version info in the rc files each time the DLL is
869         built. But do this only for the person who releases binaries. If
870         others build the DLLs, the build number is set to zero.
871
872 Fri Feb  4 19:36:05 2000  Tim Janik  <timj@gtk.org>
873
874         * glib.h: 
875         * gdataset.c: return stolen data from g_datalist_id_remove_no_notify()
876         and g_dataset_id_remove_no_notify() to avoid second lookup for common
877         use.
878
879 2000-02-01  Tor Lillqvist  <tml@iki.fi>
880
881         * glib.h
882         * gstrfuncs.c (g_filename_to_utf8, g_filename_from_utf8): New
883         functions for conversion between UTF-8 and the encoding expected
884         by C runtime functions like open() and stat(), and returned by
885         readdir().
886
887         Implement them on Win32 where we use the system "ANSI" codepage,
888         which might be single-byte or double-byte. On Unix, just skip the
889         issue for now and provide dummy implementations that return a copy
890         of the argument.
891
892         * README.win32
893         * build-dll
894         * glib.def: Minor updates.
895
896 Wed Jan 26 05:24:38 2000  Tim Janik  <timj@gtk.org>
897
898         * glib.h:
899         * gmain.c: s/current_time/dispatch_time/ for the dispatch() handlers.
900         refetch the current time after invocation of poll() to cover up for
901         the time spent in that function call.
902
903 Fri Jan 21 10:18:24 2000  Owen Taylor  <otaylor@redhat.com>
904
905         * glib.h (G_N_ELEMENTS): Added G_N_ELEMENTS macro to determine
906         the number of elements in an array.
907
908 Sun Jan  9 13:28:36 2000  Tim Janik  <timj@gtk.org>
909
910         * gstrfuncs.c (g_strtod): correctly fetch the current locale,
911         fix from owen.
912
913 1999-12-16  Tor Lillqvist  <tml@iki.fi>
914
915         * gmodule/gmodule-win32.c: Use FormatMessage to translate system
916         error codes into textual messages.
917
918 1999-11-25  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
919
920         * glib.h (G_TRYLOCK): This of course should return TRUE in a
921         program with a thread-disabled GLib.
922
923 1999-11-18  Tor Lillqvist  <tml@iki.fi>
924
925         * glib.def: g_strjoin was missing.
926
927 1999-11-16  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
928
929         * acconfig.h, config.h.win32.in, configure.in: Renamed
930         GLIB_SIZEOF_PTHREAD_T to GLIB_SIZEOF_SYSTEM_THREAD to reflect
931         changed meaning.
932
933         * configure.in: Cope with systems, that have a pthread_t type,
934         that is not a pointer. Hint from Karl Nelson
935         <kenelson@ece.ucdavis.edu>. Define GLIB_SIZEOF_SYSTEM_THREAD to 4
936         for Solaris. Cope with systems, that have no default mutex
937         initialize, like obviously most DCE systems.
938
939         * glib.h, gthread.c: Changed the prototype of thread_create and
940         thread_self to return the system thread into provided memory
941         instead of a return value. This is necessary, as HPUX has a
942         pthread_t, that is bigger than the biggest integral type there.
943
944         * gthread.c: system_thread is no longer a pointer, but an memory
945         area of size GLIB_SIZEOF_SYSTEM_THREAD. Changed the
946         zeroinitialization and the tests for zeroness accordingly.
947
948 1999-11-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
949
950         * configure.in: Create docs/glib-config.1 from
951         docs/glib-config.1.in. Makes 'make distcheck' happy (and me too).
952
953         * glib-config.1: Removed from CVS, as it is a generated file.
954
955 1999-11-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
956
957         * configure.in: Make the test for getpwuid_r work on newer AIX
958         versions, too. Still works on Solaris and Linux. Patch from Craig
959         Rodrigues <rodrigc@mediaone.net>.
960
961 1999-11-08  Tor Lillqvist  <tml@iki.fi>
962
963         * gwin32.c (g_win32_getlocale): Look at env vars LC_ALL, LC_CTYPE
964         and LANG first. Some refinements to the sublanguage logic.
965
966 1999-11-04  Tor Lillqvist  <tml@iki.fi>
967
968         * makefile.{cygwin,msc}.in: Add gwin32 object. Add rule to make .i
969         (preprocessed source) files.
970
971 1999-11-01  Tor Lillqvist  <tml@iki.fi>
972
973         * glib.h
974         * glib.def: Rename Win32-only functions from gwin_* to g_win32_*
975         to match the GLib naming conventions.
976
977         * gutils.c
978         * gwin32.c
979         * testglib.c
980         * Makefile.am: Move the Win32-only functions to the new
981         file gwin32.c
982
983 1999-10-31  Tor Lillqvist  <tml@iki.fi>
984
985         * gutils.c (gwin_getlocale): New Win32-specific function, returns
986         a Unixish current locale string (en, zh_TW etc).
987
988         * glib.h: Declare it.
989
990         * glib.def: Export it.
991
992         * testglib.c: Test it.
993
994         * gmessages.c (Win32: ensure_stdout_valid): Some improvements,
995         make sure we don't call AllocConsole several times, which I think
996         has happened.
997
998 Sun Oct 31 18:55:01 1999  ape@spacetec.no  (Asbjorn Pettersen)
999
1000         * gcache.c (g_cache_remove): Test if node is NULL.
1001         If not tested, GIMP's script-fu will crash. 
1002
1003 Sun Oct 17 18:11:40 1999  Tim Janik  <timj@gtk.org>
1004
1005         * gdataset.c (g_data_set_internal): remove g_dataset_global_lock around
1006         destroy() notification here as well.
1007
1008 1999-10-15  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1009
1010         * gdataset.c (g_datalist_clear_i): Avoid Freezing, when g_datalist
1011         is called recursivly. Reported by Ola Andersson <rand@ling.umu.se>.
1012
1013 Tue Oct 12 14:17:12 1999  Tim Janik  <timj@gtk.org>
1014
1015         * glib.h: removed useless g_string(x) macro that cluttered the namespace
1016         and was just a poor wrapper around the cpp '#' symbol, use #x if you
1017         need to work around this.
1018         added new macro G_STRINGIFY(arg) that will convert arg to a string,
1019         no matter whether it contains macros or not.
1020
1021 1999-10-12  Tor Lillqvist  <tml@iki.fi>
1022
1023         * config.h.win32.in: Define the new GLIB_SIZEOF_* constants here,
1024         too.
1025
1026         * glib.h: Small Win32 comments improvement.
1027
1028 Tue Oct 12 12:16:12 1999  Tim Janik  <timj@gtk.org>
1029
1030         * gmessages.c (g_printf_string_upper_bound): completly new implementation
1031         for printf string upper bounds calculation.
1032         we handle all glibc 2.1 format specifiers now, except for positional
1033         parameters (%nn$...) and wide char strings, plus some obscure upper
1034         case variants of the standard conversions. this fixes a lot of
1035         bugs in the old code, i.e.
1036         - NULL format strings
1037         - floats with exponents >+24
1038         - %G
1039         - precision specifications in general
1040         - negative field widths
1041         - %p for SIZEOF_VOID_P > 4 platforms
1042         we now issue warnigns in places where the old code would have
1043         caused buffer overruns anyways. warnings are suppressed when invoked
1044         from glogv(), to avoid infinite recursions if someone passes a log
1045         message that comes with really obscure format specifications.
1046
1047 Tue Oct 12 11:49:00 1999  Tim Janik  <timj@gtk.org>
1048
1049         * gstrfuncs.c: nuked old g_printf_string_upper_bound() version.
1050
1051 Tue Oct 12 03:34:40 1999  Tim Janik  <timj@gtk.org>
1052
1053         * glib.h: added GFloatIEEE754 and GDoubleIEEE754 unions to access sign,
1054         mantissa and exponent of IEEE floats and doubles (required by the new
1055         version of g_printf_string_upper_bound). the unions are endian specific,
1056         we handle G_LITTLE_ENDIAN and G_BIG_ENDIAN as of currently. ieee floats
1057         and doubles are supported (used for storage) by at least intel, ppc and
1058         sparc, reference:
1059         http://twister.ou.edu/workshop.docs/common-tools/numerical_comp_guide/ncg_math.doc.html
1060         
1061 Mon Oct 11 18:01:49 1999  Tim Janik  <timj@gtk.org>
1062
1063         * configure.in: added additional checks to figure sizes of size_t,
1064         ptrdiff_t and intmax_t (required by g_printf_string_upper_bound).
1065
1066 Wed Oct  6 12:44:23 PDT 1999 Manish Singh <yosh@gimp.org>
1067
1068         * configure.in: blah. use G_WITH_CYGWIN instead of G_HAVE_CYGWIN
1069
1070 1999-10-05  Tor Lillqvist  <tml@iki.fi>
1071
1072         * glib.h: (Win32) Drop the mapping of POSIX function names to the
1073         underscored versions, it's unnecessary after all. With MSVC we get
1074         them from oldnames.lib, with gcc-2.95 and mingw32 from
1075         -lmoldname-msvc. Add comment about what headers to include for
1076         prototypes.
1077
1078         * glibconfig.h.win32.in: Don't define WIN32 and NATIVE_WIN32.
1079
1080         * gerror.c (g_on_error_query): (Win32) Slightly increased verbosity.
1081
1082         * build-dll: Don't strip.
1083
1084         * tests/string-test.c tests/dirname-test.c: Use G_OS_WIN32.
1085
1086         * glib.def: Add g_thread_use_default_impl.
1087
1088 Sun Oct  3 19:46:55 PDT 1999 Manish Singh <yosh@gimp.org>
1089
1090         * configure.in: use G_HAVE_CYGWIN instead of G_OS_FEATURE_CYGWIN
1091
1092 Sun Oct  3 19:25:42 PDT 1999 Manish Singh <yosh@gimp.org>
1093
1094         * acconfig.h
1095         * configure.in
1096         * glibconfig.h.win32: G_OS_FOO #defines. I *think* I got the cygwin
1097         and beos stuff right, but I haven't tested it. The respective
1098         porters should fix any screwups
1099
1100         * glib.h
1101         * gerror.c
1102         * gmain.c
1103         * gmessages.c
1104         * gscanner.c
1105         * gthread.c
1106         * gtimer.c
1107         * gutils.c
1108         * testglib.c: use G_OS stuff
1109
1110 Wed Sep 22 01:53:18 1999  Tim Janik  <timj@gtk.org>
1111
1112         * glib.h (NULL): define NULL as (0L) if __cplusplus is defined, to
1113         avoid "ANSI C++ forbids implicit conversion from `void *' in argument
1114         passing" errors upon NULL usage in C++ programs (gcc-2.95 is on crack
1115         for erroring out on this, instead of just issueing a warning).
1116
1117         * glib.h (g_trash_stack_pop): use uncasted NULL again.
1118         
1119 Fri Sep 17 10:24:45 1999  Tim Janik  <timj@gtk.org>
1120
1121         * gmem.c (g_mem_chunk_compute_size) (g_mem_chunk_new): applied patch
1122         from Soeren Sandmann <sandmann@daimi.au.dk>, to force mem chunk's area
1123         sizes to be a multitiple of atom_size, and to eliminate the MAX_MEM_AREA
1124         restriction of 65536 bytes. we also catch cases where users pass an area
1125         size < atom size with a return_if_fail statement now (which is ok,
1126         because previously this lead to memory corruption anyways).
1127
1128 Thu Sep 16 13:19:54 1999  Tim Janik  <timj@gtk.org>
1129
1130         * glib.h (g_trash_stack_pop): add explicit (GTrashStack*) cast for NULL
1131         pointer to cure ANSI C++ error.
1132
1133 Mon Sep 13 23:25:59 1999  Tim Janik  <timj@gtk.org>
1134
1135         * gmessages.c (g_logv): in case we have to abort the program,
1136         debugging is enabled and we are not called recursively, try
1137         to abort with raise (SIGTRAP) first, so developers may ignore
1138         certain failure conditions during debugging stage.
1139
1140 Thu Aug 26 15:09:36 1999  Tim Janik  <timj@gtk.org>
1141
1142         * Makefile.am:
1143         * gmodule/Makefile.am:
1144         * gthread/Makefile.am: added --export-dynamic so we can load dynmic
1145         modules, (required, according to the libtool 1.3.3 docu).
1146
1147 1999-07-23  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1148
1149         * grand.c (g_rand_new): Use /dev/urandom, as it doesn't block,
1150         which /dev/random might do. Do not XOR the time, when getting the
1151         seed form /dev/urandom, as this is good itself. Prevent the
1152         initial seed from being zero, which causes the PRNG to produce
1153         only zeros. Hints from Colin Plumb <colin@pgp.com>.
1154
1155 1999-08-17  Tor Lillqvist  <tml@iki.fi>
1156
1157         * glib.h (g_trash_stack_push): Add a cast.
1158
1159         * gslist.c
1160         * glist.c: Make the inline functions static inline, and add
1161         separate extern wrappers. Not all compilers produce callable entry
1162         points for inline functions, even if gcc does.
1163
1164 Sun Aug 15 02:47:14 1999  Tim Janik  <timj@gtk.org>
1165
1166         * glib.h (g_trash_stack_pop): eliminate memset() call, since string.h
1167         has not neccessarily been included prior to glib.h.
1168
1169 Mon Aug  2 21:03:10 1999  Tim Janik  <timj@gtk.org>
1170
1171         * configure.in: added --enable-msg-prefix option.
1172
1173         * gmessages.c (g_log_default_handler): feature "prg_name (pid:%u): "
1174         if --enable-msg-prefix was selected (use "(process:%u): " if
1175         g_get_prgname () returns NULL, along the lines of g_on_error_query).
1176
1177 1999-08-03  Tor Lillqvist  <tml@iki.fi>
1178
1179         * glib.h
1180         * gstrfuncs.c
1181         * tests/strfunc-test.c: Rename g_strccpy to g_strcompress and
1182         g_strecpy to g_strescape per Tim Janik's suggestion. Dropped the
1183         destination parameter, always g_malloc a new string.  Fix bug in
1184         g_strcompress, octal digits were gobbled up without limit, should
1185         use max three.
1186
1187         Sources that use g_strescape must have ifdefs to be compilable
1188         both with GLib 1.2 and 1.3.
1189
1190 Sat Jul 31 17:52:03 PDT 1999 Manish Singh <yosh@gimp.org>
1191
1192         * glib.h
1193         * gstrfuncs.c: the #define for g_strescape interfered with the
1194         compilation of the function, so just remove the function and
1195         note that it's deprecated in the header
1196
1197 1999-08-01  Tor Lillqvist  <tml@iki.fi>
1198
1199         * gstrfuncs.c (g_strccpy, g_strecpy): New functions.
1200
1201         * glib.h: Declare and document them. Define the deprecated
1202         g_strescape as a macro that calls g_strecpy.
1203
1204         * tests/strfunc-test.c (main): Test them.
1205
1206         * makefile.{cygwin,msc}.in
1207         * tests/makefile.{cygwin,msc}.in: Remove gstack and its test
1208         program.
1209
1210         * glib.def: Additions and removals.
1211
1212         * README.win32: Improve gcc build instructions.
1213
1214         * build-dll: Also build import library for MSVC.
1215
1216 Sat Jul 24 20:11:35 1999  Tim Janik  <timj@gtk.org>
1217
1218         * merged GLib 1.3.0 with glib-1.2.3 from Fri Jul 16 22:18:36.
1219         * incorporated proposed cleanups from gtk-devel-list.
1220
1221         * bumped version number to GLib-1.3.1
1222
1223         * glib.h:
1224         * gqueue.c:
1225         * gstring.c:
1226         * glist.c:
1227         removed string tokenisation (we got g_strsplit() and g_strjoin()
1228         already) and readline functions.
1229         s/g_list_delete/g_list_delete_link.
1230         implemented g_slist_delete_link.
1231         removed notion of g_ATEXIT() macro in glib.h, this is an *internal*
1232         macro, g_atexit() is provided for public consumption.
1233         added GTrashStack inline utility functions.
1234         reimplement double eneded queues.
1235         removed GStack implementation, people can use a queue or a (singly)
1236         linked list for this task.
1237         deprecated g_strescape(), we need the SunOS variants here.
1238
1239         * gdate.c: added DEBUG_MSG() macro to wrap old messages.
1240         
1241         * *.*: CVS merges.
1242
1243         * upgrade to libtool 1.3.3.
1244
1245 1999-07-21  Tor Lillqvist  <tml@iki.fi>
1246
1247         Win32: With the latest gcc (2.95, pre-release), we can have binary
1248         compatibility with MSVC by using the switch -fnative-struct. No
1249         longer build DLLs with .gcc in the name when using gcc.
1250
1251         * README.win32: Renew gcc build instructions.
1252
1253         * build-dll: Comments change, handle also .a files.
1254
1255         * makefile.cygwin.in
1256         * tests/makefile.cygwin.in: Remove .gcc from DLL name.
1257         
1258 1999-07-13  Tor Lillqvist  <tml@iki.fi>
1259
1260         * README.win32: Correct URL for mingw runtime sources.
1261
1262         * build-dll: Combine commands with &&.
1263
1264         * glib.h: Map also rmdir() and hypot() for MSVCRT library.
1265
1266         * makefile.cygwin.in
1267         * tests/makefile.cygwin.in: New DLL naming style. GCC-compiled DLLs are
1268         now called *.gcc.dll, to avoid binary incompatibilities with
1269         MSVC-compiled versions.
1270
1271         * makefile.msc.in: Cosmetics.
1272
1273 1999-07-07  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1274
1275         * configure.in: Test for pthread_join rather than for
1276         pthread_create to determine the right thread-lib. Makes it work on
1277         mips-sgi-irix6.5. Hitn from to Jari Vuoksenranta
1278         <javu@piano.ux.phys.jyu.fi>.
1279
1280 1999-07-02  Tor Lillqvist  <tml@iki.fi>
1281
1282         * README.win32: Note about need to fix another bug in the mingw32
1283         headers.
1284
1285         * makefile.msc.in: Debugging turned on via an nmake variable,
1286         no need to edit the makefile.
1287
1288 1999-07-01  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1289
1290         * configure.in, acconfig.h, gutils.c: Added a g_memmove
1291         replacement for platforms without memmove, where bcopy can't
1292         handle overlapping copies and the corresponding checks, which is
1293         taken form the PERL Configure routine.
1294
1295         * glib.h: Updated the commentary about g_memmove to be right and
1296         more GLib-like.
1297         
1298         * configure.in: Removed test for rand_r, as it isn't used anymore.
1299
1300 1999-06-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1301
1302         * glib.h, grand.c: Finally removed the g_random_normal and
1303         g_rand_normal functions.
1304
1305 1999-06-28  Tor Lillqvist  <tml@iki.fi>
1306
1307         * glib.def: Add missing export of g_strncasecmp.
1308
1309 1999-06-21  Jose Mercado  <jmercado@mit.edu>
1310
1311         * glib.spec.in: Changed version number (1.1->1.3) in files section
1312         to allow rpm to build packages again.
1313
1314 1999-06-21  Tor Lillqvist  <tml@iki.fi>
1315
1316         * README.win32: Update the pthreads snapshot version we want.
1317         Advice how to hand-expand the makefile.*.in files.
1318
1319         * config.h.win32.in: Define values needed by Sebastian Wilhelmi's
1320         new thread stuff.
1321
1322         * glib.def: Add new functions.
1323
1324         * glibconfig.h.win32.in: Update the pthreads snapshot version.
1325         Fix typo.
1326
1327         * gthread.c: Include config.h, guard inclusion of unistd.h.  When
1328         using gcc on Win32, g_thread_functions_for_glib_use must be marked
1329         for export here, too.
1330
1331         * gtimer.c: Implement g_usleep on native Win32 using Sleep (which
1332         only has millisecond granularity, though).
1333         
1334         * makefile.cygwin.in
1335         * makefile.msc.in: Update pthreads snapshot version. File
1336         name changes. Remove testgthread.
1337
1338         * tests/makefile.cygwin.in
1339         * tests/makefile.msc.in: Add thread-test. Link with gthread lib.
1340
1341 1999-06-18  Jeff Garzik  <jgarzik@pobox.com>
1342
1343         * tests/Makefile.am:  Re-order tests in alpha order.
1344
1345 1999-06-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1346
1347         * configure.in: Changed test for pthread_attr_setstacksize from
1348         AC_TRY_COMPILE to AC_TRY_LINK.
1349
1350 1999-06-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1351
1352         * configure.in, acglib.m4, acconfig.h, glib.h, gthread.c:
1353         Completed the thread support in GLib. Thread creation,
1354         prioritizing threads, yielding, joining threads as well as
1355         reader/writer locks and recursive mutexes are now in place. Please
1356         test heavily on your platform. It is so far tested on
1357         Linux/i386/pthreads, Solaris/Sparc/pthreads and
1358         Solaris/Sparc/solaristhreads.
1359
1360         * gtimer.c, glib.h: Implement g_usleep (gulong microseconds) for
1361         thread safe sleeping. (sleep() is not MT-safe at all!)
1362
1363         * gutils.c: Avoid compiler warning.
1364
1365         * tests/Makefile.am, tests/thread-test.c: New program to test some
1366         aspects of the thread implementation.
1367
1368         * gthread.c, Makefile.am: Renamed from gmutex.c to reflect the
1369         change of content.
1370
1371         * configure.in: Purged all appearances of nspr. 
1372
1373 Wed Jun  2 11:42:46 PDT 1999 Manish Singh <yosh@gimp.org>
1374
1375         * acinclude.m4
1376         * config.guess
1377         * config.status
1378         * ltconfig
1379         * ltmain.sh: upgrade to libtool 1.3.2 (BeOS changes merged)
1380
1381 1999-05-29  Tor Lillqvist  <tml@iki.fi>
1382
1383         * gstrfuncs.c (g_strescape): Backslashify also '"' characters.
1384
1385         * glib.h: Document g_strescape.
1386
1387 1999-05-12  Tor Lillqvist  <tml@iki.fi>
1388
1389         * glib.h (Win32): Map fileno to _fileno for mingw32. Map fstat to
1390         _fstat.
1391
1392         * README.win32: Advice also to remove -lmoldname in the
1393         patch to the egcs-1.1.2 spec file.
1394
1395 Wed May 12 00:23:55 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
1396
1397         * gmodule/Makefile.am: Another small fix.
1398
1399 1999-05-08  Tor Lillqvist  <tml@iki.fi>
1400
1401         * Makefile.am tests/Makefile.am: Correct rules for making the
1402         win32-related files that are made from corresponding .in files.
1403         Is there a cleaner way than explicitly writing rules that invoke
1404         config.status?
1405
1406 Fri Jul 16 22:18:36 PDT 1999 Manish Singh <yosh@gimp.org>
1407
1408         * ltconfig
1409         * ltmain.sh: upgrade to libtool 1.3.3
1410
1411 1999-06-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1412
1413         * gdate.c, gstrfuncs.c, gstring.c: Fixed the use of the
1414         is..... and to..... macros, which take unsigned chars, not chars!
1415         Thanks to Morten Welinder <terra@diku.dk> for pointing this out.
1416
1417 Thu Jun  3 16:30:31 PDT 1999 Manish Singh <yosh@gimp.org>
1418
1419         * gerror.c (g_on_error_query): check isatty() before querying so
1420         we don't loop endlessly
1421
1422 Sat May 29 11:16:29 PDT 1999 Manish Singh <yosh@gimp.org>
1423
1424         * acinclude.m4
1425         * config.guess
1426         * config.status
1427         * ltconfig
1428         * ltmain.sh: upgrade to libtool 1.3.2
1429
1430 1999-05-26  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1431
1432         * gmain.c: provide a poll prototype for SunOS, as they do not do
1433         it self. Hint from Christian Parg <cparg@fs-design.de>.
1434
1435 Tue May 25 12:23:07 1999  Owen Taylor  <otaylor@redhat.com>
1436
1437         * gstrfuncs.c (g_strchug): Use g_memmove() not memmove().
1438         (Reported by Charles Levert <charles@comm.polymtl.ca>)
1439
1440 Mon May 10 22:03:52 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
1441
1442         * Released GLib 1.2.3
1443
1444 1999-05-08  Tor Lillqvist  <tml@iki.fi>
1445
1446         * Makefile.am tests/Makefile.am: Correct rules for making the
1447         win32-related files that are made from corresponding .in files.
1448         Is there a cleaner way than explicitly writing rules that invoke
1449         config.status?
1450         
1451 Sat May  1 10:18:01 PDT 1999 Manish Singh <yosh@gimp.org>
1452
1453         * acinclude.m4
1454         * config.guess
1455         * config.status
1456         * ltconfig
1457         * ltmain.sh: upgrade to libtool 1.3
1458
1459 1999-04-30  Tor Lillqvist  <tml@iki.fi>
1460
1461         * Makefile.am: Don't distribute glibconfig.h.win32.in, but
1462         glibconfig.h.win32. Generate it when making a dist. Also generate
1463         makefile.msc and config.h.win32 from corresponding .in files when
1464         making dist.
1465
1466         * configure.in: Also substitute @GLIB_INTERFACE_AGE@ and
1467         @GLIB_BINARY_AGE@ (needed in config.h.win32).
1468         
1469         * glibconfig.h.win32.in: Use static mutex structure and initial
1470         value corresponding to the 1999-04-07 snapshot of pthreads-win32.
1471
1472         * tests/Makefile.am: Distribute makefile.msc. Generate it when
1473         making dist.
1474
1475         * tests/makefile.msc.in: New file.
1476
1477         * tests/node-test.c: Include <stdlib.h> for exit().
1478
1479 Thu Apr 29 02:16:36 1999  Tim Janik  <timj@gtk.org>
1480
1481         * gstrfuncs.c: minor code cleanups.
1482
1483 Tue Apr 27 13:11:29 1999  Owen Taylor  <otaylor@redhat.com>
1484
1485         * gmain.c (g_main_poll): Mask out ERR HUP and NVAL from
1486         the events field so we don't give IRIX fits.
1487
1488 Tue Apr 20 08:42:22 1999  Tim Janik  <timj@gtk.org>
1489
1490         * gscanner.c (g_scanner_unexp_token): behave conservative with
1491         G_TOKEN_IDENTIFIER_NULL and always assume scanner->value.v_string
1492         to be "null" in that case.
1493
1494 1999-04-20  Havoc Pennington  <hp@pobox.com>
1495
1496         * gutils.c (g_vsnprintf):  When using the vsnprintf()
1497         implementation, '\0'-terminate the resulting string
1498         and return its length rather than -1.
1499
1500 Mon Apr 19 13:42:21 1999  Owen Taylor  <otaylor@redhat.com>
1501
1502         * gmain.c (g_main_iterate): Added missing
1503         #ifdef G_THREADS_ENABLED. (I never liked G_THREADS_ENABLED in
1504         the first place!)
1505
1506 1999-04-18  Havoc Pennington  <hp@pobox.com>
1507
1508         * gutils.c (g_snprintf): When using the vsnprintf()
1509         implementation, '\0'-terminate the resulting string
1510         and return its length rather than -1.
1511
1512 Fri Apr 16 06:52:07 1999  Tim Janik  <timj@gtk.org>
1513
1514         * gscanner.c (g_scanner_unexp_token): feature G_TOKEN_EOF as a valid
1515         expected token as well, so we get "- expected end of file" instead of
1516         "- expected (unknown) token <0>".
1517
1518 Tue Apr 13 16:16:14 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
1519
1520         * Released GLib 1.2.2
1521
1522 1999-04-12  Elliot Lee  <sopwith@mh69.mh.cuc.edu>
1523
1524         * g_strchug(): s/strcpy/memmove/
1525
1526 1999-04-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1527
1528         * configure.in: Adjusted the test for an unimplemented
1529         getpwuid_r. Info from Michael Pruett <mikep@ugcs.caltech.edu>.
1530
1531 Sun Apr 11 15:07:34 1999  Tim Janik  <timj@gtk.org>
1532
1533         * configure.in: bumped versin number to GLib 1.2.2, interface 2,
1534         binary 2.
1535         
1536         * NEWS: updates.
1537
1538 Sun Apr 11 14:37:06 1999  Tim Janik  <timj@gtk.org>
1539
1540         * gstrfuncs.c (g_strcasecmp): always check for s1, s2 != NULL.
1541
1542 Sat Apr 10 19:30:50 1999  Tim Janik  <timj@gtk.org>
1543
1544         * glib.h: removed braces around inline strings for the G_GNUC_FUNCTION
1545         and G_GNUC_PRETTY_FUNCTION macros, so the macros can be used for compile
1546         time string concatenation.
1547
1548 Thu Apr  8 19:53:19 1999  Owen Taylor  <otaylor@redhat.com>
1549
1550         * gmain.c (g_main_iterate): Check for two threads
1551         calling g_main_iterate at once.
1552
1553         * gmain.c: If the set of poll file descriptors changes
1554         during a call to poll(), abort that call, and start
1555         a new poll. My test program still segfaults
1556         obscurely on glibc 2.0 (in read()!!!), but now it works on
1557         glibc 2.1, so I'll blame something else for the other segfault.
1558
1559 1999-03-31  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1560
1561         * configure.in: Fixed slight bug, that made configure hang on some
1562         systems. Please do not merge this into 1.3 branch. It's taken care
1563         of differently there. Info from J. Rhett Aultman
1564         <cuplan@alley.gator.net>
1565         
1566 Wed Mar 24 21:23:47 CST 1999 Shawn T. Amundson <amundson@gtk.org>
1567
1568         * Released GLib 1.2.1
1569
1570         * README:
1571           INSTALL: 
1572           NEWS: 
1573           sanity_check: updated
1574
1575         * glibconfig.h.win32.in:
1576           Makefile.am:
1577           docs/glib-config.1.in:
1578           docs/Makefile.am: Added files used to generate new files.
1579
1580         * glibconfig.h.win32:
1581           docs/glib-config.1: Removed, now generated.
1582
1583         * configure.in: Added to output now-generated files.
1584         
1585 Tue Mar 23 13:43:39 PST 1999 Manish Singh <yosh@gimp.org>
1586
1587         * giounix.c: add user_data param to check and prepare functions
1588
1589 Mon Mar 22 03:54:43 1999  Tim Janik  <timj@gtk.org>
1590
1591         * glib.h:
1592         * gmain.c: add user_data to the GSource ->check and ->prepare functions,
1593         so it can be used to e.g. pass a GPollFd.
1594         (g_main_poll): only add poll records with an events mask != 0 to the
1595         fd_array. don't even bother calling poll_func() if fds=timeout=0.
1596         added debugging printouts around poll_func() invokation that can be
1597         enabled with #define G_MAIN_POLL_DEBUG.
1598
1599 Fri Mar 19 16:29:50 PST 1999 Manish Singh <yosh@gimp.org>
1600
1601         * acinclude.m4
1602         * config.guess
1603         * config.sub
1604         * ltconfig
1605         * ltmain.sh: upgrade to libtool 1.2f
1606
1607         * autogen.sh: libtool is not required to autogen glib
1608
1609         * acconfig.h: remove WITH_SYMBOL_UNDERSCORE (not explictly
1610         needed)
1611
1612 1999-03-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1613
1614         * gmem.c: Fixed another stupid fault of mine: Did
1615         s/g_static_/g_private_/g
1616
1617 Wed Mar 17 03:17:42 1999  Tim Janik  <timj@gtk.org>
1618         
1619         * configure.in bumped versin number to GLib 1.2.1, interface 1,
1620         binary 1.
1621         
1622         * NEWS: updates.
1623
1624         * glib.h: added GLIB_CHECK_VERSION() macro similar to
1625         GTK_CHECK_VERSION().
1626
1627 Sun Mar 14 17:50:35 1999  Tim Janik  <timj@gtk.org>
1628
1629         * gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements
1630         to g_return_if_fail().
1631         (g_mem_profile): 
1632         (g_mem_chunk_print): 
1633         (g_mem_chunk_info): removed some extraneous "\n"s at the end of the log
1634         messages.
1635
1636         * gtimer.c (g_timer_*): changed a bunch of g_assert() statements
1637         to g_return_if_fail().
1638         * grel.c (g_*): changed a bunch of g_assert() statements to
1639         g_return_if_fail() and added some extra ones to check relation != NULL.
1640
1641 1999-03-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1642
1643         * configure.in: Also accept _Pctime_r instead of ctime_r, while
1644         seraching for the right `_REENTRANT' flag. This is for Digital
1645         UNIX 4.0d. Thanks to Sascha Brawer <sb@adasys.ch>.
1646
1647 Tue Mar  9 23:25:50 1999  Tim Janik  <timj@gtk.org>
1648
1649         * configure.in: check for working realloc (NULL,).
1650         * gmem.c (g_realloc): use malloc() for initial allocation on systems
1651         where realloc(NULL,) will not work (this is the case on SunOS, reported
1652         by Tom Geiger).
1653
1654 Mon Mar  8 07:42:08 1999  Tim Janik  <timj@gtk.org>
1655
1656         * ghook.c (g_hook_unref): when !hook_list->is_setup, wrap the
1657         flag around the call to g_hook_free() to avoid spurious
1658         warnings (happens during destruction phase).
1659
1660 1999-03-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1661
1662         * glibconfig.h.win32, config.h.win32: Moved G_THREADS_IMPL_POSIX
1663         from config.h.win32 to glibconfig.h.win32
1664
1665         * acconfig.h, configure.in, config.h.win32: Added test for DCE
1666         versions of mutex_trylock and cond_timedwait. The win32 versions
1667         are posix, aren't they?
1668
1669 1999-03-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1670
1671         * gmem.c: Fixed a stupid cut'n'paste error of mine. Thanks to
1672         Friedrich Dominicus <Friedrich.Dominicus@inka.de>
1673
1674 1999-03-01  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1675
1676         * gutils.c (g_get_any_init): Fixed yet another bloody
1677         implementation of getpwuid_r on AIX. Thanks to Olaf Dietsche
1678         <olaf.dietsche+list.gtk@netcologne.de>. I would like a configure
1679         test better than that, but have no idea, how to do that easily.
1680
1681 Sun Feb 21 22:11:51 CST 1999  Shawn T. Amundson <amundson@gtk.org>
1682
1683         * Released GLib 1.2.0
1684
1685         * AUTHORS: updated
1686
1687 Wed Feb 24 00:08:42 CST 1999 Shawn T. Amundson <amundson@gtk.org>
1688
1689         * *.[ch]: inserted additional note to look for ChangeLog and
1690           AUTHORS file for a log of modifications.
1691
1692 Sun Feb 21 14:01:00 1999  Dr Mike <drmike@redhat.com>
1693
1694         * Made specfile generated, tweaked slightly
1695         
1696 Sat May  8 06:00:17 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
1697
1698         * configure.in
1699           gmodule/Makefile.am
1700           gthread/Makefile.am: Better testing reveals better
1701           methods.  Fixes for BeOS.
1702
1703 Sat May  8 01:52:29 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
1704
1705         * configure.in
1706           gerror.c
1707           gmain.c
1708           gstrfuncs.c
1709           gutils.c
1710           ltconfig
1711           ltmain.sh
1712           gmodule/Makefile.am
1713           gmodule/gmodule.c
1714           gmodule/gmoduleconf.h.in
1715           gmodule/gmodule-beos.c
1716           gthread/Makefile.am: Port to BeOS by myself and Richard Offer.
1717
1718 1999-05-06  Tor Lillqvist  <tml@iki.fi>
1719
1720         * makefile.msc.in makefile.cygwin.in glibconfig.h.win32.in
1721         config.h.win32.in tests/makefile.msc.in tests/makefile.cygwin.in:
1722         New files, used to generate corresponding non-.in files when
1723         making a dist. This is just so the version numbers will be kept in
1724         synch automatically.
1725
1726         * configure.in: Also substitute @GLIB_MAJOR_VERSION@,
1727         @GLIB_MINOR_VERSION@, and @GLIB_INTERFACE_AGE@.
1728         
1729         * Makefile.am tests/Makefile.am: Also distribute makefile.cygwin.
1730         
1731         * gerror.c (g_on_error_query): On Win32, put up a MessageBox and
1732         then exit.
1733
1734         * glib.def: Add a couple of functions.
1735         
1736 Sat May  1 10:26:20 PDT 1999 Manish Singh <yosh@gimp.org>
1737
1738         * acinclude.m4
1739         * config.guess
1740         * config.status
1741         * ltconfig
1742         * ltmain.sh: upgrade to libtool 1.3
1743
1744 1999-04-25  Tor Lillqvist  <tml@iki.fi>
1745
1746         * README.win32: More editing.
1747         * build-dll: Use gcc, not ld to link.
1748         * glib.h: On native Win32 use _unlink().
1749         * gscanner.c: Use corrent NATIVE_WIN32 feature test macro,
1750         not _MSC_VER.
1751         * gstring.c: Include <io.h> on Win32 for _read prototype.
1752         * gutils.c: Remove old IO channel code (was in #if 0).
1753         * makefile.cygwin: Don't need to link with kernel32 and msvcrt
1754         explicitly, they are included anyway.
1755
1756 1999-04-24  Tor Lillqvist  <tml@iki.fi>
1757
1758         Support added for building using a GNU toolchain on Win32,
1759         i.e. gcc -mno-cygwin on cygwin (a.k.a. mingw32, using egcs-1.1.2).
1760
1761         * README.win32: Updated.
1762         * build-dll makefile.cygwin tests/makefile.cygwin: New files.
1763         * glib.h glib.def glibconfig.h.win32: Slight updates. 
1764         * gmain.c: No need to include <fcntl.h> and <io.h> on Win32.
1765         * gmain.c gutils.c testglib.c tests/string-test.c: Test for
1766         NATIVE_WIN32, not _MSC_VER.
1767         * gmutex.c: Must declare g_thread_functions_for_glib_use as
1768         exported (using the GUTILS_C_VAR macro).
1769         * gutils.c gmodule/libgplugin_[ab].c: LibMain not needed.
1770         * gmodule/gmoduleconf.h.win32: Need underscore with gcc.
1771         * gthread/gthread.c: With gcc on Win32, must use memcpy to assign
1772         value of g_thread_functions_for_glib_use (?).
1773         * makefile.msc tests/makefile.msc: Cosmetics.
1774
1775 Fri Apr 23 14:29:25 BST 1999  Tony Gale <gale@gtk.org>
1776
1777         * glib.h: Fix typo in g_string_ncasecmp macro (by me).
1778           Add b_string_strncasecmp macro.
1779
1780 1999-04-22  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1781
1782         * gutils.c (g_get_any_init): use sysconf (_SC_GETPW_R_SIZE_MAX) as
1783         the new initinal bufsize for getpwuid_r on systems, that support
1784         this. Hint from Holger Duerer <H.Duerer@zait.uni-bremen.de>.
1785
1786 Sat Apr 17 20:55:13 BST 1999  Tony Gale <gale@gtk.org>
1787
1788         * glib.h, gstring.c: Add new g_string functions for reading
1789           from file/socket descriptors, and tokenising strings.
1790
1791           Added various g_string macros.
1792
1793 Tue Apr 13 23:28:32 1999  Tor Lillqvist  <tml@iki.fi>
1794
1795         * README.win32: Mention the tests directory.
1796
1797         * glib.def: Add the functions from grand.c.
1798
1799         * glibconfig.h.win32: Add unsigned max values, and the format
1800         strings.
1801
1802         * makefile.msc: Add grand.
1803
1804         * tests/{date-test,node-test}.c: Include <stdlib.h> for exit().
1805
1806         * tests/makefile.msc: New file.
1807
1808 1999-04-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1809
1810         * glib.h: Moved struct declaration up. Style fixes.
1811
1812         * grand.c: Style fixes. Only try to open /dev/random once.
1813
1814         * tests/rand-test.c (main): New tests; Slight bug fix. 
1815
1816 1999-04-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1817
1818         * grand.c, tests/rand-test.c: New files to implement the Mersenne
1819         Twister Pseudo Random Number Generator.
1820
1821         * glib.h, AUTHORS, Makefile.am, tests/Makefile.am: Changed
1822         accordingly.
1823
1824 Thu Apr  8 21:12:30 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
1825
1826         * Released GLib 1.3.0
1827
1828 1999-03-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1829
1830         * configure.in: Added a check for the right format to printf and
1831         scanf long longs. It is %qi instead of %lli on FreeBSD for
1832         whatever reason.
1833
1834 1999-03-28  Raja R Harinath  <harinath@cs.umn.edu>
1835
1836         * Makefile.am (glibconfig.h): Make sure `glibconfig.h' exists
1837         after the rule is fired.
1838         (install-exec-local): Install glibconfig.h only if the contents
1839         are different from the currently installed glibconfig.h.
1840
1841 1999-03-26  Raja R Harinath  <harinath@cs.umn.edu>
1842
1843         * Makefile.am (configexecincludedir): Rename from 
1844         configincludedir so that glibconfig.h will be installed 
1845         as part of `make install-exec'. 
1846
1847 Thu Mar 25 22:45:47 1999  Tor Lillqvist  <tml@iki.fi>
1848
1849         * config.h.win32: Update version numbers.
1850
1851         * glibconfig.h.win32: Update version numbers and pthreads-win32-
1852         related magic values.
1853
1854         * README.win32: Some improvements.
1855
1856         * makefile.msc: Add gqueue and gstack. Correct version number.
1857
1858 Fri Mar 19 16:29:50 PST 1999 Manish Singh <yosh@gimp.org>
1859
1860         * acinclude.m4
1861         * config.guess
1862         * config.sub
1863         * ltconfig
1864         * ltmain.sh: upgrade to libtool 1.2f
1865
1866         * autogen.sh: libtool is not required to autogen glib
1867
1868         * acconfig.h: remove WITH_SYMBOL_UNDERSCORE (not explictly
1869         needed)
1870
1871 1999-03-18  Jeff Garzik  <jgarzik@pobox.com>
1872
1873         * glib.def: Add new g_list, g_stack, g_queue functions.
1874
1875 1999-03-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1876
1877         * configure.in: added new AC_SUBST(GTHREAD_COMPILE_IMPL_DEFINES)
1878         to hold various defines to get the right thread implementation on
1879         different platforms. Also look in -ldce for pthread_create. Should
1880         make it work on HP-UX 10.x. Information from "D. Emilio Grimaldo
1881         Tunon" <emilio_tunon@nl.compuware.com>.
1882
1883 1999-03-17  Jeff Garzik  <jgarzik@pobox.com>
1884
1885         * gstack.c, gqueue.c:
1886         Add copyright, clean up code a bit.
1887
1888 1999-03-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1889
1890         * configure.in: Added missing values for G_MAXU(SHORT|INT|LONG) on
1891         platforms with only /usr/include/values.h.
1892
1893         * acconfig.h: Removed unnecessary macros.
1894
1895         * glibconfig.h.win32, config.h.win32: Moved G_THREADS_IMPL_POSIX
1896         from config.h.win32 to glibconfig.h.win32. Taken from glib 1.2
1897         branch.
1898
1899         * configure.in: Also accept _Pctime_r instead of ctime_r, while
1900         seraching for the right `_REENTRANT' flag. This is for Digital
1901         UNIX 4.0d. Taken from glib 1.2 branch.
1902
1903 Wed Mar 17 03:14:56 1999  Tim Janik  <timj@gtk.org>
1904
1905         * glib.h: added GLIB_CHECK_VERSION() macro similar to
1906         GTK_CHECK_VERSION().
1907
1908 Wed Mar 17 01:46:28 1999  Tim Janik  <timj@gtk.org>
1909
1910         * merges from glib-1-2:
1911         
1912 Sun Mar 14 17:50:35 1999  Tim Janik  <timj@gtk.org>
1913
1914         * gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements
1915         to g_return_if_fail().
1916         (g_mem_profile):
1917         (g_mem_chunk_print):
1918         (g_mem_chunk_info): removed some extraneous "\n"s at the end of the log
1919         messages.
1920
1921         * gtimer.c (g_timer_*): changed a bunch of g_assert() statements
1922         to g_return_if_fail().
1923         * grel.c (g_*): changed a bunch of g_assert() statements to
1924         g_return_if_fail() and added some extra ones to check relation != NULL.
1925
1926 Tue Mar  9 23:25:50 1999  Tim Janik  <timj@gtk.org>
1927
1928         * configure.in: check for working realloc (NULL,).
1929         * gmem.c (g_realloc): use malloc() for initial allocation on systems
1930         where realloc(NULL,) will not work (this is the case on SunOS, reported
1931         by Tom Geiger).
1932
1933 Mon Mar  8 07:42:08 1999  Tim Janik  <timj@gtk.org>
1934
1935         * ghook.c (g_hook_unref): when !hook_list->is_setup, wrap the
1936         flag around the call to g_hook_free() to avoid spurious
1937         warnings (happens during destruction phase).
1938
1939 1999-03-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1940
1941         * gmem.c: Fixed a stupid cut'n'paste error of mine. Thanks to
1942         Friedrich Dominicus <Friedrich.Dominicus@inka.de>
1943
1944 1999-03-16  Timur Bakeyev  <mc@bat.ru>
1945
1946         * configure.in: Fix problem with pthread_create in libc, as running
1947         "gcc test.c -l " is not legal.
1948
1949 1999-03-16  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1950
1951         * tests/type-test.c: Added a test for the
1952         G_(U)?INT(16|32|64)_FORMAT and G_(MIN|MAX|MAXU)(SHORT|INT|LONG)
1953         macros.
1954
1955         * configure.in: Removed G_(U)?INT8_FORMAT again, as it can't be
1956         used for scanf.
1957
1958         * configure.in: Added the macros G_MAXU(SHORT|INT|LONG). I do not
1959         know how to handle these on platforms with /usr/include/values.h,
1960         but without /usr/include/limits.h. Please someone add this.
1961
1962
1963 1999-03-15  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1964
1965         * configure.in: Added the macros G_(U)?INT(8|16|32|64)_FORMAT to
1966         use for printf and (much more important) scanf format strings for
1967         the corresponding GLib types. 
1968
1969         * glib.h Added G_(U)?(SHORT|INT|LONG)_FORMAT for consistency. It
1970         however makes no sense to also provide G_(FLOAT|DOUBLE)_FORMAT, as
1971         they are different for printf (f for both) and scanf (f for float,
1972         lf for double). Defining G_INT_FORMAT makes sense however, as we
1973         might want to define gint to something different than int someday
1974         in the future. Idea from Sascha Brawer <sb@adasys.ch>.
1975         
1976 1999-03-14  Jeff Garzik  <jgarzik@pobox.com>
1977
1978         * gdate.c:
1979         Commented out debugging output.
1980
1981         * tests/Makefile.am, tests/date-test.c:
1982         Added test of the GDate module, based closely on testgdate.c.
1983
1984         * tests/Makefile.am:
1985         Bugfix - compile tests with @GLIB_DEBUG_FLAGS@.
1986
1987 1999-03-14  Raja R Harinath  <harinath@cs.umn.edu>
1988
1989         * configure.in (glibconfig.h): Remove widechar tests and defines.
1990         (fd_set): Change the grep for `fd_mask' to search for `fd_set'.
1991         * gerror.c (fd_mask): Remove conditional typedef.  It is not used
1992         elsewhere in the file.
1993         * gmain.c (fd_mask): Likewise.
1994
1995 1999-03-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1996
1997         * configure.in: Test for posix threads first, then for dce threads.
1998
1999 1999-03-11  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2000
2001         * configure.in: Revamped the thread configure stuff. Now dce
2002         threads (old posix draft) are recogniced. This is necessary,
2003         because dce threads are in fact working quite differently from
2004         posix threads. Also changed the conditions for checking for MT
2005         safe functions a bit, because G_THREADS_IMPL_NONE still have to
2006         compile thread safe. NOTE: Please do not commit my change to
2007         glib-1-2/{acconfig.h,configure.in,config.h.win32} from 1999-03-03,
2008         as the current change will take care of that too.
2009
2010 Tue Mar  9 14:37:32 1999  Jeff Garzik  <jgarzik@pobox.com>
2011
2012         * Makefile.am, glib.h, gstack.c, gqueue.c,
2013           tests/Makefile.am, tests/queue-test.c, tests/stack-test.c:
2014         Added stack, queue ADTs and related tests.
2015
2016         * glib.h, glist.c:
2017         New g_list_delete() function.
2018
2019 Sat Mar  6 11:03:08 1999  Asbjorn Pettersen  <ape@lrdpf.spacetec.no>
2020
2021         * gutils.c (g_get_any_init): add OS/2 changes.
2022         change '\\' in HOME to '/'.
2023
2024 1999-03-03  Josh MacDonald  <jmacd@spin.dsl.pacbell.net>
2025
2026         * glib.def: g_spaced_primes_closest was omitted here, so I
2027         couldn't build Xdelta on Windows.
2028
2029 1999-03-01  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2030
2031         * gutils.c (g_get_any_init): Fixed yet another bloody
2032         implementation of getpwuid_r on AIX. Thanks to Olaf Dietsche
2033         <olaf.dietsche+list.gtk@netcologne.de>. I would like a configure
2034         test better than that, but have no idea, how to do that easily.
2035
2036 Sat Feb 27 01:18:47 1999  Tim Janik  <timj@gtk.org>
2037
2038         * ChangeLog: moved old ChangeLog to ChangeLog.pre-1-2, and started
2039         new one.
2040
2041         * configure.in: set glib version to 1.3.0.