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