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