The "extern char* sys_siglist" declaration breaks systems with different
[platform/upstream/glib.git] / ChangeLog.pre-2-0
1 Tue Jan 19 00:44:24 1999  Josh MacDonald  <jmacd@axis.hip.berkeley.edu>
2
3         * gstrfuncs.c (g_strsignal): The "extern char* sys_siglist"
4         declaration breaks systems with different declarations, like
5         mine (FreeBSD).  So, I added a configuration variable to decide
6         whether the declaration is neccesary.  Change also appears on
7         line 275 of configure.in.
8
9 Sun Jan 17 17:13:54 CST 1999 Shawn T. Amundson <amundson@gtk.org>
10
11         * Released GLib 1.1.13
12
13         * README:
14           INSTALL:
15           docs/glib-config: ver=1.1.13
16
17 Mon Jan 18 00:02:46 1999  Tim Janik  <timj@gtk.org>
18
19         * NEWS: updates for 1.1.13.
20
21 Sun Jan 17 17:15:59 1999  Tim Janik  <timj@gtk.org>
22
23         * gtree.c (g_tree_traverse): removed assertion about rtree->root being
24         NULL, so this function can be applied to unpopulated trees as well, fix
25         provided by Simon Kagedal <sika8225@csd.uu.se>.
26
27 Sun Jan 17 11:17:19 1999 Christopher Blizzard  <blizzard@appliedtheory.com>
28
29         * glib.spec: add packager address
30
31 Sun Jan 17 11:10:05 1999 Christopher Blizzard  <blizzard@appliedtheory.com>
32
33         * glib.spec: increment version number to 1.1.13
34
35 Sun Jan 17 16:14:03 1999  Tim Janik  <timj@gtk.org>
36
37         * glib.h (g_error): if !defined (G_LOG_DOMAIN) define G_LOG_DOMAIN as
38         ((gchar*) 0) instead of ((void*) 0) to silence egcs C++ mode, reported
39         by Seth Alves <alves@hungry.com>.
40
41 Sun Jan 17 14:13:52 1999  Tim Janik  <timj@gtk.org>
42
43         * glib.h: added a define G_HOOK_DEFERRED_DESTROY, to substitute a noop
44         GHookList.hook_destroy function.
45
46         * ghook.c (g_hook_destroy_link): don't really call hook_destroy if it
47         is G_HOOK_DEFERRED_DESTROY. for the case where we invoke hook->destroy()
48         we now clean up the hook completely afterwards, i.e. data, func and
49         destroy are immediately set to NULL and hook_free can't play with that
50         values anymore.
51
52         * gmain.c (g_source_add): set hook_destroy to G_HOOK_DEFERRED_DESTROY,
53         instead of using an ugly _noop() hack, this is to avoid an uneccessary
54         function invokation. set hook_free to g_source_destroy_func, this way
55         we always invoke the destroy notifiers for user_data and source_data
56         after execution of dispatch(). thus, g_source_destroy_func() will always
57         be called within the main_loop lock (this wasn't really assured
58         before), and can release and reaquire the look around destroy notifier
59         invokation.
60
61 Sun Jan 17 11:01:40 1999  Tor Lillqvist  <tml@iki.fi>
62
63         * config.h.win32 glibconfig.h.win32: Increment version number here
64         also.
65
66 Sun Jan 17 05:12:17 1999  Tim Janik  <timj@gtk.org>
67
68         * configure.in: incremented version number to 1.1.13, bin age 0,
69         interface age 0.
70
71         * glib.h: added hook_destroy member to struct _GHookList.
72
73         * ghook.c (g_hook_destroy_link): if the hook_list defines a hook_destroy
74         function, use that to marshal hook destruction notifiers.
75
76         * gmain.c: removed g_source_free_func and added g_source_destroy_func,
77         which marshalls the user_data and source_data destructors of sources
78         outside of the main_loop lock.
79         removed GIdleData struct since its sole member callback can be passed
80         as source_data directly.
81         added a gboolean return value to all g_source_remove* functions,
82         indicating whether the source could be removed, because these functions
83         don't issue warnings upon unseccessful removals themselves. this way at
84         least the caller gets a chance to warn upon failing removals.
85         (g_main_iterate): set in_check_or_prepare around calls to check() or
86         prepare().
87         (g_main_pending): simply return FALSE if called from within check() or
88         prepare().
89         (g_main_iteration): issue a warning if called from within check() or
90         prepare() and bail out with FALSE.
91         (g_main_run): likewise.
92         (g_source_remove_by_funcs_user_data): new function to remove sources by
93         user data and function table.
94         (g_idle_remove_by_data): new function to really remove idles only, since
95         g_source_remove_by_user_data would remove timeouts or other sources as
96         well.
97
98 1999-01-16  Tor Lillqvist  <tml@iki.fi>
99
100         * Merge in current Win32 version:
101
102         * README.win32: More text.
103
104         * config.h.win32 glibconfig.h.win32: Update to match the
105         corresponding generated files on Unix.
106
107         * makefile.msc: Update with new source files, and gthread
108         library. Use the compiler flag -MD instead of using -D_DLL and
109         /nodefaultlib:libc msvcrt.lib in the link phase.
110
111         * glib.def: Update to include new functions, drop removed ones.
112
113         * glib.h: Add comments about main loop and polling on Win32. (In
114         general, it's only for the GIMP's use.) Add Win32 IO Channel
115         functions. Remove the obsoleted old IO Channel stuff (which was
116         in #if 0 already).
117
118         * giowin32.c: New file.
119
120         * gmain.c: Include config.h, conditionalize <sys/time.h>
121         inclusion.  Add g_poll implementation for Win32 (only for the
122         GIMP's needs for now, it's hard or even impossible to be as clean
123         and generic as on Unix). Implement g_get_current_time on Win32. If
124         threads aren't supported, don't try to wake up main thread's
125         loop. On Win32, use a semaphore and not a pipe to wake up the main
126         loop.
127
128         * gmessages.c: On Win32, allocate a console window if the standard
129         output handle is invalid before writing to stdout, and reopen stdout
130         to that console window.
131
132         * giochannel.c: Conditionalize unistd.h inclusion. Some indentation
133         cleanup.
134
135         * gstrfuncs.c: Include <signal.h>.
136
137         * gutils.c: On Win32, also check the HOMEDRIVE and HOMEPATH
138         environment variables.
139
140 Sun Jan 17 01:06:38 1999 Timur Bakeyev <mc@bat.ru>
141
142         * configure.in: Add support for FreeBSD 2.2.x macro _THREAD_SAFE.
143
144 Wed Jan 13 11:27:24 PST 1999 Manish Singh <yosh@gimp.org>
145
146         * glib.h: don't use inline for !__GNUC__ case with g_warning,
147         g_error, and g_message wrappers since some compilers throw
148         away arguments in this case
149
150 Tue Jan 12 21:59:14 PST 1999 Manish Singh <yosh@gimp.org>
151
152         * acinclude.m4
153         * ltconfig
154         * ltmain.sh: upgrade to libtool 1.2d (with fixes for irix6 and osf)
155
156         * testglib.c: removed unused cruft
157
158 Tue Jan 12 09:57:06 PST 1999 Manish Singh <yosh@gimp.org>
159
160         * gdate.c: #warning isn't portable, check for gcc
161
162 1999-01-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
163
164         * gdate.c: Include config.h to get HAVE_LOCALTIME_R macro.
165
166         * configure.in: Moved function check back to the place, they've
167         been before.
168
169 1999-01-11  Jeff Garzik  <jgarzik@pobox.com>
170
171         * gstrfuncs.c:
172         Do not use vasprintf.
173
174         * configure.in, glib.h, testglib.c, tests/.cvsignore,
175           tests/Makefile.am, tests/alloca-test.c:
176         Do not use alloca.
177
178 1999-01-11  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
179
180         * configure.in: Test for localtime_r only after including the
181         right MT enabling CFLAGS (i.e. -D_REENTRANT on most systems).
182
183         * configure.in: Find right thread system on DG/UX. Thanks to Marc
184         J. Fraioli <fraioli@dg-rtp.dg.com> for hint. Finally removed the
185         stuff for -fstack-check, that didnt work anyway.
186
187         * gdate.c (g_date_set_time): Emit warning, if no localtime_r
188         function is available on thread enabled systems. Define ptm only,
189         if really needed, and assert on it.
190
191 Sat Jan  9 15:08:44 1999  Jeff Garzik  <jgarzik@pobox.com>
192
193         * testglib.c:
194         Make all aux functions static.
195
196         * tests/Makefile.am, tests/dirname-test.c, tests/type-test.c:
197         New tests dirname-test and type-test, from testglib.
198
199 Sat Jan  9 13:53:00 1999  Jeff Garzik  <jgarzik@pobox.com>
200
201         * configure.in:
202         Add checks for vasprintf, localtime_r.
203
204         * gdate.c (g_date_set_time):
205         Use localtime if localtime_r is not available.
206
207         * gstrfuncs.c (g_strdup_vprintf):
208         Use glibc vasprintf if possible; it's a bit faster than using
209         GLib routines, and makes output code a bit smaller.
210
211         * acconfig.h:
212         Remove HAVE_VSNPRINTF and HAVE_VPRINTF.  autoheader picks these
213         up automatically and puts them in config.h.in.
214
215 Thu Jan  7 15:14:08 1999  Owen Taylor  <otaylor@redhat.com>
216
217         * gmain.c (g_source_free_func): Call the source-specific
218         free function when the hook is freed not when it
219         is destroyed; this fixes a bug where a timeout destroyed
220         from itself would access already freed data.
221
222 1999-01-07  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
223
224         * gutils.c (g_get_any_init): Here we must replace getpwuid by
225         getpwuid_r, but as I do not know how for now, I just made a FIXME
226         note ;-)
227
228         * gdate.c (g_date_set_time): localtime --> localtime_r to make it
229         thread safe.
230
231         * configure.in: We do not need to check for broken solaris mutex
232         intitializer any longer. Provide a macro to show the used thread
233         implementation. Not nice, but this is needed until thread support
234         is completed here inside glib.
235
236 Tue Jan  5 12:23:52 PST 1999 Manish Singh <yosh@gimp.org>
237
238         * configure.in: ditch whitespace before GLIB_SYSDEFS #includes,
239         the # needs to be in column 1
240
241         * gthread/testgthread.c: cleanups
242
243         * tests/node-test.c: #include unistd.h for exit()
244
245 1999-01-04  Andrew T. Veliath  <andrewtv@usa.net>
246
247         * glib.h (g_array_insert_val): fix macro to be shorthand of
248         g_array_insert_vals.
249
250 Mon Jan  4 15:35:29 PST 1999 Manish Singh <yosh@gimp.org>
251
252         * acglib.m4: some echos interpret \n's and some don't. Deal with
253         accordingly.
254
255 Mon Jan  4 20:58:50 1999  Tim Janik  <timj@gtk.org>
256
257         * gscanner.c: eliminated extraneous "register" qualifiers in variable
258         declarations.
259
260         * gmain.c: #undef events and revents which may have been defined in
261         sys/poll.h for SVR3,4 compatibility on some AIX systems. fix been
262         provided by Philippe Defert <Philippe.Defert@cern.ch>.
263
264 Mon Jan  4 14:38:11 1999  Tim Janik  <timj@gtk.org>
265
266         * glib.h: adjusted the g_strdup_a, g_strndup_a and g_strconcat3_a macros
267         so their arguments get only evaluated once. changed g_strconcat3_a to
268         have the same semantics as g_strconcat, i.e. if a certain argument is
269         NULL, the rest of the parameter list is skipped.
270
271         * tests/alloca-test.c: removed #if/#endif G_HAVE_ALLOCA, we need to be
272         able to compile on all systems. added test for g_strconcat() semantics.
273
274         * we need a alloca() replacement for !G_HAVE_ALLOCA rsn!
275
276 Mon Jan  4 02:58:13 CST 1999 Shawn T. Amundson <amundson@gtk.org>
277
278         * Released GLib 1.1.12
279
280         * INSTALL:
281           NEWS:
282           README:
283           configure.in:
284           glib.spec:
285           docs/glib-config.1: version=1.1.12
286
287         * tests/Makefile.am: fixed so it works properly with
288           builddir and srcdir.
289
290 Sun Jan  3 01:38:14 EST 1999  Jeff Garzik  <jgarzik@pobox.com>
291
292         * tests/Makefile.am:
293         add array-test.c, tree-test.c
294
295         * tests/array-test.c, tests/tree-test.c:
296         New module, tests array family
297
298         * tests/hash-test.c, tests/list-test.c, tests/slist-test.c,
299           tests/string-test.c, tests/node-test.c:
300         Clean out cruft left over from testglib.
301
302 Sat Jan  2 22:42:25 EST 1999  Jeff Garzik  <jgarzik@pobox.com>
303
304         * Makefile.am, configure.in, tests/*:
305         Added 'make check' tests, based on testglib code.
306
307 Sat Jan  2 19:52:45 EST 1999  Jeff Garzik  <jgarzik@pobox.com>
308
309         * glib.h, testglib.c:
310         Added g_alloca, g_new_a, g_new0_a macros.
311
312 Sat Jan  2 16:45:44 EST 1999  Jeff Garzik  <jgarzik@pobox.com>
313
314         * testglib.c: Added g_strdup_printf check.
315
316 Fri Jan  1 21:58:40 EST 1999  Jeff Garzik  <jgarzik@pobox.com>
317
318         * glib.h:
319         (g_strdup_a, g_strndup_a): Handle NULL strings like g_strdup.
320         s/g_strconcat_a/g_strconcat3_a/ to reflect fixed number of args
321
322         * testglib.c:
323         Added g_strdup, g_strconcat checks.
324         Added str==NULL checks for alloca string macros.
325         s/g_strconcat_a/g_strconcat3_a/
326
327 Fri Jan  1 18:30:41 PST 1999 Manish Singh <yosh@gimp.org>
328
329         * testglib.c: made the alloca tests follow the testglib style
330
331         * Makefile.am: minor cleanups, mostly cosmetic
332
333 Fri Jan  1 20:43:19 EST 1999  Jeff Garzik  <jgarzik@pobox.com>
334
335         * glib.h: added g_strndup_a macro
336
337         * testglib.c:
338         Added tests for new alloca-based string routines.
339         Reformatted a couple strings.
340
341 Sat Jan  2 02:20:59 1999  Tim Janik  <timj@gtk.org>
342
343         * ghook.c:
344         (g_hook_list_invoke):
345         (g_hook_list_invoke_check):
346         (g_hook_list_marshal_check):
347         (g_hook_list_marshal): avoid unneccessary extra hook referencing (the
348         explicit hook referencing became unneccessarry with my changes from
349         Mon Dec 21 21:48:29 1998).
350
351         * gmain.c (g_main_iterate): fixed reference counting leaks with
352         premature loop aborts.
353
354 Fri Jan  1 22:47:44 1999  Tim Janik  <timj@gtk.org>
355
356         * gscanner.c (g_scanner_unexp_token): handle G_TOKEN_IDENTIFIER_NULL
357         as G_TOKEN_IDENTIFIER.
358
359 Fri Jan  1 17:09:19 EST 1999  Jeff Garzik  <jgarzik@pobox.com>
360
361         * configure.in, glib.h:
362         Added two new alloca-based function macros, g_strdup_a and
363         g_strconcat_a.  These are stack-based and much faster than
364         their g_malloc-based counterparts.  Kudos to Ulrich Drepper
365         for help on this one.
366
367 Wed Dec 30 18:24:57 CST 1998 Shawn T. Amundson <amundson@gtk.org>
368
369         * Released GLib 1.1.11
370
371         * INSTALL:
372           NEWS:
373           README:
374           configure.in:
375           docs/glib-config.1: version=1.1.11
376
377 1998-12-30  Raja R Harinath  <harinath@cs.umn.edu>
378
379         * glib.h (G[U]INT64_FROM_{LE,BE}):
380         Define to G[U]INT64_TO_{LE,BE}, not G[U]INT32_TO_{LE,BE}.
381
382 Fri Dec 25 19:56:33 PST 1998 Manish Singh <yosh@gimp.org>
383
384         * acglib.m4
385         * configure.in: provide defaults for POLL sysdefs, simple enums
386         don't work with bitwise logic. Reported by Daniel Skarda
387         <0rfelyus@atrey.karlin.mff.cuni.cz>
388
389 Wed Dec 23 00:43:25 CST 1998 Shawn T. Amundson <amundson@gtk.org>
390
391         * INSTALL:
392           NEWS:
393           README:
394           configure.in:
395           docs/glib-config.1: version=1.1.10
396
397 Wed Dec 23 04:18:11 1998  George Lebl  <jirka@5z.com>
398
399         * gmain.c: (g_get_current_time) don't cast to timeval since
400           timeval is for some reason not always a struct of longs, weird
401
402 Tue Dec 22 10:32:11 1998  Tim Janik  <timj@gtk.org>
403
404         * ghook.c (g_hook_first_valid): fixed buglet that could cause bogus
405         warnings.
406
407 Mon Dec 21 21:48:29 1998  Tim Janik  <timj@gtk.org>
408
409         * glib.h:
410         * gmain.c: there was a reference count race for hooks during invocation
411         loops. since all (known) hook loop implementations, do currently start
412         out with g_hook_first_valid() and iterate with g_hook_next_valid(),
413         g_hook_first_valid() will now return a referenced hook, and
414         g_hook_next_valid() will "eat" that, and eventually transfer it to
415         the next hook. <sigh> unfortunately this requires g_hook_next_valid()
416         to take the hook_list as additional argument.
417
418         * gmain.c (g_main_iterate): adjusted callers of g_hook_next_valid().
419
420 Mon Dec 21 03:48:04 1998  Tim Janik  <timj@gtk.org>
421
422         * gmain.c (g_main_iterate): default initialize source_timeout with -1
423         so we have a sane timeout value if (*prpare) doesn't set it.
424
425 Sat Dec 19 16:56:02 1998  Owen Taylor  <otaylor@redhat.com>
426
427         * glib.h gmain.c (G_PRIORITY_LOW): Add #defines defining
428         scale of priorities.
429
430 Sat Dec 19 16:56:02 1998  Owen Taylor  <otaylor@redhat.com>
431
432         * gmain.c (g_main_poll): Allocate space for pollfd's
433         _after_ adding poll wake-up-pipe record.
434
435         * gmain.c (g_main_add_poll): Changed name
436         of internal function g_main_add_poll_unlocked()
437         back from the non-sensical g_main_add_unlocking_poll().
438
439 Sat Dec 19 06:25:55 1998  Tim Janik  <timj@gtk.org>
440
441         * glib.m4: fixed a minor bug that would let configures bail out
442         if the MODULES argument contained newlines.
443
444         * acglib.m4: new file to be included by configure.in. it holds
445         special GLIB_ autoconfiguration macros, eventually some of the
446         easier ones should be moved into glib.m4, e.g. GLIB_IF_VAR_EQ,
447         GLIB_STR_CONTAINS or GLIB_ADD_TO_VAR.
448
449 Sat Dec 19 04:27:17 1998  Tim Janik  <timj@gtk.org>
450
451         * fixed up sys/poll.h and sys/types.h inclusions.
452
453 Sat Dec 19 03:10:50 1998  Tim Janik  <timj@gtk.org>
454
455         * fixed up gthread includes, cleaned up glibconfig.h a little bit.
456
457 Fri Dec 18 12:51:39 1998  Owen Taylor  <otaylor@redhat.com>
458
459         * gmain.c: Fix errors in computation of timeout
460         expiration times > 1sec.
461
462 1998-12-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
463
464         * configure.in (have_threads): Changed the last pthread_cond_init
465         to pthread_attr_init.
466
467 Fri Dec 18 00:03:17 1998  Tim Janik  <timj@gtk.org>
468
469         * glib.h:
470         * gmain.c:
471         (g_main_is_running): new function to check whether a main loop has been
472         quitted.
473         (g_main_new): added a gboolean argument to determine whether the loop
474         should be considered initially running or not. however, g_main_run ()
475         will still reset the main loops running state to TRUE upon initial
476         entrance.
477
478         * gmain.c:
479         (g_main_iterate): documented this function's purpose in 5 steps.
480         for step 2), flag sources as G_SOURCE_READY even if !dispatch and
481         check G_SOURCE_READY prior to (*prepare), so we don't call (*prepare)
482         on them multiple times.
483
484 Thu Dec 17 23:43:47 1998  Tim Janik  <timj@gtk.org>
485
486         * gmain.c (g_main_add_poll): reordered arguments, so GPollFD* comes
487         first, <sigh> (sorry Snorfle, i should have let you know in the first
488         place).
489         (g_main_dispatch): stack G_HOOK_FLAG_IN_CALL flags. call source's
490         destructor when destroying a source.
491
492 1998-12-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
493
494         * garray.c (g_ptr_array_remove_index): Fixed size in g_memmove,
495         reported by Alexander Larsson <alla@lysator.liu.se>.
496
497         * gmem.c: Fixed bug, that made compile fail for -DENABLE_MEM_PROFILE.
498
499 Wed Dec 16 23:04:26 CST 1998 Shawn T. Amundson <amundson@gtk.org>
500
501         * Released GLib 1.1.9
502
503         * INSTALL:
504           NEWS:
505           README:
506           configure.in:
507           glib.spec:
508           docs/glib-config.1: version=1.1.9
509
510 Wed Dec 16 22:32:13 CST 1998 Shawn T. Amundson <amundson@gtk.org>
511
512         * glib.h:
513           giounix.c: s/g_main_poll_add/g_main_remove_add/g
514                      s/g_main_poll_remove/g_main_remove_poll/g
515                      s/g_main_poll_add_unlocking/g_main_add_unlocking_poll/g
516           (from Tim Janik)
517
518 Wed Dec 16 20:04:10 PST 1998 Manish Singh <yosh@gimp.org>
519
520         * configure.in: check for pthread_attr_init in all cases, du4
521         needs this since most of the other functions are just #defines
522
523 Thu Dec 17 04:10:49 1998  Tim Janik  <timj@gtk.org>
524
525         * glib.h (G_LOCK_DECLARE_*): if !G_THREADS_ENABLED, eat the
526         trailing semicolon with a bogus function declaration, instead
527         of with a bogus variable declarations, so we avoid unused
528         variable warnings.
529
530 Wed Dec 16 07:49:16 PST 1998 Shawn T. Amundson <amundson@gtk.org>
531
532         * Released GLib 1.1.8  (CVS tag is GLIB_1_1_8a)
533
534 1998-12-16  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
535
536         * giounix.c (g_io_channel_unix_get_fd): Fixed small bug.
537
538 1998-12-16  Joel Becker  <jlbec@ocala.cs.miami.edu>
539
540         * glib.h, gscanner.c: changed func_data to user_data in
541         g_scanner_scope_symbol_foreach and associated friends, because
542         AIX headers #define func_data.
543
544 1998-12-16  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
545
546         * configure.in: Fixed stupid bug, that made
547         g_static_mutex_lock(*mutex) not work as expected.
548
549         * docs/glib-config.1: Updated to reflect the existence of gthread.
550
551         * gmain.c (g_main_poll_add_unlocking): Changed
552         g_main_poll_add_unlocked to g_main_poll_add_unlocking to match
553         semantic, (indeed, main_loop must be locked, when calling this
554         function). Removed the unlocking from the end of that function, as
555         that is not right. Made a 'HOLDS' comment above the function.
556
557 Wed Dec 16 03:16:58 1998  Tim Janik  <timj@gtk.org>
558
559         * configure.in: version bump to 1.1.8, binary age 0, interface age 0.
560
561         * glib.h: changed g_lock() to G_LOCK(), g_unlock() to G_UNLOCK() and
562         g_trylock() to G_TRYLOCK(), since these are macros that expand to
563         nothing with --disable-threads.
564         changed G_LOCK_DEFINE() to G_LOCK_DECLARE() and introduced
565         G_LOCK_DECLARE_STATIC() to achive the results of static G_LOCK_DECLARE().
566         changed semantics of g_thread_supported to g_thread_supported() so it
567         can be used as a function like g_module_supported(). the actuall
568         definition is still a macro that expands into a variable for
569         performance reasons though.
570         various indentation and coding style cleanups.
571
572         * configure.in: added --enable-threads that defaults to yes.
573
574         * gmutex.c: changed tests g_thread_supported to g_thread_supported (),
575         changed variable settings of g_thread_supported
576         to g_threads_got_initialized.
577
578         garray.c:
579         gcache.c:
580         gdataset.c:
581         gdate.c:
582         ghash.c:
583         glist.c:
584         gmain.c:
585         gnode.c:
586         gslist.c:
587         gstring.c:
588         gtree.c:
589         gutils.c:
590         changed s/g_lock/G_LOCK/, s/g_unlock/G_UNLOCK/,
591         s/static G_LOCK_DEFINE/G_LOCK_DECLARE_STATIC/.
592
593 Tue Dec 15 23:16:05 CST 1998 Shawn T. Amundson <amundson@gtk.org>
594
595         * INSTALL:
596           NEWS:
597           README
598           configure.in:
599           glib.spec:
600           docs/glib-config.1: Incremented version
601
602 Wed Dec 16 22:29:48 1998  Joel Becker  <jlbec@ocala.cs.miami.edu>
603
604         * configure.in: fixed the AIX thread checking.
605         Just an error on the wildcard.  BTW, -D_THREAD_SAFE
606         is correct for AIX.
607
608 Wed Dec 16 02:02:48 1998  Tim Janik  <timj@gtk.org>
609
610         * glib-config.in (lib_glib): fixed library and flag ordering for
611         --libs
612
613 Tue Dec 15 17:17:46 1998  Owen Taylor  <otaylor@redhat.com>
614
615         * glib.h giounix.c giochannel.c: Use an "inheritance"
616         scheme for IO channel memory allocation.h
617
618 1998-12-15  Havoc Pennington  <hp@pobox.com>
619
620         * gdate.c (g_date_prepare_to_parse): Solaris has a broken strftime
621         that produced garbage output for the test date I was using to
622         set up the parser. So use a different date that Solaris seems
623         to like.
624
625 1998-12-15  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
626
627         * configure.in: Dont complain, if --without-threads or
628         --with-threads=none is supplied; Test for pthread_attr_init
629         instead of pthread_cond_init, if threads seems to be supported by
630         standard glib. (CFLAGS): Use G_THREAD_CFLAGS for compiling of glib
631         as well.
632
633         * glib.h, gmutex.c: Changed private to private_key to avoid
634         problems when compiling with under C++.
635
636 1998-12-15  Jeff Garzik  <jgarzik@Pobox.com>
637
638         * configure.in:
639         bugfixes, correctly support --without-threads and friends
640
641         * gthread/testgthread.c: corrected 64-bitness problem
642
643 Tue Dec 15 10:40:09 1998  Owen Taylor  <otaylor@redhat.com>
644
645         * gnode.c glist.c gslist.c: Make sure all
646         calls to g_node_validate_allocator are within
647         current_allocator lock, so we have consistency
648         on that point. (Should not really matter,
649         but this way we match the comments)
650
651         * glist.c (g_list_free_1): Removed some lines
652         that should never have been committed. (For
653         debugging)
654
655 1998-12-11  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
656
657         * gthread/gthread-nspr.c, configure.in: Added new default thread
658         implementation on top of the mozilla nspr library.
659
660         * gmem.c, gmessaged.c, gthread/gthread.c, gthread/gthread-*.c:
661         Changed GStaticMutex and GStaticPrivate in gmem.c and gmessages.c
662         into GMutex and GPrivate resp. to make error reporting and use of
663         gmem possible in most (not all, though) gthread functions. Also
664         initialized the modules via new init functions.
665
666         * configure.in: Fixed syntax bug in definition of type
667         GStaticMutex.
668
669         * gthread/testgthread.c: Updated to work with nspr, but see note
670         there for remaining problems.
671
672 1998-12-10  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
673
674         * gmutex.c, glib.h: Now abort, if a mutex/cond/private is
675         allocated before the thread system is set up.
676
677         * gthread/gthread.c (g_thread_init): Removed g_thread_try_init(),
678         as it is not necessary. Changed the error message. Corrected logic
679         for g_thread_use_default_impl.
680
681         * gmutex.c (g_mutex_init): Keep the thread private data array
682         after calling g_thread_init().
683
684 1998-12-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
685
686         * gthread/testgthread.c (new_thread): Now also working for posix
687         threads; (wait_thread): Now a better implementation, that does not
688         use 100% CPU.
689
690         * Made the thread related code follow GNU coding standard.
691
692         * Made a comment (HOLDS:) above each function, that expects the
693         given locks to be held.
694
695         * Changed try_lock to trylock throughout.
696
697         * glib.c: Eventually removed the #if 0'ed code for old GStaticMutex.
698
699         * glib.c: Corrected g_trylock macro for G_DEBUG_LOCKS.
700
701         * gmain.c (g_main_poll_add_unlocked): first take a new poll record
702         form the poll_free_list.
703
704         * gmem.c, gstrfuncs.c, gutils.c: Made it MT safe.
705
706         * gthraed/*.c: Added copyright headers.
707
708         * gthread/gthread-solaris.c: do not use g_log for errors, as g_log
709         uses these module and endless recursions might happen, just use a
710         plain fprintf(stderr,...).
711
712         * gthread/gthread.c (g_thread_try_init): Call g_mutex_init().
713
714         * gthread/testgthread.c: updated test program.
715
716 Tue Dec  8 18:49:56 1998  Owen Taylor  <otaylor@redhat.com>
717
718         * Start at adding thread-safety. (mostly work
719         of Sebastian Wilhelmi <wilhelmi@ira.uka.de>)
720
721         - configure.in now looks for a system thread implementation.
722         Currently support is included for POSIX threads
723         and Solaris threads. The default support is built
724         into a separate library -lgthread.
725
726         - The thread implementation can be modified by passing
727         a vector of functions g_thread_init().
728
729         - The default or supplied functions are used to
730         implement a small set of thread functions for
731         mutexes, condition variables, and thread-private
732         data.
733
734         - GLib now uses these functions to provide thread
735         safety. (In the sense that all global static
736         data is locked... individual structures must still
737         be locked by the caller.)
738
739 Sat Dec 12 19:08:59 1998  Tim Janik  <timj@gtk.org>
740
741         * configure.in: always define G_HAVE_INLINE if __cplusplus is
742         defined, reported by Wan-Teh Chang <wtc@netscape.com>.
743
744 Thu Dec 10 21:49:39 CST 1998 Shawn T. Amundson <amundson@gtk.org>
745
746         * Released GLib 1.1.7
747
748         * INSTALL:
749           NEWS:
750           README:
751           configure.in:
752           glib.spec:
753           docs/glib-config.1: Increased version to 1.1.7
754
755 Wed Dec  9 22:44:44 EST 1998 Joel Becker <jlbec@ocala.cs.miami.edu>
756
757         * Removed #define of G_COMPILED_WITH_DEBUGGING from glibconfig.h
758         It shouldn't be there, and it was causing a double #define.
759         (config.h defines it also)
760
761 Tue Dec  8 12:18:38 CST 1998 Shawn T. Amundson <amundson@gtk.org>
762
763         * Released GLib 1.1.6
764
765         * NEWS: updated
766
767 Mon Dec  7 23:10:41 PST 1998 Manish Singh <yosh@gimp.org>
768
769         * gmain.c: fixes to #undef HAVE_POLL case
770
771 1998-12-02  Havoc Pennington  <hp@pobox.com>
772
773         * gdate.c (g_date_set_month): If Julian is valid, we have to
774         update the dmy representation before setting the components
775         of it.
776         (g_date_set_day): Same.
777         (g_date_set_year): Same.
778
779 1998-12-02  Havoc Pennington  <hp@pobox.com>
780
781         * testgdate.c, testgdateparser.c: Two new files. This is kind of
782         ugly code, but I want to go ahead and make the tests available.
783         It isn't contaminating any other code. :-) Since one of these
784         is interactive and the other takes a while to run, I've kept
785         them separate from testglib for now.
786         * Makefile.am: Build gdate test programs.
787
788 1998-12-02  Havoc Pennington  <hp@pobox.com>
789
790         * gdate.c (g_date_valid): Rely on GDate::dmy and GDate::Julian
791         flags, rather than re-checking the validity of the actual
792         values. This should be the correct behavior, the old way was
793         leftover cruft.
794
795         * glib.h, gdate.c: Changed MDY to DMY throughout.
796
797 Sat Nov 28 12:53:47 1998  Owen Taylor  <otaylor@redhat.com>
798
799         * Makefile.am configure.in acconfig.h giochannel.c
800           glib.h glist.c gmain.c gutils.c:
801
802         - Revised GIOChannel to provide a generic virtual-function
803           based interface.
804         - Added unix fd-based GIOChannel's
805         - Added generic main-loop abstraction
806         - Added timeouts and idle functions using main-loop abstraction.
807
808 1998-12-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
809
810         * glib.h:
811         * gdate.c: changed `gpointer struct_tm_p' parameter of
812         g_date_to_struct_tm back to `struct tm *tm' and forward declared
813         `struct tm' in glib.h; yes, this is nice, we still need not
814         include time.h.
815
816 Tue Dec  1 23:01:44 CST 1998 Shawn T. Amundson <amundson@gtk.org>
817
818         * INSTALL:
819           NEWS:
820           README:
821           glib.spec:
822           docs/glib-config.1: Incremented versions to 1.1.6.
823
824 Wed Dec  2 02:10:59 1998  Tim Janik  <timj@gtk.org>
825
826         * gdate.c: s/time_t/GTime/ and s/g_print/g_message/
827         include time.h.
828
829         * glib.h: removed #include <time.h>, changed time_t paramter of
830         g_date_set_time() to time_t, changed struct tm parameter of
831         g_date_to_struct_tm to `gpointer struct_tm_p'. yes, this is not
832         nice, but including time.h actually breaks a bunch of code.
833
834         * incremented GLib version to 1.1.6.
835
836 1998-11-30  Havoc Pennington  <hp@pobox.com>
837
838         * gdate.c: New file, implements calendrical calculations.
839
840         * glib.h: Added declarations for GDate module.
841
842 Mon Nov 30 07:12:10 1998  Tim Janik  <timj@gtk.org>
843
844         * glib.h:
845         * ghook.c: added g_hook_list_marshal_check() to eventually destroy
846         hooks after they got marshalled.
847
848 Sun Nov 29 17:31:43 EST 1998  Jeff Garzik  <jgarzik@pobox.com>
849
850         * configure.in, Makefile.am, gmodule/Makefile.am:
851         Put -DFOO stuff into Makefile.am INCLUDES.
852
853 Sun Nov 29 14:17:09 PST 1998 Manish Singh <yosh@gimp.org>
854
855         * configure.in: put debug -DFOO stuff into CPPFLAGS, not CFLAGS,
856         so CFLAGS can be overridden at make time properly
857
858 Sat Nov 28 01:23:25 1998  Tim Janik  <timj@gtk.org>
859
860         * ghash.c: implemented incremental freezing facility.
861
862 Thu Nov 26 01:36:20 1998  Tim Janik  <timj@gtk.org>
863
864         * glib.h:
865         * ghash.c: reverted the g_hash_table_set_key_freefunc() addition,
866         since it's to specialized and needs to be resolved in a generic
867         fashion.
868
869 Tue Nov 24 18:57:59 PST 1998 Manish Singh <yosh@gimp.org>
870
871         * applied glib-tml-981120-0, change log appended below.
872
873         * glibconfig.h.win32: passthrough 64-bit constants unchanged, VC++
874         infers them
875
876 Fri Nov 20 22:26:43 1998  Tor Lillqvist  <tml@iki.fi>
877
878         * glib.h: Moved MSC pragmas from glib.h to glibconfig.h.win32.
879         peer_offset field in WIN32 part of GIOChannel removed, need_wakeups
880         added. Added "extern" to __declspec(dllimport).
881
882         * gutils.c: Initialise need_wakeups.
883
884         * glibconfig.h.win32: Pragmas moved here. Define G_GINT64_CONSTANT.
885
886         * gmodule/gmodule.def: Added g_module_build_path.
887
888         * gscanner.c: (g_scanner_cur_value) Move initailisation of v
889         to before its use.
890
891         * glib.def: Added g_(s)list_sort.
892
893         * makefile.msc: A few more comments.
894
895 Tue Nov 24 14:05:47 EST 1998    Michael K. Johnson <johnsonm@redhat.com>
896
897         * glib.h: added GFreeFunc and g_hash_table_set_key_freefunc()
898         prototype.
899         * ghash.c: added g_hash_table_set_key_freefunc() implementation.
900         Modified the prototypes of the functions g_hash_node_destroy() and
901         g_hash_nodes_destroy(), and changed the functions that call them
902         to match the new definitions.
903         This changes no external interfaces, and should create no binary
904         or source incompatibilities.  It does add a member to the
905         GHashTable structure.
906
907 Tue Nov 24 09:40:00 1998  Tim Janik  <timj@gtk.org>
908
909         * glib.h: removed the GListAllocator type and its g_*_allocator_*()
910         function variants (which weren't working anyways) in favour of a
911         generic GAllocator type. new functions:
912         g_allocator_new, g_allocator_free, g_slist_push_allocator,
913         g_slist_pop_allocator, g_list_push_allocator, g_list_pop_allocator,
914         g_node_push_allocator and g_node_pop_allocator.
915
916         * gstring.c: removed bogus slist allocator code.
917         * gtree.c: maintain own list of free tree nodes and don't waste
918         GSLists for that, removed bogus slist allocator code.
919         * glist.c: use GAllocators for node allocation.
920         * gslist.c: use GAllocators for node allocation.
921         * gnode.c: use GAllocators for node allocation.
922
923         * gdataset.c: cleanups wrt automatic initialization.
924
925 Mon Nov 23 10:03:58 1998  Owen Taylor  <otaylor@gtk.org>
926
927         * glib.h garray.[ch]: added g_array_insert_vals() to
928         insert elements at an arbitrary index, and
929         g_array_insert_val() macro.
930
931 Sun Nov 22 17:07:03 1998  Tim Janik  <timj@gtk.org>
932
933         * glib.h:
934         * gslist.c: new function g_slist_copy() to duplicate a list with all its
935         data pointers.
936         * glist.c: new function g_list_copy.
937
938 Sat Nov 21 14:57:39 CST 1998 Shawn T. Amundson <amundson@gtk.org>
939
940         * INSTALL:
941           NEWS:
942           README:
943           configure.in:
944           glib.spec: Updated to version 1.1.5
945
946         * Released GLib 1.1.5
947
948 Wed Nov 18 1998 Elliot Lee <sopwith@redhat.com>
949
950         * gdataset.c: There was a code path into g_data_set_internal
951           through a function (g_datalist_id_set_full). Neither function
952           checked for g_dataset_init having been run, but
953           g_data_set_internal used the memchunk. I added
954           a check into g_data_set_internal so it will do the
955           initialization if needed. (There's probably a better way.)
956
957 Mon Nov 16 07:48:06 1998  Tim Janik  <timj@gtk.org>
958
959         * glib.h (g_bit_nth_msf): fixed off-by-one error, so we don't waste
960         a loop iteration if (-1) was passed, reported by Andreas Bombe
961         <andreas.bombe@munich.netsurf.de>.
962
963 Fri Nov 13 15:17:34 1998  Owen Taylor  <otaylor@redhat.com>
964
965         * glist.c gslist.c glib.h: Added g_list_sort() and
966         g_slist_sort() to merge sort GLists and GSLists.
967         Submitted by Sven Over <sven.over@ob.kamp.net>
968         over a year ago!
969
970         * testglib.c: Test the new sort functions.
971
972 Wed Nov 11 23:23:22 EST 1998 Jeff Garzik <jgarzik@pobox.com>
973
974         * Makefile.am : INCLUDES is the right way to add to CFLAGS, not
975         DEFS.  Also there are bugs with '+=' in makefiles.
976         Got rid of DEFS line by moving G_LOG_DOMAIN setting into INCLUDES.
977         Removed redundant -I from INCLUDES.
978
979 Wed Nov 11 18:11:24 EST 1998 Gregory McLean <gregm@comstar.net>
980
981         * docs/*.sgml : Batch of new documentation that should be easier
982         to maintain and extend. Plus generate whatever sort of doc file
983         you would like. I didn't change the Makefile stuff as I'm not sure
984         what default doc type people want. Oh and this is all DocBook format.
985         Enjoy!
986
987 Tue Nov 10 17:12:45 PST 1998 Manish Singh <yosh@gimp.org>
988
989         * configure.in: use __extension__ for long long on gcc >= 2.8 and
990         egcs, and provide a G_GINT64_CONSTANT wrapper so -ansi -pedantic
991         compiles clean.
992
993         * glib.h: make the endian x86 asm __const__ so the compiler can do
994         better optimizations. Also remove the cc clobber, these shouldn't
995         be changing condition codes. Ditch some redundant casts. Add an
996         optimization for 64-bit endian conversions in x86. Use constant
997         wrapper for the generic method.
998
999         * testglib.c: use constant wrappers for 64-bit constants
1000
1001 1998-11-04  Phil Schwan  <pschwan@cmu.edu>
1002
1003         * configure.in: Added 'strncasecmp' to the list of functions to be
1004         searched for.
1005         * glib.h: Added a prototype for 'g_strncasecmp'
1006         * gstrfuncs.c: (g_strncasecmp) new function modeled closely after
1007         'g_strcasecmp'
1008
1009 Wed Nov  4 15:06:44 PST 1998 Manish Singh <yosh@gimp.org>
1010
1011         * config.h.win32 (new file)
1012         * glibconfig.h.win32
1013         * glib.def
1014         * makefile.msc: applied glib-tml-981104, win32 sync
1015
1016 1998-11-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1017
1018         * glib.h:
1019         * garray.c:
1020         (g_array_remove_index): new function for removing an entry from an
1021         array while preserving the order
1022         (g_array_remove_index_fast): new function for removing an entry
1023         from an array. the order might be distorted
1024         (g_ptr_array_remove_index_fast, g_ptr_array_remove_fast): new
1025         functions; working similiar to the above. (they have the semantic
1026         of the old g_ptr_array_remove[_index] functions)
1027         (g_ptr_array_remove_index, g_ptr_array_remove): new semantic. now
1028         the order of the elements in the array is not changed
1029         (g_byte_array_remove_index, g_byte_array_remove_index_fast): new
1030         functions; byte_array wrapper for g_array_remove_index[_fast]
1031
1032 Sun Nov  1 23:00:18 PST 1998 Manish Singh <yosh@gimp.org>
1033
1034         * glib.h
1035         * configure.in: endian macros defined using the glibconfig.h
1036         mechanism now
1037
1038         * ghook.c: casts for GHookFunc and GHookCheckFunc to avoid warnings
1039
1040 Sat Oct 31 20:14:22 PST 1998 Manish Singh <yosh@gimp.org>
1041
1042         * applied glib-tml-981101-1 patch from Tor Lillqvist (ChangeLog
1043         entry appended below)
1044
1045         * testglib.c
1046         * gstrfuncs.c
1047         * glib.h: use G_HAVE_GINT64, since HAVE_GINT64 is gone
1048
1049         * gmessages.c
1050         * gscanner.c: #include <config.h> in here too, for HAVE_UNISTD_H
1051
1052 1998-11-01 Tor Lillqvist <tml@iki.fi>
1053
1054         * glib.def: Added the new functions.
1055
1056         * gutils.c:
1057         (g_getenv): Better implementation on Win32. No loop necessary.
1058         (g_get_any_init): Use P_tmpdir if defined as tmp directory. Don't
1059         set home dir always to NULL on Win32.  Don't use tmp directory as
1060         last resort home directory, but return NULL if no home
1061         directory is known (application must check).
1062
1063         * makefile.msc: Better touch command, just COPYing a single file
1064         sets the timestamp from that file, which isn't what touching should
1065         do.
1066
1067 1998-10-31  Raja R Harinath  <harinath@cs.umn.edu>
1068
1069         Land glib-rrh-19981025-0.patch.
1070         * Makefile.am (glibconfig.h): New rule.
1071         (stamp-gc-h): New rule.  Generate `glibconfig.h'.
1072         * configure.in (AM_CONFIG_HEADER): It is now `config.h'.
1073         (HAVE_BROKEN_WCTYPE): On Solaris, look for iswalnum in -lw before
1074         concluding "broken wctype".
1075         (glibconfig.h): Use AC_OUTPUT_COMMANDS to put generation code into
1076         config.status.
1077         * glib.h: Remove a lot of tests and defines.  All these have been
1078         moved to `configure.in (glibconfig.h)'.
1079         * gerror.c: Include <config.h>.
1080         * gmem.c: Likewise.
1081         * gstrfuncs.c: Likewise.
1082         * gutils.c: Likewise.
1083
1084 Sat Oct 31 05:08:26 1998  Tim Janik  <timj@gtk.org>
1085
1086         * glib.h: removed old G_ENUM(), G_FLAGS(), G_NV() and G_SV() macros.
1087         added macros G_STRUCT_OFFSET(), G_STRUCT_MEMBER_P() and
1088         G_STRUCT_MEMBER() for handling structure fields through their offsets.
1089         (struct _GHookList): added a hook_free function member, that can be used
1090         to free additional fields in derived hook structures.
1091         g_hook_free(): if hook_list->hook_free != NULL, call this function prior
1092         to freeing the hook. (this functionality should have been there in the
1093         first place, it just got forgotten as an implementation detail).
1094
1095 Wed Oct 28 00:49:32 PST 1998 Manish Singh <yosh@gimp.org>
1096
1097         * glib.h: G_BREAKPOINT for alpha from Robert Wilhelm
1098         <robert@physiol.med.tu-muenchen.de>
1099
1100 Tue Oct 27 07:25:53 1998  Tim Janik  <timj@gtk.org>
1101
1102         * glib.h:
1103         * gscanner.c:
1104         (g_scanner_sync_file_offset): new function for file input.
1105         rewind the filedescriptor to the current buffer position and blow
1106         the file read ahead buffer. usefull for third party uses of our
1107         filedescriptor, which hooks onto the current scanning position.
1108         (this became neccessary with the implementation of buffered
1109         reads).
1110         (g_scanner_input_file):
1111         (g_scanner_input_text): automatically blow the read ahead buffer.
1112         (g_scanner_get_char): blow the read ahead buffer when the end of
1113         input is reached, i.e. a '\000' char is read.
1114
1115 Tue Oct 27 00:27:31 PST 1998 Manish Singh <yosh@gimp.org>
1116
1117         * glib.h: get rid of duplicate #g_htonl and friends in the
1118         NATIVE_WIN32 part
1119
1120 Mon Oct 26 22:42:01 PST 1998 Manish Singh <yosh@gimp.org>
1121
1122         * glibconfig.h.win32
1123         * gutils.c
1124         * makefile.msc: win32 patch from Tor Lillqvist (glib-tml-981027-0),
1125         fixes some minor win32 buglets
1126
1127 Mon Oct 26 22:12:03 PST 1998 Manish Singh <yosh@gimp.org>
1128
1129         * glib.h: reimplemented the endian stuff, using inline asm
1130         for x86. #define g_htonl and friends.
1131
1132         * testglib.c: new tests for the endian stuff
1133
1134         * configure.in: care for AIX in gmodule linker flags test (from
1135         Joel Becker <jlbec@raleigh.ibm.com>). Check $host_os for linux
1136         instead of existance of /usr/include/linux
1137
1138         * gutils.c: buh-bye evil warning. Thou hast been #ifdef'd out
1139         of thine existance!
1140
1141 Tue Oct 27 03:00:50 1998  Tim Janik  <timj@gtk.org>
1142
1143         * glib.h: removed dummy structure definitions for struct _GCache,
1144         _GTree, _GTimer, _GMemChunk, _GListAllocator and _GStringChunk.
1145
1146         * gutils.c: implement glib's inline functions _after_ all include
1147         statements have been processed.
1148         removed Tor's MAXPATHLEN check since there already was one supplied
1149         further down in this file.
1150         (LibMain): special cased the #ifdef __LCC__ case for NATIVE_WIN32,
1151         since lcc maybe used on other platforms as well. why in hell is this
1152         stuff required?
1153         (g_get_any_init): for windows, if the user name is supplied, use it as
1154         realname also.
1155         in general, if there is no homedir specified, use the tmpdir that
1156         we already figured.
1157
1158         * gtimer.c (g_timer_elapsed): changed a g_assert() statement to
1159         g_return_if_fail().
1160
1161         * applied glib-tml-981020-0.patch for WIN32 portability, added some
1162         comments and g_return_if_fail() statements, minor indentation fixes.
1163         ChangeLog entry from Tor Lillqvist is appended.
1164
1165         * glib.h (struct dirent): use lower case structure members.
1166
1167         * glib.h:
1168         * makefile.lcc:
1169         * makefile.msc:
1170         s/COMPILING_GLIB/GLIB_COMPILATION/
1171
1172 1998-10-20: Tor Lillqvist <tml@iki.fi>
1173
1174         * README.win32 glib.def gmodule.def
1175         * glibconfig.h.win32 gmodule/gmoduleconf.h.win32:
1176         New files for the Windows port. The .def files list exported
1177         symbols for the Microsoft linker and compatibles.
1178
1179         * configure.in:
1180         Added checks for some platform-dependent headers: pwd.h sys/param.h
1181         sys/select.h sys/time.h sys/times.h unistd.h, and the function lstat.
1182
1183         * gerror.c:
1184         Conditionalized inclusion of system-dependent headers. Changes
1185         for Windows: no gdb to do a stack trace. Just call abort().
1186
1187         * glib.h:
1188         Changes for Windows:
1189
1190         Added macros G_DIR_SEPARATOR, G_DIR_SEPARATOR_S for
1191         platform-dependent file name syntax elements. Added macros
1192         G_SEARCHPATH_SEPARATOR, G_SEARCHPATH_SEPARATOR_S for
1193         platform-dependent search path syntax conventions.
1194
1195         Added pragmas for Microsoft C to make it more pedantic.
1196
1197         Marked GLib's global variables for export from DLL.
1198
1199         Added the function g_strescape that escapes backslashes.
1200
1201         Added functions g_path_is_absolute and g_path_skip_root to
1202         handle platform-dependent file name syntax.
1203
1204         Added the function g_getenv that expands environment variables
1205         that contain references to other environment variables, as is
1206         typical on Windows NT.
1207
1208         Added the GIOChannel structure which is used to encapsulate the
1209         IPC mechanism used by the GIMP's plug-ins, and possibly other
1210         things later. On Unix a GIOChannel encapsulates just a file
1211         descriptor. On Windows it contains a file handle from _pipe() and a
1212         few other things related to the implementation of gdk_input_add
1213         and GIMP plug-in communication. Subject to change.
1214
1215         Removed duplicate declarations of the version variables.
1216
1217         For the Microsoft compiler, declare own implementation of
1218         ftruncate and the <dirent.h> functions.
1219
1220         * gmem.c:
1221         Define a symbolic name  for the profiling table size.
1222
1223         * gmessages.c:
1224         Conditionalized inclusion of unistd.h. On Windows, output using
1225         stdio to stdout.
1226
1227         * gscanner.c:
1228         Conditionalized inclusion of unistd.h. Added changes for
1229         Microsoft C. Added CR to the skipped character set. Added small
1230         workaround for MSC compiler bug in g_scanner_cur_value.
1231
1232         * gstrfuncs.c:
1233         Added the function g_strescape, which escapes the backslash
1234         character. Needed especially when printing Windows filenames.
1235
1236         * gtimer.c:
1237         Conditionalized inclusion of unistd.h and sys/time.h. Added
1238         implementations for Windows.
1239
1240         * gutils.c:
1241         Conditionalized inclusion of platform-dependent headers. Use
1242         the platform-independent file name syntax macros.
1243         Conditionalize code on platform-dependent features. Added the
1244         functions g_path_is_absolute g_path_skip_root and g_getenv.
1245         Added the GIOChannel-related functions. Added
1246         compiler-dependent Unix compatibility functions for Windows.
1247
1248         * makefile.lcc makefile.msc:
1249         New files. Compiler-specific makefiles for LCC-Win32 and
1250         Microsoft C. Only Microsoft C is actually supported currently.
1251
1252         * testglib.c:
1253         Added pathname check cases for Windows. Added workaround for
1254         bug in the Microsoft runtime library. Improved some tests a bit.
1255
1256 Sun Oct 25 01:24:01 CST 1998 Shawn T. Amundson <amundson@gtk.org>
1257
1258         * Released GLib 1.1.4
1259
1260         * docs/Makefile.am:
1261         * docs/.cvsignore
1262         * docs/glib-config.1:
1263         * docs/glib.texi: Moved docs from gtk and created glib-config.1
1264         from gtk-config.1 in gtk
1265
1266         * configure.in:
1267         * Makefile.am:
1268         * sanity_check: added in docs directory, change rule 'release'
1269         to 'snapshot' and created a new 'release' rule for doing the
1270         distribution.  Added in a 'sanity' rule.
1271
1272         * NEWS:
1273         * README:
1274         * INSTALL: Updated for the release
1275
1276 Sun Oct 25 07:30:10 1998  Tim Janik  <timj@gtk.org>
1277
1278         * gscanner.c:
1279         (g_scanner_peek_next_char):
1280         (g_scanner_get_char): no more characters are available if read() returns
1281         anything less than 1, not only on 0 return.
1282
1283         * glib.h:
1284         * gstrfuncs.c: final API cleanup of string arrays to suit sopwith's
1285         argument order requirements.
1286         (g_strsplit): renamed from g_str_array_split().
1287         (g_strjoinv): renamed from g_str_array_joinv(), string array is
1288         now passed as last parameter. removed `const' qualifier from string
1289         array pointer (again).
1290         (g_strjoin): new function from sopwith to concatenate strings with
1291         an additional seperator.
1292         (g_strfreev): renamed from g_str_array_free.
1293
1294 Sat Oct 24 22:23:04 PDT 1998 Manish Singh <yosh@gimp.org>
1295
1296         * gnode.c: small fix to g_node_children_foreach to make it work right.
1297         From Paco Moya <paco@cadnotebk17.eecs.berkeley.edu>
1298
1299 Wed Oct 21 19:22:58 1998  Tim Janik  <timj@gtk.org>
1300
1301         * configure.in (G_MODULE_HAVE_DLERROR): reverted part of the changes
1302         from Sebastian Wilhelmi (1998-10-20). don't specify a specific loading
1303         behaviour (i.e. RTLD_NOW) when we are not sure whether it is supplied.
1304         changed the return value from (!f2 && f1) to (!f2 || f1) so we default
1305         to not needing an underscore. reverted the extra plugin.c building,
1306         because .lo files are not ELF libraries, this can't work. This needs
1307         further investigation on Solaris...
1308
1309 Wed Oct 21 17:03:05 1998  Tim Janik  <timj@gtk.org>
1310
1311         * glib.h:
1312         * gstrfuncs.c: API cleanups of the new g_str* functions for consistency
1313         with the existing naming scheme for g_str* functions. grouped the g_str*
1314         functions that will return a newly allocated string seperatedly. all of
1315         the in_place arguments were skipped, the caller is supposed to pass a
1316         g_strdup()ed string if he wants to retrive a new copy. indentation and
1317         coding style fixups. added some g_return_if_fail() statements.
1318         string array functions are prefixed with g_str_array_.
1319         (g_strdelimit): return the modified string like all other g_str*
1320         functions, that operate in place.
1321         (g_strchug): renamed from g_str_chug(), removed in_place argument.
1322         (g_strchomp): renamed from g_str_chomp(), removed in_place argument.
1323         (g_strstrip): renamed from g_str_strip(), removed in_place argument.
1324         (g_str_array_join): renamed from g_strconcatv(), since it actually
1325         operates on a string array and has totaly different semantics from
1326         g_strconcat(). check for separator != NULL, don't segfault if the first
1327         string is NULL. removed the `const' from the string array that's passed,
1328         so users can operate on gchar** string arrays.
1329         (g_str_array_split): renamed from g_str_split() because we actually
1330         produce a string array. reimplemented this function for efficiency.
1331         removed macro aliases g_str_joinv and g_str_join.
1332
1333 1998-10-20  Elliot Lee  <sopwith@redhat.com>
1334
1335         * glib.h, gstrfuncs.c: Move string join/split/free routines from
1336         libgnome/gnome-string, rename, and add g_str_chug.
1337
1338 1998-10-20  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1339
1340         * configure.in: made the check for needed _ in module's func-names
1341         work on solaris. (G_MODULE_NEED_USCORE must be set outside
1342         AC_CACHE_VAL, dlopen(0,0) refused to work on solaris).
1343
1344 Tue Oct 20 03:32:58 PDT 1998 Manish Singh <yosh@gimp.org>
1345
1346         * configure.in
1347         * acconfig.h: added test for endianness
1348
1349         * glib.h: #define endian macros for system and some conversions
1350         between byte order
1351
1352 Thu Oct  8 06:47:27 1998  Tim Janik  <timj@gtk.org>
1353
1354         * glib.h:
1355         * gdataset.c: removed functions g_dataset_id_set_destroy and
1356         g_datalist_id_set_destroy and macros g_dataset_set_destroy and
1357         g_datalist_set_destroy.
1358         added new functions g_dataset_id_remove_no_notify and
1359         g_datalist_id_remove_no_notify plus associated macros
1360         g_dataset_remove_no_notify and g_datalist_remove_no_notify, which
1361         will remove a certain data portion without invokation of its destroy
1362         notifier, this should only be used in very controled circumstances.
1363
1364 Wed Oct  7 05:31:24 1998  Tim Janik  <timj@gtk.org>
1365
1366         * glib.h:
1367         removed the #pragma } statement after extern "C" {. use
1368         (c-set-offset 'inextern-lang 0) to fixup emacs cc-mode indentation.
1369
1370         * glib.h:
1371         * ghook.c: API and code cleanups. changed the G_HOOK_ACTIVE and
1372         G_HOOK_IN_CALL enum vals to G_HOOK_FLAG_ACTIVE and G_HOOK_FLAG_IN_CALL.
1373         changed the G_HOOK_IS_ACTIVE() and G_HOOK_IS_IN_CALL() macros to
1374         G_HOOK_ACTIVE() and G_HOOK_IN_CALL().
1375         fixed the g_hook_find* functions, so they iterate over non-active
1376         hooks as well.
1377         (g_hook_first_valid):
1378         (g_hook_next_valid): added an extra argument gboolean may_be_in_call,
1379         which indicates whether G_HOOK_IN_CALL() hooks are considered valid
1380         or not. these two functions are meant as iterators for the hook list
1381         invocation, so they need to a) provide functionality to implement
1382         may_recurse bahaviour and b) only walk active hooks.
1383
1384 Tue Oct  6 14:29:47 1998  Tim Janik  <timj@gtk.org>
1385
1386         * gmem.c (g_malloc0): fixed memory offsett when ENABLE_MEM_CHECK is
1387         defined and ENABLE_MEM_PROFILE is not (patch from Martin Pool
1388         <mbp@wistful.humbug.org.au>).
1389
1390 Sat Oct  3 01:18:10 1998  Tim Janik  <timj@gtk.org>
1391
1392         * glib.h:
1393         * ghook.c:
1394         (g_hook_list_invoke):
1395         (g_hook_list_invoke):
1396         (g_hook_list_marshal): properly handle the first valid hook to call,
1397         it maybe IN_CALL already.
1398         (g_hook_list_marshal): minor name change.
1399
1400 Fri Oct  2 23:21:21 1998  Tim Janik  <timj@gtk.org>
1401
1402         * glib.h:
1403         * ghook.c: renamed GHook.id to GHook.hook_id so we don't get troubles
1404         with ObjC which reserves "id" as a keyword (Raja R Harinath
1405         <harinath@cs.umn.edu>).
1406
1407 Wed Sep 30 10:53:03 1998  Tim Janik  <timj@gtk.org>
1408
1409         * Makefile.am: added ghook.c.
1410
1411         * glib.h:
1412         * ghook.c: generic callback maintenance functions.
1413
1414         * glib.h: define G_GNUC_UNUSED.
1415
1416 Fri Sep 25 00:04:37 1998  Tim Janik  <timj@gtk.org>
1417
1418         * configure.in: version bump to 1.1.4, binary age 0, interface age 0.
1419
1420         * glib.h (struct _GScanner): dumped peeked_char and text_len in favour
1421         of *text_end and *buffer for buffered read()s.
1422
1423         * gscanner.c: changed peeking and retrival of next character so we
1424         have buffered reads. fixed minor bug with number parsing error
1425         reporting. made some static!!! variables local ones (why did we use
1426         static temporary variables in the lowlevel tokenization code anyways?).
1427
1428 Mon Sep 21 23:23:10 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
1429
1430         * Released GLib 1.1.3
1431
1432 Mon Sep 21 07:43:13 1998  Tim Janik  <timj@gtk.org>
1433
1434         * glib.h: added g_renew() which works as g_new() for g_realloc().
1435
1436 Mon Sep 21 02:22:12 1998  Tim Janik  <timj@gtk.org>
1437
1438         * NEWS file update for upcoming release of GLib + GModule
1439         version 1.1.3, binary age 0, interface age 0. (GModule uses
1440         the same version numbers as GLib.)
1441
1442         * glib.h: swap the inclusion of of float.h and limits.h to work
1443         around a egcs 1.1 oddity on Solaris 2.5.1 (fix provided by
1444         Per Abrahamsen  <abraham@dina.kvl.dk>).
1445
1446         * glib.h:
1447         * gscanner.c: renamed the GValue union to GTokenValue, this should
1448         not affect source compatibility in most cases.
1449
1450         * ghash.c: added some g_return_if_fail() statements. make
1451         g_hash_table_lookup_node() an inline function so we save an extra
1452         function invokation on lookups.
1453
1454 Sun Sep 20 18:21:46 1998  Owen Taylor  <otaylor@redhat.com>
1455
1456         * ltmain.sh: Patch to libtool-1.2b to make --disable-static
1457         work.
1458
1459 Sun Sep 20 02:09:44 1998  Josh MacDonald  <jmacd@axis.hip.berkeley.edu>
1460
1461         * glib.h: New function g_hash_table_foreach_remove is similar to
1462         g_hash_table_foreach, but the callback's return value indicates
1463         whether to remove the element (if TRUE) or not (if FALSE).
1464         Returns the number of elements deleted.
1465
1466 Fri Sep 18 11:31:50 PDT 1998 Manish Singh <yosh@gimp.org>
1467
1468         * glib.h
1469         * gstrfuncs.c: added g_memdup implementation
1470
1471 Fri Sep 18 18:46:14 1998  Tim Janik  <timj@gtk.org>
1472
1473         * glib.h:
1474         * gdataset.c: make the datalists a safe type (not using a generic
1475         gpointer) by expecting a GData* argument in the g_datalist functions.
1476         provide g_dataset_foreach() and g_datalist_foreach() functions that
1477         allow a GDataForeachFunc function to walk the data lists.
1478         (g_dataset_destroy_internal): made this function truely reentrant (i.e.
1479         can be called from within destroy notifiers as well).
1480         the *_foreach functions are _not_ reentrant (unless all the other
1481         dataset and datalist functions).
1482
1483 Fri Sep 18 03:41:20 1998  Tim Janik  <timj@gtk.org>
1484
1485         * gtree.c (g_tree_new): check for key_compare_func != NULL (reported
1486         by Michal Kara).
1487
1488 Thu Sep 17 18:55:46 PDT 1998 Manish Singh <yosh@gimp.org>
1489
1490         * config.h.in: removed from repository
1491
1492         * install-sh
1493         * missing
1494         * mkinstalldirs: updated to latest automake version
1495
1496 Thu Sep 17 06:36:25 1998  Tim Janik  <timj@gtk.org>
1497
1498         * glib.h:
1499         * gdataset.c: implemented g_datalist_* along the lines of g_dataset,
1500         but operates on an opaque gpointer *datalist; pointer, e.g. for the
1501         implementation of GtkObject named data.
1502         we cache a certain portion of the already freed data entries now, to
1503         gain a slight performance improve with data reallocation.
1504
1505 Tue Sep 15 14:57:30 1998  Owen Taylor  <otaylor@redhat.com>
1506
1507         * Makefile.am glib-config.in l*: Update to libtool-1.2b,
1508         change library versioning scheme to drop LT_RELEASE
1509         from the -l line, while keeping it in the soname.
1510
1511 Fri Sep 11 02:11:46 1998  Tim Janik  <timj@gtk.org>
1512
1513         * glib.h: explicitely include the prototypes for inline functions
1514         to cure gcc warnings for -Wmissing-prototypes.
1515
1516 Wed Sep  9 02:52:04 PDT 1998 Manish Singh <yosh@gimp.org>
1517
1518         * configure.in: added -posix check for NeXTStep
1519
1520 Tue Sep  8 05:04:06 1998  Tim Janik  <timj@gtk.org>
1521
1522         * glib.h: abandon the use of ATEXIT(), we keep the fallback
1523         macros for backwards compatibility. people ought to use g_atexit().
1524
1525         * gutils.c (g_atexit): new function to take over the implementation
1526         of ATEXIT. this function is guarranteed to succeed, similar to
1527         g_malloc().
1528
1529 Mon Sep  7 20:07:38 PDT 1998 Manish Singh <yosh@gimp.org>
1530
1531         * configure.in: comment the -std1 check and save LIBS properly
1532
1533 Mon Sep  7 07:53:21 1998  Tim Janik  <timj@gtk.org>
1534
1535         * configure.in: check for all three inline keywords individually.
1536
1537         * glib.h: inlining hassle. for compilers that don't allow the `inline'
1538         keyword, mostly because of strict ANSI C compliance or dumbness, we try
1539         to fall back to either `__inline__' or `__inline'.
1540         we define G_CAN_INLINE, if the compiler seems to be actually *capable*
1541         to do function inlining, in which case inline function bodys do make
1542         sense. we also define G_INLINE_FUNC to properly export the function
1543         prototypes if no inlinig can be performed. we special case most of the
1544         stuff, so inline functions can have a normal implementation by defining
1545         G_INLINE_FUNC to extern and G_CAN_INLINE to 1.
1546
1547         * ltconfig: (compiler PIC flag test): special case linux for non
1548         aout systems to honour lcc's position independant code (cases
1549         "linux*aout)" and "linux*)" got added). (this needs to go into
1550         libtool which does an advanced test, checking for __LCC__).
1551
1552         * autogen.sh: take $CC=lcc into account by invoking automake with
1553         --include-deps so lcc isn't scared by gcc's auto-dependancy
1554         generation code. care about $ACLOCAL_FLAGS. optionally feature
1555         autoheader.
1556
1557         * minor fixups in other places to cure some of lcc's warnings.
1558
1559 Sun Sep  6 19:08:53 PDT 1998 Manish Singh <yosh@gimp.org>
1560
1561         * configure.in: added -std1 check for ANSI compliance (from gtk)
1562
1563 Sun Sep  6 12:31:50 PDT 1998 Manish Singh <yosh@gimp.org>
1564
1565         * glib.h: provide proper ATEXIT behavior on NeXTStep by !atexit
1566
1567 Sat Sep  5 18:03:36 1998  Tom Tromey  <tromey@cygnus.com>
1568
1569         * gutils.c (GLIB_INLINE): Define.
1570         * glib.h (GLIB_INLINE): New define.
1571         (g_bit_nth_msf): Use it.  Also, add prototype.
1572         (g_bit_storage): Likewise.
1573         (g_bit_storage): Likewise.
1574
1575 Sat Sep  5 04:40:02 1998  Tim Janik  <timj@gtk.org>
1576
1577         * glib.h:
1578         (g_chunk_new0): use g_mem_chunk_alloc0() to allocate the memchunk,
1579         so the correct size of the memchunk is allocated with 0's and not
1580         a memory portion of the size of the desired type.
1581
1582         * gmem.c: new function g_mem_chunk_alloc0() which will initialize
1583         a memory area allocated with g_mem_chunk_alloc() with 0's.
1584
1585 Wed Sep  2 19:13:28 1998  Owen Taylor  <otaylor@redhat.com>
1586
1587         * garray.c glib.h (g_array_[ap/pre]pend_vals): make
1588         data argument const.
1589
1590 Wed Aug 26 06:32:40 1998  Tim Janik  <timj@gtk.org>
1591
1592         * glib.h:
1593         * gstrfuncs.c: new function g_strnfill() to return a new string
1594         of specified length, filled with a specific character.
1595
1596 Tue Sep  1 23:46:31 1998  Josh MacDonald  <jmacd@axis.hip.berkeley.edu>
1597
1598         * testglib.c (main): Update the array tests.  Reduce the number of
1599         iterations for the prepend test from 10000 to 100 since it is
1600         O(n^2) and was taking longer than I would like to wait.
1601
1602         * garray.c: I've worked on the GArray interface, mostly.  It was
1603         seriously broken before and I hate to do it, but this is going to
1604         break some code.  It is important to do this now, because more and
1605         more people are starting to use glib and the interface was both
1606         broken and inconsistent.  First, rename the _truncate functions of
1607         both the GArray and GPtrArray classes to _set_size, since this
1608         function can also be used to extend the arrays.  GArray now
1609         accepts two more initialization arguments: clear and element_size.
1610         Instead of providing the type to each access function, the array
1611         now stores the element size.  Clear, if set, causes the library to
1612         zero element's memory as the array expands.  The major broken-ness
1613         here was that array->len was in bytes, not elements.  Now, since
1614         the array knows its element size, array->len is correct and I have
1615         removed the g_array_length macro.  The only macro which now
1616         accepts the type as an argument is g_array_index, which casts the
1617         element to the right type--this interface does not change.  The
1618         append and prepend functions simply need the types removed.
1619         g_ptr_array_remove_index now returns the removed element.
1620
1621         * gprimes.c (g_spaced_primes_closest): Move this function out of
1622         ghash.c and rename it from g_hash_closest_prime.  Fix the primes
1623         so that they are actually prime (they weren't all -- isn't that
1624         nice?).
1625
1626 Mon Aug 24 02:08:56 1998  Tim Janik  <timj@gtk.org>
1627
1628         * glib.h:
1629         * gstring.c:
1630         * gstrfuncs.c:
1631         (g_vsprintf): removed this function which was not publically
1632         exported in glib.h. to export it, it should have been named
1633         differently in the first place, since its semantics differ from
1634         vsprintf(). apart from that, it was a possible cause for
1635         problems since it worked on a previously allocated memory area and
1636         was used in a lot places of glib. exporting it would have been a
1637         guararant for problems with threaded programs.
1638         (g_printf_string_upper_bound): exported this function to return
1639         a string size, guarranteed to be big enough to hold the fully
1640         expanded format+args string. added 'q', 'L' and 'll' flag handling.
1641         in fact, the newly allocated area is in most cases much bigger than
1642         required.
1643         (g_strdup_vprintf()): new function returning a newly allocated string
1644         containing the contents of *format and associated args (size is
1645         calculated with g_printf_string_upper_bound()).
1646         (g_strdup_printf): new function which wraps g_strdup_vprintf().
1647
1648         * configure.in: check for va_copy() or __va_copy() alternatively.
1649         check whether va_lists can be copyied by value.
1650
1651         * glib.h: provide a definition for G_VA_COPY.
1652
1653         * glib.h:
1654         * gmessages.c:
1655         (g_logv):
1656         (g_vsnprintf):
1657         pass va_lists by value, not by reference, since this causes problems
1658         on platforms that implement va_list as as arrays. internaly, use
1659         G_VA_COPY (new_arg, org_arg); va_end (new_arg); to produce a second
1660         va_list variable, if multiple passes are required. changed all
1661         callers.
1662
1663         * glib.h:
1664         * gerror.h:
1665         renamed g_debug() to g_on_error_query(), cleaned up a bit.
1666         renamed g_stack_trace() to g_on_error_stack_trace() since both
1667         functions cluttered different namespaces.
1668         there is an appropriate comment in glib.h now that explains the
1669         unix and gdb specific dependencies of both functions.
1670         removed g_attach_process().
1671         g_on_error_stack_trace() should probably be handled with caution,
1672         i've seem several different linux versions (2.0.x) become unstable
1673         after invokation of this function.
1674
1675 1998-08-18: Elliot Lee <sopwith@redhat.com>
1676
1677         * In gmem.c, add the ability to exclude memory chunks from the
1678           memory profiling information.
1679
1680 Tue Aug 18 18:23:09 PDT 1998 Manish Singh <yosh@gimp.org>
1681
1682         * glib.h
1683         * gstrfuncs.c: added g_strndup
1684
1685 Tue Aug 18 04:40:17 1998  Tim Janik  <timj@gtk.org>
1686
1687         * glib.h:
1688         * gmessages.c: new function g_log_set_always_fatal() to set an
1689         additional fatal_mask for log levels that are considered to be fatal
1690         globally (required by gtk). since this mask is not domain-associated,
1691         it is restricted to the log levels, introduced by glib itself.
1692
1693         * gmem.c:
1694         * grel.c:
1695         * gtree.c (g_tree_node_check):
1696         don't use g_print() calls for informational/debugging output,
1697         but log all this stuff through g_log() with G_LOG_LEVEL_INFO.
1698         libraries shouldn't use printf(), g_print() or g_printerr() at all.
1699
1700 Tue Aug 18 02:46:44 1998  Tim Janik  <timj@gtk.org>
1701
1702
1703         * glib.h (__STRICT_ANSI__): if __STRICT_ANSI__ is defined, make
1704         `inline' a noop, since strict ANSI rules don't permit `inline'.
1705
1706 Mon Aug 17 15:21:42 1998  Tim Janik  <timj@gtk.org>
1707
1708         * grel.c: made private functions static.
1709
1710 Sun Aug 16 23:23:46 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
1711
1712         * gmodule/Makefile.am: added gmodule-dl.c and gmodule-dld.c to
1713           EXTRA_DIST
1714         * glib.spec: version = 1.1.3
1715
1716 Mon Aug 17 01:46:14 1998  Tim Janik  <timj@gtk.org>
1717
1718         * glib.m4: feature an extra MODULES parameter, so glib-config can
1719         be invoked with the "gmodule" argument.
1720
1721         * glib.h: changed the log level to G_LOG_LEVEL_CRITICAL for all
1722         g_return*_if_fail statements, and made them issue a message
1723         like "assertion `%s' failed".
1724
1725         * gmessages.c (g_logv): ugh, don't pass log_domain as NULL to
1726         g_log_find_domain.
1727
1728 Sun Aug 16 20:28:27 1998  Tim Janik  <timj@gtk.org>
1729
1730         * version bump to 1.1.3, binary age 0, interface age 0.
1731
1732         * glib.h: be nice to platforms that don't have gint64 and don't
1733         issue #warning on every compilation. since glib doesn't require
1734         gint64 itself, packages that need gint64 should test for this
1735         themselves.
1736
1737         * glib.h:
1738         * gutils.c: added a new function g_vsnprintf().
1739
1740 Sun Aug 16 Elliot Lee
1741
1742         glib.h: #error out if we don't recognize the SIZEOF_VOID_P
1743                 #warning if no gint64
1744
1745 Fri Aug 14 16:41:53 1998  Tim Janik  <timj@gtk.org>
1746
1747         * glib.h: added static inline functions for bit mask tests:
1748         g_bit_nth_lsf, g_bit_nth_msf and g_bit_storage.
1749
1750 Fri Aug 13 14:23:37 1998  Tim Janik  <timj@gtk.org>
1751
1752         * glib.h:
1753         * gmessages.c:
1754         revised the message handling system, which is now based on a new
1755         mechanism g_log*. most of the assertment macros got adapted to
1756         feature the new g_log() call with an additional specification of
1757         the log level in a preprocessor macro G_LOG_DOMAIN. if G_LOG_DOMAIN
1758         is undefined upon the includion of glib.h, it'll be defined with a
1759         value of (NULL) and thus preserves the original bahaviour for
1760         warning and error messages. the message handler setting functions
1761         for g_warning, g_error and g_message are only provided for backwards
1762         compatibility and might get removed somewhen.
1763
1764         * Makefile.am: feature the G_LOG_DOMAIN macro to set the log domain
1765         to "GLib" upon compilation. we currently have to add this definition
1766         to the DEFS variable.
1767         * testglib.c: we need an ugly #undef G_LOG_DOMAIN at the start
1768         of this file currently, since automake doesn't support per target
1769         _CFLAGS yet.
1770
1771         * glib.h: changed some gints to gbooleans, made a few const corrections,
1772         removed some superfluous G_STMT_START{}G_STMT_END wrappers, added some
1773         in other required places.
1774
1775         * gnode.c:
1776         (g_node_prepend):
1777         (g_node_insert_before):
1778         (g_node_insert):
1779         (g_node_append_data):
1780         (g_node_prepend_data):
1781         (g_node_insert_data_before):
1782         (g_node_insert_data):
1783         (g_node_append):
1784         return (node), so these macros/functions can be usefully chained with
1785         g_node_new().
1786
1787 Mon Aug 10 17:56:11 PDT 1998 Manish Singh <yosh@gimp.org>
1788
1789         * glib.h: it's GTime now, and it's back!
1790
1791 Mon Aug 10 02:17:19 1998  Tim Janik  <timj@gtk.org>
1792
1793         * Makefile.am: minor hack to cause SUBDIRS (gmodule) to be build
1794         last. we do this by making all-recursive-am depend on all-am.
1795
1796 Sun Aug  9 15:56:11 1998  Tim Janik  <timj@gtk.org>
1797
1798         * configure.in: added GModule checks. generate files in gmodule/.
1799         * glib-config.in: support library specifications `glib' and `gmodule'.
1800         * Makefile.am: feature the gmodule/ subdir.
1801
1802 Wed Aug  5 10:04:29 PDT 1998 Shawn T. Amundson <amundson@gtk.org>
1803
1804         * Released GLib 1.1.2
1805
1806 Wed Aug 05 01:15:36 1998  George Lebl  <jirka@5z.com>
1807
1808         * testglib.c: fix 64-bitness in g_prints, sizeof doesn't
1809           seem to return int so I cast it for printing, probably
1810           just cosmetic
1811
1812 Tue Aug  4 19:54:06 PDT 1998 Shawn T. Amundson <amundson@gkt.org>
1813
1814         * Released GLib 1.1.1
1815
1816 Tue Aug  4 15:17:54 1998  Tim Janik  <timj@gtk.org>
1817
1818         * configure.in: version bump to 1.1.1, binary age 1, interface age 0.
1819         * NEWS: updates.
1820         * README: updates.
1821         * INSTALL: updates and fixes.
1822         * COPYING: include the GNU LGPL, rather than shipping an empty file.
1823         * AUTHORS: listed original authors here, and added people who made
1824         significant improvements to glib.
1825
1826         * glib.h:
1827         * gutils.c: implement g_get_current_dir() which returns a newly
1828         allocated string, instead of a g_getcwd() variant that operates
1829         on a static buffer.
1830         export glib_interface_age and glib_binary_age.
1831         as a convenience, macro definitions have been added for
1832         g_node_insert_data, g_node_insert_data_before, g_node_append_data and
1833         g_node_prepend_data.
1834
1835         * testglib.c: minor cleanups, print current dir.
1836
1837 Mon Aug  3 16:02:26 1998  Tim Janik  <timj@gtk.org>
1838
1839         * glib.h:
1840         * gnode.c: change order of gpointer data; field in struct _GNode to
1841         be partly binary compatible with GList and GSList.
1842
1843 1998-08-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1844
1845         * garray.c (g_ptr_array_remove_index): bugfix: index check for
1846         array has been wrong.
1847
1848 Fri Jul 31 22:17:05 1998  Tim Janik  <timj@gtk.org>
1849
1850         * testglib.c (g_node_test): added a GNode test.
1851
1852 Fri Jul 31 09:08:16 1998  Tim Janik  <timj@gtk.org>
1853
1854         * Makefile.am: compile gnode.c.
1855
1856         * glib.h:
1857         * gnode.c: added implementation of n-way trees.
1858
1859         * gtree.c (g_tree_traverse): added a warning to the switch() statement
1860         which says that G_LEVEL_ORDER is not implemented.
1861
1862 Mon Jul 27 00:17:30 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
1863
1864         * Released GLib 1.1.0
1865
1866 Mon Jul 27 01:02:27 1998  Tim Janik  <timj@gtk.org>
1867
1868         * glib.h: #if 0'ed out the GTime definition, until it is definitively
1869         needed. #if 0'ed out the g_getcwd() version, because it is the wrong
1870         implementation.
1871
1872 Sat Jul 25 16:09:00 1998  Mark Crichton <crichton@expert.cc.purdue.edu>
1873
1874         * glib.h: gtime changed to g_time.  gtime is used in
1875         /usr/include/time.h in NetBSD, causing multiple headaches.
1876         If this isn't the right way of fixing it.... ;)
1877
1878 Thu Jul 23 00:29:14 1998  Tim Janik  <timj@gtk.org>
1879
1880         * glib.h:
1881         * gscanner.c: new functions to make a scanner scope sensitive wrt
1882         symbol lookups.
1883         g_scanner_scope_foreach_symbol, g_scanner_scope_lookup_symbol,
1884         g_scanner_scope_remove_symbol, g_scanner_scope_add_symbol and
1885         g_scanner_set_scope.
1886         g_scanner_add_symbol, g_scanner_remove_symbol and
1887         g_scanner_foreach_symbol are now aliases for scope 0.
1888
1889 Mon Jul 20 23:05:34 1998  George Lebl  <jirka@5z.com>
1890
1891         * glib.h: typo fixed for alphas for gint64
1892
1893 Tue Jul 14 09:05:18 1998  Tim Janik  <timj@gtk.org>
1894
1895         * glib.h:
1896         * gutils.c: new fuction g_dirname() which returns a newlly
1897         allocated string.
1898
1899 Fri Jul 10 06:33:43 1998  Tim Janik  <timj@gtk.org>
1900
1901         * glib.h:
1902         * gutils.h: added a bunch of utility/wrapper functions:
1903         g_basename(), g_getcwd(), g_get_user_name(), g_get_real_name(),
1904         g_get_home_dir(), g_get_tmp_dir(), g_get_prgname() and g_set_prgname().
1905
1906         * gutils.c: removed all g_str* functions.
1907         * gstrfuncs.c: moved the bunch g_str* functions from gutils.c in this
1908         place. this file shall never include <unistd.h> to avoid clashes for
1909         some of the g_str* functions on some OSes.
1910
1911 Fri Jul 10 00:29:03 EEST 1998 Lauri Alanko <nether@gimp.org>
1912
1913         * glib.h:
1914         * ghash.c: Renamed g_hash_table_lookup_full to
1915         g_hash_table_lookup_extended to conform with naming conventions.
1916
1917 Tue Jul  7 03:18:58 EEST 1998 Lauri Alanko <nether@gimp.org>
1918
1919         * glib.h:
1920         * ghash.c: Generic cleanup, added a function:
1921         (g_hash_table_lookup_full): Return whether the lookup succeeded,
1922         and also retrieve the key and value. This allows one to
1923         distinguish between failed lookup and finding a NULL, and also
1924         allows one to free a key in the hash.
1925
1926 Mon Jul  6 10:12:05 PDT 1998 Manish Singh <yosh@gimp.org>
1927
1928         * ltconfig: fix for properly detecting shared lib support on
1929         SunPro cc (taken from libtool 1.2.a)
1930
1931 Sat Jul  4 13:38:52 PDT 1998 Manish Singh <yosh@gimp.org>
1932
1933         * glib.h: added g_array_length
1934
1935 Tue Jun 30 11:58:25 1998  Tim Janik  <timj@gtk.org>
1936
1937         * gscanner.c (g_scanner_unexp_token): take symbol_2_token into
1938         account. react on valid/invalid string pairs.
1939
1940 Sat Jun 27 21:55:46 PDT 1998 Manish Singh <yosh@gimp.org>
1941
1942         * glib.m4: ftp.glib.org -> ftp.gtk.org, since glib.org isn't
1943         ours. ;)
1944
1945 Fri Jun 19 03:11:02 1998  Tim Janik  <timj@gtk.org>
1946
1947         * gdataset.c: removed g_dataset_try_key, g_dataset_force_id and
1948         g_dataset_retrive_key in favour of GQuarks.
1949         a GQuark is an numeric id wich is associated with a certain string.
1950         (g_quark_try_string): try to get the quark associated with this string,
1951         if the lookup failed return 0.
1952         (g_quark_from_string): get the associated quark for a string, if there
1953         isn't currently a GQuark associated with this string, then allocate a
1954         new quark and return that.
1955         (g_quark_from_static_string): like the above function, but the string
1956         isn't strdup()ed to save memory.
1957         (g_quark_to_string): get the string that is associated with a certain
1958         GQuark.
1959
1960         * gdataset.c (g_dataset_id_set_data_full): invoke the destroy function
1961         _after_ the new data has been setup.
1962
1963 Thu Jun 18 02:35:21 1998  Owen Taylor  <otaylor@gtk.org>
1964
1965         * glib.h: Changed messages for g_return_[val]_if_fail to
1966         be somewhat more clear: assertion "blah" failed.
1967
1968 1998-06-18  Federico Mena Quintero  <federico@nuclecu.unam.mx>
1969
1970         * testglib.c (main): Use GINT_TO_POINTER casts to remove compiler
1971         warnings.
1972
1973         * grel.c: #include <string.h>
1974
1975 Fri Jun 12 15:39:06 1998  Tim Janik  <timj@gtk.org>
1976
1977         * glib.h (GScanner): cleanups of the structure fields (binary
1978         incompatible).
1979
1980 Fri Jun 12 00:39:28 1998  Josh MacDonald  <jmacd@icw.EECS.Berkeley.EDU>
1981
1982         * glib.h: add new hash and equal functions g_int_*.  complement
1983         g_direct_hash with g_direct_equal.
1984
1985         * grel.c: new file, GRelations implement tuples of N-N mappings.
1986         A comment in glib.h briefly describes the interface.
1987
1988         * ghash.c: new function, g_hash_table_size
1989
1990         * glib.h: new typedefs, gsize, gssize, gtime.
1991
1992         * garray.c: new functions implementing a simplified GArray.  This
1993         GPtrArray is an array of gpointers and has functions to add and
1994         remove elements, much like java.lang.Vector.
1995
1996         * garray.c: new functions for the single-byte special case of
1997         GArray.  The functions g_byte_array* operate on arrays of bytes.
1998         Internally, a GArray is used.
1999
2000         * testglib.c: tests for g_ptr_array, g_byte_array, and g_relation...
2001
2002 1998-06-11  Federico Mena Quintero  <federico@nuclecu.unam.mx>
2003
2004         * gdataset.c: #include <string.h>
2005
2006 Thu Jun 11 04:15:31 1998  Tim Janik  <timj@gtk.org>
2007
2008         * glib.h:
2009         * gdataset.c: new function g_dataset_retrive_key. adjusted prealloc
2010         sizes, to take up less space on initial allocation.
2011
2012 1998-06-10  Raja R Harinath  <harinath@cs.umn.edu>
2013
2014         * acinclude.m4: New file.  Contains `libtool.m4' from libtool-1.2,
2015         the version from which glib's libtool forked.  Needed for people
2016         who use post-1.2 alphas of libtool.
2017         * configure.in (enable_mem_check, enable_mem_profile): Replace
2018         `echo -n' with AC_MSG_CHECKING.
2019         (fd_set): Explain test for `fd_set' better.
2020
2021 Wed Jun 10 19:29:51 1998  Owen Taylor  <otaylor@gtk.org>
2022
2023         * Makefile.am glib.m4 configure.in:
2024
2025         Moved out from GTK+; added AM_PATH_GLIB macro.
2026
2027 Wed Jun 10 12:56:07 1998  Owen Taylor  <otaylor@gtk.org>
2028
2029         * glib.h: renamed g_const_pointer => gconstpointer
2030
2031 Tue Jun  9 17:47:33 1998  Owen Taylor  <otaylor@gtk.org>
2032
2033         * glib.h: Remove #error - HP/UX.
2034
2035 Sat May 23 19:00:01 1998  Owen Taylor  <otaylor@gtk.org>
2036   [ Combination of:
2037      gtk-rrh-980412-0.patch (Raja R Harinath <harinath@cs.umn.edu>)
2038      gtk-jbuhler-980516-0 (Jeremy Buhler <jbuhler@cs.washington.edu>) ]
2039
2040         * glib.h ghash.c gstring.c gdataset.c gutils.c:
2041         - Added new typedef g_const_pointer; expunged all incorrect
2042           uses of 'const gpointer'.
2043         - Fixed up warnings that that created,
2044         - Changed GHashFunc and GCompareFunc to take g_const_pointer
2045           arguments. (Necessary, but will cause warnings in existing
2046           code until fixed)
2047         - Added other new const in harmless positions.
2048
2049 Mon Jun  8 01:06:47 1998  Tim Janik  <timj@gtk.org>
2050
2051         * glib.h: added enum-helper macros for code generation.
2052         added G_BREAKPOINT().
2053
2054 Sat Jun  6 14:09:22 PDT 1998 Manish Singh <yosh@gimp.org>
2055
2056         * gmem.c: commented out MEM_PROFILE and MEM_CHECK, causing weird
2057         problems
2058
2059 Wed Jun  3 06:19:42 1998  Tim Janik  <timj@gtk.org>
2060
2061         * glib.h (g_chunk_new0): convenience macro, for allocating small chunks
2062         like g_chunk_new() with additional 0 initialization.
2063
2064 Mon Jun  1 04:43:27 1998  Tim Janik  <timj@gtk.org>
2065
2066         * ghash.c (g_hash_table_insert): wrote a comment describing why
2067         a hash node's key should not also get replaced when overriding
2068         previous entries.
2069
2070 Tue May 26 18:30:06 1998  Tim Janik  <timj@gtk.org>
2071
2072         * glib.h (g_string_sized_new): new function to controll the preallocated
2073         size of a GString.
2074
2075         * glib.h (g_strreversed): new function to reverse a string.
2076
2077 Mon May 18 22:14:39 1998  Owen Taylor  <otaylor@gtk.org>
2078 (Yasuhiro SHIRASAKI <joke@awa.tohoku.ac.jp> : gtk-joke-980517-0.patch)
2079
2080         * gutils.c: Restored a missing prototype for g_vsprintf.
2081
2082 Wed May 20 05:02:26 1998  Tim Janik  <timj@gtk.org>
2083
2084         * glib.h: conditionally define NULL, FALSE and TRUE.
2085         (g_mem_chunk_create): new convenience macro as a short hand for
2086         g_mem_chunk_new().
2087         (g_chunk_free): new convenience macro to be consistent with g_chunk_new.
2088
2089 Tue, 19 May 1998 09:00:02 +0200  Paolo Molaro <lupus@debian.org>
2090
2091         * gcompletion.c: generic functions for com<TAB>pletion...
2092
2093 Sun May 17 10:48:27 1998  Tim Janik  <timj@gtk.org>
2094
2095         * gscanner.c (g_scanner_unexp_token): provide usefull default
2096         specifications for identifier_spec and symbol_spec.
2097
2098         * glib.h: new functions g_slist_nth_data and g_list_nth_data to return
2099         the data of the nth element in the list.
2100
2101 Fri May 15 22:31:49 1998  Tim Janik  <timj@gtk.org>
2102
2103         * gscanner.c (g_scanner_unexp_token): removed spurious va_end(args)
2104         that for some reason didn't produce a compiler warning on my machine
2105         (is va_end defined to nothing for i386?).
2106
2107 Fri May 15 12:32:08 1998  rodo  <doulik@karlin.mff.cuni.cz>
2108
2109         * gscanner.c: replaced some snprintf with g_snprintf
2110
2111 Fri May 15 00:56:59 1998  Tim Janik  <timj@gtk.org>
2112
2113         * glib.h: further support for gcc function attributes: G_GNUC_FORMAT,
2114         G_GNUC_NORETURN and G_GNUC_CONST.
2115
2116         * gscanner.c (g_scanner_stat_mode): changed stat() to lstat().
2117         (g_scanner_msg_handler): "\n" at end of line!
2118         (g_scanner_foreach_symbol): new function to iterate over the symbol
2119         table (GScanner does value-wrapping).
2120
2121 Thu May 14 04:14:12 1998  Tim Janik  <timj@gtk.org>
2122
2123         * glib.h: typedef gint gboolean;
2124         this is needed to provide portability with big-endian platforms (e.g.
2125         try sizeof(bool) for c++ on big-endians - it's 4).
2126         this is also needed to maintain some_union.d_gint==some_union.d_gboolean.
2127         plus, gint to gboolean casts and vice versa need to be possible without
2128         loss.
2129
2130 Tue May 12 19:22:58 1998  Owen Taylor  <otaylor@gtk.org>
2131
2132         * glib/glib.h: Added macros G[U]INT_TO_POINTER() and
2133         GPOINTER_TO_[U]INT for storing small integers integers
2134         inside pointers.
2135
2136         * glib/testglib.c: Print sizeof() results
2137         as g_print("%ld", (glong)sizeof(foo)), to deal with
2138         size_t being long on Alpha's.
2139
2140 Tue May 12 16:54:15 1998  Owen Taylor  <otaylor@gtk.org>
2141         (James A <jamesa@demon.net> : gtk-jamesa-980511-4.patch)
2142
2143         * glib.h gstring.c gmessages.c: Added some missing
2144         const to arguments.
2145
2146         * gutils.c (g_strsignal.c): Added missing return statements.
2147
2148 Mon May 11 21:11:54 1998  Owen Taylor  <otaylor@gtk.org>
2149
2150         * gutils.c gmessages.c: Moved g_error, g_warning, g_message and
2151         g_print from gutils.c to new file gmessages.c, to avoid having to
2152         include <unistd.h> in gutils.c which was causing problems for the
2153         g_strsignal implementation on FreeBSD boxes.
2154
2155 Mon May 11 09:53:43 1998  Tim Janik  <timj@gtk.org>
2156
2157         * configure.in: preserve automake CFLAGS.
2158
2159         * Makefile.am: fully rename the created library to libglib-1.1.la.
2160         this means we need to change certain portions of the Makefile.am on
2161         major/minor version bumps.
2162
2163         * ltmain.sh: the -release option is not required anymore.
2164
2165         * glib.h: provide G_GNUC_FUNCTION and G_GNUC_PRETTY_FUNCTION to
2166         avoid conditionals. unconditionally define NULL, TRUE, FALSE, MAX,
2167         MIN, ABS and CLAMP, these macros might be screwed from other headers.
2168
2169 Mon May 11 01:44:10 1998  Tim Janik  <timj@gtk.org>
2170
2171         * gdataset.c: new file, gdatasets implement the object data
2172         mechanism from GtkObject. a generic data pointer is associated with
2173         a certain location and a key id.
2174
2175 Sat May  9 20:08:12 1998  Owen Taylor  <otaylor@gtk.org>
2176
2177         * glib/gmem.c: Experimentally restore GMemChunk
2178         to its primeval state - where mem areas are
2179         freed incrementally instead of searching the tree
2180         every time a mem area is completely empty. Also,
2181         always keep one mem chunk around. (Reduced calls
2182         to malloc() a lot, but doesn't really improve
2183         performance significiantly)
2184
2185 Thu May  7 08:17:28 1998  Tim Janik  <timj@gtk.org>
2186
2187         * glib.h (G_GNUC_PRINTF):
2188         (G_GNUC_SCANF): macros to facilitate the printf/scanf format argument
2189         checking of gcc.
2190
2191         * gstring.c: const corrections, string!=NULL checks at function entry.
2192         (g_string_down): new function for tolower(3) conversion.
2193         (g_string_up): new function for toupper(3) conversion.
2194
2195         * gutils.c: const corrections.
2196         (g_strdown): g_string_down() counterpart.
2197         (g_strup): g_string_up() counterpart.
2198
2199         * gscanner.c (g_scanner_unexp_token):
2200         (g_scanner_error):
2201         (g_scanner_warn): new functions to let a scanner put out warnings
2202         or errors, especially to react on unexpected tokens.
2203
2204         * gslist.c:
2205         (g_slist_index): find out about about the position of a
2206         certain data pointer.
2207         (g_slist_position): find out about about the position of a
2208         certain node.
2209
2210         * glist.c:
2211         (g_list_index): find out about about the position of a
2212         certain data pointer.
2213
2214 Thu May  7 05:14:19 1998  Tim Janik  <timj@gtk.org>
2215
2216         * ltmain.sh: added a new commandline flag -postfix similar to -release,
2217         but will immediately change the library name.
2218
2219         * Makefile.am: specify -postfix and -version-info
2220
2221         * configure.in: version bump to 1.1.0. added GLIB_INTERFACE_AGE and
2222         GLIB_BINARY_AGE. calculate LT_* variables for libtool.
2223
2224 Fri May  1 16:36:08 1998  Owen Taylor  <otaylor@gtk.org>
2225
2226         * gutils.c: (g_strcasecmp). Check for isupper before
2227         taking tolower, and account for macroized tolower.
2228
2229         * gutils.c (g_error): Check for recursion.
2230
2231 1998-04-27  Elliot Lee  <sopwith@cuc.ml.org>
2232
2233         * glist.c (g_list_position): New function to find the position of
2234         a link in a list - should be the inverse of g_list_nth(), but
2235         haven't tested it so poof.
2236
2237 Thu Apr 30 21:41:30 1998  Owen Taylor  <otaylor@gtk.org>
2238
2239         * gstring.c : Check arguments more carefully,
2240         (gtk-draco-980423-1.patch; ramsey@rhrk.uni-kl.de)
2241
2242 Tue Apr  7 19:36:48 1998  Owen Taylor  <owt1@cornell.edu>
2243
2244         * gutils.c (g_direct_compare): Removed, because that's what
2245         a NULL comparison function means. And it wasn't 64 bit safe.
2246
2247 Mon Apr  6 18:43:25 1998  Tim Janik  <timj@gtk.org>
2248
2249         * gscanner.c (g_scanner_get_token_ll): fixed a bug that caused floats
2250         of the format ".xxx" to be parsed as "xxx".
2251
2252 Fri Apr  3 20:36:35 1998  Owen Taylor  <owt1@cornell.edu>
2253
2254         * gutils.c (g_parse_debug_string): Make debug string
2255         parsine case-insensitive
2256
2257 Fri Apr  3 17:03:18 PST 1998 Manish Singh <yosh@gimp.org>
2258
2259         * gstring.c: corrected possible overrun when inserting into
2260         GStrings (thanks Elrond)
2261
2262 Fri Apr  3 18:05:45 1998  Owen Taylor  <owt1@cornell.edu>
2263
2264         * testglib.c: Removed literal german from strings
2265         to appease SGI compiler.
2266
2267 Thu Mar 26 20:47:21 1998  Owen Taylor  <owt1@cornell.edu>
2268
2269         * configure.in glib glibconfig.h.in: Add test for atexit/on_exit -
2270         use on_exit if atexit not found in definition of ATEXIT.
2271
2272 Wed Mar 25 15:23:37 1998  Owen Taylor  <owt1@cornell.edu>
2273
2274         * Makefile.am: Switched glibconfig.h rule from HEADERS
2275         to DATA, so that it is not added to DISTFILES
2276
2277 Wed Mar 18 22:27:08 PST 1998 Manish Singh <yosh@gimp.org>
2278
2279         * garray.c: g_rarray_truncate length done correctly
2280
2281 Sun Mar 15 07:13:34 1998  Tim Janik  <timj@gimp.org>
2282
2283         * gutils.c: changed *_handler variables to be named glib_*_handler,
2284         so you can easily access them from gdb.
2285
2286 Sat Mar 14 17:47:43 1998  Owen Taylor  <owt1@cornell.edu>
2287
2288         * Makefile.am: Don't refer to current directory as $(top_builddir)
2289         to avoid confusing non-gmakes
2290
2291 Sat Mar 14 01:37:35 1998  Owen Taylor  <owt1@cornell.edu>
2292
2293         * Makefile.am (configincludedir): Moved glibconfig.h to
2294           $(pkglibdir)/include
2295
2296 Tue Mar 10 02:03:12 1998  Tim Janik  <timj@gimp.org>
2297
2298         * gscanner.c (g_scanner_destroy_symbol_table_entry): new function to
2299         free symbol table entries upon destruction
2300         (gtk-gronlund-980309-0.patch.gz).
2301
2302 Mon Mar  9 15:02:21 1998  Tim Janik  <timj@gimp.org>
2303
2304         * glib.h: changed *_length functions to return guint.
2305         changed *_nth functions to take guint as argument.
2306
2307         * glist.c: adapted g_list_length and g_list_length.
2308
2309         * gslist.c: adapted g_slist_length and g_slist_length.
2310
2311 Mon Mar  2 17:51:18 1998  Owen Taylor  <owt1@cornell.edu>
2312
2313         * glib.h gutils.c : changed g_strcasecmp
2314           to take gchar* not guchar*
2315
2316         * testglib.c: Remove trailing ; after functions
2317
2318 Sun Mar  1 19:04:40 1998  Owen Taylor  <owt1@cornell.edu>
2319
2320         * glib.h gstring.c: Added g_string_insert[_c]()
2321           and g_string_erase().
2322
2323           From: Stefan Wille  <1wille@vsys1.informatik.uni-hamburg.de>
2324
2325 Mon Feb 16 23:05:06 1998  Owen Taylor  <owt1@cornell.edu>
2326
2327         * glist.c (g_list_insert_sorted): Changed function
2328           so elements are always inserted, even if they compare
2329           equal with another.
2330
2331 Thu Feb 12 22:48:11 1998  Owen Taylor  <owt1@cornell.edu>
2332
2333         * gstring.c glib.h: removed deprecated g_string_equal
2334           and g_string_hash.
2335
2336 Tue Feb 10 13:04:36 1998  Owen Taylor  <owt1@cornell.edu>
2337
2338         * configure.in: Add check to see if the C library's
2339           iswalnum can actually be used. (Not true for
2340           Linux libc-5.4.38)
2341
2342 Sat Feb  7 11:48:09 1998  Owen Taylor  <owt1@cornell.edu>
2343
2344         * gstring.c gutils.c: added some additional consts in
2345           appropriate places to remove a warning
2346
2347 Sat Feb  7 11:15:54 1998  Owen Taylor  <owt1@cornell.edu>
2348
2349         * gutils.c: include <ctype.h> for tolower()
2350
2351 Fri Jan 30 23:57:17 PST 1998 Manish Singh <yosh@gimp.org>
2352
2353         * added and autoconfigured in a new utility function
2354         g_strcasecmp
2355
2356 Wed Jan 28 23:53:27 PST 1998 Manish Singh <yosh@gimp.org>
2357
2358         * glist.c
2359         * gslist.c
2360         * testglib.c: the sort functions compared backwards. Fixed
2361         * glib.h: list iterator macros now check for NULL pointers
2362
2363 Tue Jan 27 09:46:57 PST 1998 Manish Singh <yosh@gimp.org>
2364
2365         * gstring.c: g_string_prepend and g_string_prepend_c had
2366         interchanged src and dest parameters for g_memmove. Fixed.
2367
2368 Tue Jan 27 01:38:52 PST 1998 Manish Singh <yosh@gimp.org>
2369
2370         * gslist.c: fixed a really, really lame error. g_slist_insert
2371         didn't hook the data in! Reworked the routine to reflect the
2372         functionality of g_list
2373
2374 Wed Jan 21 01:13:25 1998  Tim Janik  <timj@psynet.net>
2375
2376         * Applied patch from (Raja R Harinath <harinath@cs.umn.edu>)
2377           to add function g_snprintf.
2378         * configure.in (AC_CHECK_FUNCS): Check for vsnprintf.
2379         * glib.h: Add prototype for g_snprintf.
2380         * glibconfig.h.in: Add HAVE_VSNPRINTF.
2381         * gutils.c (g_snprintf): new function.
2382
2383 Sat Jan 17 23:52:40 1998  Owen Taylor  <owt1@cornell.edu>
2384
2385         * gstring.{c,h} gscanner.c:
2386            renamed g_string_equal => g_str_equal
2387            renamed g_string_hash => g_str_hash
2388           And const corrected. Old functions left in for now.
2389
2390 Fri Jan  9 20:03:46 1998  Tim Janik  <timj@psynet.net>
2391
2392         * gutils.c (g_strerror): changed message for EAGAIN from
2393         "no more processes" to "try again" since EAGAIN is used with
2394         functions else than fork().
2395
2396         * gscanner.c (g_scanner_get_token_ll): use strtol() instead of
2397         strtoul() to avoid conflicts with solaris.
2398
2399         * merged the glib portions from Jan 2 to Jan 7 out of gtk+/ChangeLog
2400         into this file.
2401
2402 Wed Jan  7 02:14:30 PST 1998 Manish Singh <yosh@gimp.org>
2403
2404         * glib.h:
2405         * glist.c:
2406         * gslist.c:
2407         * testglib.c: Added g_[s]list_insert_sorted function
2408         and appropriate tests in testglib
2409
2410 Sat Jan  3 20:23:25 1998  Owen Taylor  <owt1@cornell.edu>
2411
2412         * glib.h: Changed guint32 -> guint for bitfields.
2413         (Bitfields must be int or unsigned int?)
2414
2415 Fri Jan  2 23:52 PST 1998 Jay Painter <jpaint@serv.net>
2416
2417         * glib_pre1.h:
2418         * glib_pre2.h:
2419         * glib.h: reverted glibconfig.h and glib.h files back to the
2420         way they were before my ugly hack.
2421
2422         * gscanner.c: removed inlines from clist and gscanner
2423
2424 Tue Dec 23 02:49:51 1997  Tim Janik  <timj@psynet.net>
2425
2426         * gscanner.c: new file for GScanner: Flexible lexical scanner for
2427         general purpose.
2428         * glib_pre2.h: added GScanner includes. added g_strconcat and g_strtod.
2429         gutils.c (g_strconcat): new function for string concatenation of NULL
2430         terminated parameter list.
2431         (g_strtod): new function to perform best string to double conversion
2432         with or without consideration of the current locale.
2433
2434 Mon Dec 15 19:33:58 1997  Tim Janik  <timj@psynet.net>
2435
2436         * glist.c: minor optimizations:
2437         (g_list_append): `if' optimized for common code path, commented out
2438         unneccessary `assert', saved one variable assignment.
2439         (g_list_prepend): saved two (conditioned) variable assignment.
2440         (g_list_insert): saved one  (conditioned) variable assignment,
2441         saved one variable assignment.
2442         (g_list_remove): `if' optimized for common code path, saved two
2443         variable assignments by using `g_list_free_1' (which is even
2444         faster) instead of `g_list_free'.
2445         (g_list_reverse): saved allocation of one variable, saved one
2446         variable assignment.
2447
2448 Wed Dec 10 23:27:20 1997  Tim Janik  <timj@psynet.net>
2449
2450         * glib_pre1.h:
2451         * glib_pre2.h:
2452         * glib.h: this file now gets concatenated by makeglib_h from
2453         glib_pre1.h and glib_pre2.h to merge in glibconfig.h wich got
2454         created by configure (done by Jay Painter).
2455
2456         * glib_pre2.h: the g_assert*() and g_return_*_fail() macros
2457         are wrapped by G_STMT_START and G_STMT_END now, to avoid conflicts
2458         when used within if (...) g_macro(); else ... conditionals.
2459
2460 Tue Dec 17 13:14:07 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
2461
2462         * glib.h: Changed 'g_return_if_fail' and 'g_return_val_if_fail' to
2463         not call 'g_string' but to simply stringify the
2464         expression. Calling 'g_string' causes the expression to be
2465         expanded which is undesired.
2466
2467 Sun Dec  1 01:30:48 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
2468
2469         * Started ChangeLog