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