feature an extra MODULES parameter, so glib-config can be invoked with the
[platform/upstream/glib.git] / ChangeLog.pre-2-8
1 Mon Aug 17 01:46:14 1998  Tim Janik  <timj@gtk.org>
2
3         * glib.m4: feature an extra MODULES parameter, so glib-config can
4         be invoked with the "gmodule" argument.
5
6         * glib.h: changed the log level to G_LOG_LEVEL_CRITICAL for all
7         g_return*_if_fail statements, and made them issue a message
8         like "assertion `%s' failed".
9
10         * gmessages.c (g_logv): ugh, don't pass log_domain as NULL to
11         g_log_find_domain.
12
13 Sun Aug 16 20:28:27 1998  Tim Janik  <timj@gtk.org>
14
15         * version bump to 1.1.3, binary age 0, interface age 0.
16
17         * glib.h: be nice to platforms that don't have gint64 and don't
18         issue #warning on every compilation. since glib doesn't require
19         gint64 itself, packages that need gint64 should test for this
20         themselves.
21
22         * glib.h: 
23         * gutils.c: added a new function g_vsnprintf().
24
25 Sun Aug 16 Elliot Lee
26
27         glib.h: #error out if we don't recognize the SIZEOF_VOID_P
28                 #warning if no gint64
29
30 Fri Aug 14 16:41:53 1998  Tim Janik  <timj@gtk.org>
31
32         * glib.h: added static inline functions for bit mask tests:
33         g_bit_nth_lsf, g_bit_nth_msf and g_bit_storage.
34
35 Fri Aug 13 14:23:37 1998  Tim Janik  <timj@gtk.org>
36
37         * glib.h:
38         * gmessages.c:
39         revised the message handling system, which is now based on a new
40         mechanism g_log*. most of the assertment macros got adapted to
41         feature the new g_log() call with an additional specification of
42         the log level in a preprocessor macro G_LOG_DOMAIN. if G_LOG_DOMAIN
43         is undefined upon the includion of glib.h, it'll be defined with a
44         value of (NULL) and thus preserves the original bahaviour for
45         warning and error messages. the message handler setting functions
46         for g_warning, g_error and g_message are only provided for backwards
47         compatibility and might get removed somewhen.
48
49         * Makefile.am: feature the G_LOG_DOMAIN macro to set the log domain
50         to "GLib" upon compilation. we currently have to add this definition
51         to the DEFS variable.
52         * testglib.c: we need an ugly #undef G_LOG_DOMAIN at the start
53         of this file currently, since automake doesn't support per target
54         _CFLAGS yet.
55
56         * glib.h: changed some gints to gbooleans, made a few const corrections,
57         removed some superfluous G_STMT_START{}G_STMT_END wrappers, added some
58         in other required places.
59
60         * gnode.c:
61         (g_node_prepend): 
62         (g_node_insert_before): 
63         (g_node_insert): 
64         (g_node_append_data):
65         (g_node_prepend_data):
66         (g_node_insert_data_before):
67         (g_node_insert_data): 
68         (g_node_append):
69         return (node), so these macros/functions can be usefully chained with
70         g_node_new().
71
72 Mon Aug 10 17:56:11 PDT 1998 Manish Singh <yosh@gimp.org>
73
74         * glib.h: it's GTime now, and it's back!
75
76 Mon Aug 10 02:17:19 1998  Tim Janik  <timj@gtk.org>
77
78         * Makefile.am: minor hack to cause SUBDIRS (gmodule) to be build
79         last. we do this by making all-recursive-am depend on all-am.
80
81 Sun Aug  9 15:56:11 1998  Tim Janik  <timj@gtk.org>
82
83         * configure.in: added GModule checks. generate files in gmodule/.
84         * glib-config.in: support library specifications `glib' and `gmodule'.
85         * Makefile.am: feature the gmodule/ subdir.
86
87 Wed Aug  5 10:04:29 PDT 1998 Shawn T. Amundson <amundson@gtk.org>
88
89         * Released GLib 1.1.2
90
91 Wed Aug 05 01:15:36 1998  George Lebl  <jirka@5z.com>
92
93         * testglib.c: fix 64-bitness in g_prints, sizeof doesn't
94           seem to return int so I cast it for printing, probably
95           just cosmetic
96
97 Tue Aug  4 19:54:06 PDT 1998 Shawn T. Amundson <amundson@gkt.org>
98
99         * Released GLib 1.1.1
100
101 Tue Aug  4 15:17:54 1998  Tim Janik  <timj@gtk.org>
102
103         * configure.in: version bump to 1.1.1, binary age 1, interface age 0.
104         * NEWS: updates.
105         * README: updates.
106         * INSTALL: updates and fixes.
107         * COPYING: include the GNU LGPL, rather than shipping an empty file.
108         * AUTHORS: listed original authors here, and added people who made
109         significant improvements to glib.
110
111         * glib.h:
112         * gutils.c: implement g_get_current_dir() which returns a newly
113         allocated string, instead of a g_getcwd() variant that operates
114         on a static buffer.
115         export glib_interface_age and glib_binary_age.
116         as a convenience, macro definitions have been added for
117         g_node_insert_data, g_node_insert_data_before, g_node_append_data and
118         g_node_prepend_data.
119
120         * testglib.c: minor cleanups, print current dir.
121
122 Mon Aug  3 16:02:26 1998  Tim Janik  <timj@gtk.org>
123
124         * glib.h: 
125         * gnode.c: change order of gpointer data; field in struct _GNode to
126         be partly binary compatible with GList and GSList.
127
128 1998-08-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
129
130         * garray.c (g_ptr_array_remove_index): bugfix: index check for
131         array has been wrong.
132
133 Fri Jul 31 22:17:05 1998  Tim Janik  <timj@gtk.org>
134
135         * testglib.c (g_node_test): added a GNode test.
136
137 Fri Jul 31 09:08:16 1998  Tim Janik  <timj@gtk.org>
138
139         * Makefile.am: compile gnode.c.
140
141         * glib.h: 
142         * gnode.c: added implementation of n-way trees.
143
144         * gtree.c (g_tree_traverse): added a warning to the switch() statement
145         which says that G_LEVEL_ORDER is not implemented.
146
147 Mon Jul 27 00:17:30 CDT 1998 Shawn T. Amundson <amundson@gtk.org>
148
149         * Released GLib 1.1.0
150
151 Mon Jul 27 01:02:27 1998  Tim Janik  <timj@gtk.org>
152
153         * glib.h: #if 0'ed out the GTime definition, until it is definitively
154         needed. #if 0'ed out the g_getcwd() version, because it is the wrong
155         implementation.
156
157 Sat Jul 25 16:09:00 1998  Mark Crichton <crichton@expert.cc.purdue.edu>
158         
159         * glib.h: gtime changed to g_time.  gtime is used in 
160         /usr/include/time.h in NetBSD, causing multiple headaches.
161         If this isn't the right way of fixing it.... ;)
162
163 Thu Jul 23 00:29:14 1998  Tim Janik  <timj@gtk.org>
164
165         * glib.h: 
166         * gscanner.c: new functions to make a scanner scope sensitive wrt
167         symbol lookups.
168         g_scanner_scope_foreach_symbol, g_scanner_scope_lookup_symbol,
169         g_scanner_scope_remove_symbol, g_scanner_scope_add_symbol and
170         g_scanner_set_scope.
171         g_scanner_add_symbol, g_scanner_remove_symbol and
172         g_scanner_foreach_symbol are now aliases for scope 0.
173
174 Mon Jul 20 23:05:34 1998  George Lebl  <jirka@5z.com>
175
176         * glib.h: typo fixed for alphas for gint64
177
178 Tue Jul 14 09:05:18 1998  Tim Janik  <timj@gtk.org>
179
180         * glib.h:
181         * gutils.c: new fuction g_dirname() which returns a newlly
182         allocated string.
183
184 Fri Jul 10 06:33:43 1998  Tim Janik  <timj@gtk.org>
185
186         * glib.h: 
187         * gutils.h: added a bunch of utility/wrapper functions:
188         g_basename(), g_getcwd(), g_get_user_name(), g_get_real_name(),
189         g_get_home_dir(), g_get_tmp_dir(), g_get_prgname() and g_set_prgname().
190
191         * gutils.c: removed all g_str* functions.
192         * gstrfuncs.c: moved the bunch g_str* functions from gutils.c in this
193         place. this file shall never include <unistd.h> to avoid clashes for
194         some of the g_str* functions on some OSes.
195
196 Fri Jul 10 00:29:03 EEST 1998 Lauri Alanko <nether@gimp.org>
197
198         * glib.h:
199         * ghash.c: Renamed g_hash_table_lookup_full to
200         g_hash_table_lookup_extended to conform with naming conventions.
201
202 Tue Jul  7 03:18:58 EEST 1998 Lauri Alanko <nether@gimp.org>
203
204         * glib.h:
205         * ghash.c: Generic cleanup, added a function:
206         (g_hash_table_lookup_full): Return whether the lookup succeeded,
207         and also retrieve the key and value. This allows one to
208         distinguish between failed lookup and finding a NULL, and also
209         allows one to free a key in the hash.
210
211 Mon Jul  6 10:12:05 PDT 1998 Manish Singh <yosh@gimp.org>
212
213         * ltconfig: fix for properly detecting shared lib support on
214         SunPro cc (taken from libtool 1.2.a)
215
216 Sat Jul  4 13:38:52 PDT 1998 Manish Singh <yosh@gimp.org>
217
218         * glib.h: added g_array_length
219
220 Tue Jun 30 11:58:25 1998  Tim Janik  <timj@gtk.org>
221
222         * gscanner.c (g_scanner_unexp_token): take symbol_2_token into
223         account. react on valid/invalid string pairs.
224
225 Sat Jun 27 21:55:46 PDT 1998 Manish Singh <yosh@gimp.org>
226
227         * glib.m4: ftp.glib.org -> ftp.gtk.org, since glib.org isn't
228         ours. ;)
229
230 Fri Jun 19 03:11:02 1998  Tim Janik  <timj@gtk.org>
231
232         * gdataset.c: removed g_dataset_try_key, g_dataset_force_id and
233         g_dataset_retrive_key in favour of GQuarks.
234         a GQuark is an numeric id wich is associated with a certain string.
235         (g_quark_try_string): try to get the quark associated with this string,
236         if the lookup failed return 0.
237         (g_quark_from_string): get the associated quark for a string, if there
238         isn't currently a GQuark associated with this string, then allocate a
239         new quark and return that.
240         (g_quark_from_static_string): like the above function, but the string
241         isn't strdup()ed to save memory.
242         (g_quark_to_string): get the string that is associated with a certain
243         GQuark.
244
245         * gdataset.c (g_dataset_id_set_data_full): invoke the destroy function
246         _after_ the new data has been setup.
247
248 Thu Jun 18 02:35:21 1998  Owen Taylor  <otaylor@gtk.org>
249
250         * glib.h: Changed messages for g_return_[val]_if_fail to
251         be somewhat more clear: assertion "blah" failed.
252
253 1998-06-18  Federico Mena Quintero  <federico@nuclecu.unam.mx>
254
255         * testglib.c (main): Use GINT_TO_POINTER casts to remove compiler
256         warnings.
257
258         * grel.c: #include <string.h>
259
260 Fri Jun 12 15:39:06 1998  Tim Janik  <timj@gtk.org>
261
262         * glib.h (GScanner): cleanups of the structure fields (binary
263         incompatible).
264
265 Fri Jun 12 00:39:28 1998  Josh MacDonald  <jmacd@icw.EECS.Berkeley.EDU>
266
267         * glib.h: add new hash and equal functions g_int_*.  complement
268         g_direct_hash with g_direct_equal.
269
270         * grel.c: new file, GRelations implement tuples of N-N mappings.
271         A comment in glib.h briefly describes the interface.
272
273         * ghash.c: new function, g_hash_table_size
274
275         * glib.h: new typedefs, gsize, gssize, gtime.
276
277         * garray.c: new functions implementing a simplified GArray.  This
278         GPtrArray is an array of gpointers and has functions to add and
279         remove elements, much like java.lang.Vector.
280
281         * garray.c: new functions for the single-byte special case of
282         GArray.  The functions g_byte_array* operate on arrays of bytes.
283         Internally, a GArray is used.
284
285         * testglib.c: tests for g_ptr_array, g_byte_array, and g_relation...
286
287 1998-06-11  Federico Mena Quintero  <federico@nuclecu.unam.mx>
288
289         * gdataset.c: #include <string.h>
290
291 Thu Jun 11 04:15:31 1998  Tim Janik  <timj@gtk.org>
292
293         * glib.h:
294         * gdataset.c: new function g_dataset_retrive_key. adjusted prealloc
295         sizes, to take up less space on initial allocation.
296
297 1998-06-10  Raja R Harinath  <harinath@cs.umn.edu>
298
299         * acinclude.m4: New file.  Contains `libtool.m4' from libtool-1.2,
300         the version from which glib's libtool forked.  Needed for people
301         who use post-1.2 alphas of libtool.
302         * configure.in (enable_mem_check, enable_mem_profile): Replace
303         `echo -n' with AC_MSG_CHECKING.
304         (fd_set): Explain test for `fd_set' better.
305
306 Wed Jun 10 19:29:51 1998  Owen Taylor  <otaylor@gtk.org>
307
308         * Makefile.am glib.m4 configure.in:
309         
310         Moved out from GTK+; added AM_PATH_GLIB macro.
311
312 Wed Jun 10 12:56:07 1998  Owen Taylor  <otaylor@gtk.org>
313
314         * glib.h: renamed g_const_pointer => gconstpointer
315
316 Tue Jun  9 17:47:33 1998  Owen Taylor  <otaylor@gtk.org>
317
318         * glib.h: Remove #error - HP/UX.
319
320 Sat May 23 19:00:01 1998  Owen Taylor  <otaylor@gtk.org>
321   [ Combination of:
322      gtk-rrh-980412-0.patch (Raja R Harinath <harinath@cs.umn.edu>)
323      gtk-jbuhler-980516-0 (Jeremy Buhler <jbuhler@cs.washington.edu>) ]
324         
325         * glib.h ghash.c gstring.c gdataset.c gutils.c:
326         - Added new typedef g_const_pointer; expunged all incorrect
327           uses of 'const gpointer'.
328         - Fixed up warnings that that created,
329         - Changed GHashFunc and GCompareFunc to take g_const_pointer
330           arguments. (Necessary, but will cause warnings in existing
331           code until fixed)
332         - Added other new const in harmless positions.
333
334 Mon Jun  8 01:06:47 1998  Tim Janik  <timj@gtk.org>
335
336         * glib.h: added enum-helper macros for code generation.
337         added G_BREAKPOINT().
338
339 Sat Jun  6 14:09:22 PDT 1998 Manish Singh <yosh@gimp.org>
340
341         * gmem.c: commented out MEM_PROFILE and MEM_CHECK, causing weird
342         problems
343
344 Wed Jun  3 06:19:42 1998  Tim Janik  <timj@gtk.org>
345
346         * glib.h (g_chunk_new0): convenience macro, for allocating small chunks 
347         like g_chunk_new() with additional 0 initialization.
348
349 Mon Jun  1 04:43:27 1998  Tim Janik  <timj@gtk.org>
350
351         * ghash.c (g_hash_table_insert): wrote a comment describing why
352         a hash node's key should not also get replaced when overriding
353         previous entries.
354
355 Tue May 26 18:30:06 1998  Tim Janik  <timj@gtk.org>
356
357         * glib.h (g_string_sized_new): new function to controll the preallocated
358         size of a GString.
359
360         * glib.h (g_strreversed): new function to reverse a string.
361
362 Mon May 18 22:14:39 1998  Owen Taylor  <otaylor@gtk.org>
363 (Yasuhiro SHIRASAKI <joke@awa.tohoku.ac.jp> : gtk-joke-980517-0.patch)
364         
365         * gutils.c: Restored a missing prototype for g_vsprintf.
366
367 Wed May 20 05:02:26 1998  Tim Janik  <timj@gtk.org>
368
369         * glib.h: conditionally define NULL, FALSE and TRUE.
370         (g_mem_chunk_create): new convenience macro as a short hand for
371         g_mem_chunk_new().
372         (g_chunk_free): new convenience macro to be consistent with g_chunk_new.
373
374 Tue, 19 May 1998 09:00:02 +0200  Â§Paolo Molaro <lupus@debian.org>
375
376         * gcompletion.c: generic functions for com<TAB>pletion...
377
378 Sun May 17 10:48:27 1998  Tim Janik  <timj@gtk.org>
379
380         * gscanner.c (g_scanner_unexp_token): provide usefull default
381         specifications for identifier_spec and symbol_spec.
382
383         * glib.h: new functions g_slist_nth_data and g_list_nth_data to return
384         the data of the nth element in the list.
385
386 Fri May 15 22:31:49 1998  Tim Janik  <timj@gtk.org>
387
388         * gscanner.c (g_scanner_unexp_token): removed spurious va_end(args)
389         that for some reason didn't produce a compiler wrning on my machine
390         (is va_end undefined for i386?).
391
392 Fri May 15 12:32:08 1998  rodo  <doulik@karlin.mff.cuni.cz>
393
394         * gscanner.c: replaced some snprintf with g_snprintf
395
396 Fri May 15 00:56:59 1998  Tim Janik  <timj@gtk.org>
397
398         * glib.h: further support for gcc function attributes: G_GNUC_FORMAT,
399         G_GNUC_NORETURN and G_GNUC_CONST.
400
401         * gscanner.c (g_scanner_stat_mode): changed stat() to lstat().
402         (g_scanner_msg_handler): "\n" at end of line!
403         (g_scanner_foreach_symbol): new function to iterate over the symbol
404         table (GScanner does value-wrapping).
405
406 Thu May 14 04:14:12 1998  Tim Janik  <timj@gtk.org>
407
408         * glib.h: typedef gint gboolean;
409         this is needed to provide portability with big-endian platforms (e.g.
410         try sizeof(bool) for c++ on big-endians - it's 4).
411         this is also needed to maintain some_union.d_gint==some_union.d_gboolean.
412         plus, gint to gboolean casts and vice versa need to be possible without
413         loss.
414
415 Tue May 12 19:22:58 1998  Owen Taylor  <otaylor@gtk.org>
416
417         * glib/glib.h: Added macros G[U]INT_TO_POINTER() and
418         GPOINTER_TO_[U]INT for storing small integers integers
419         inside pointers. 
420         
421         * glib/testglib.c: Print sizeof() results
422         as g_print("%ld", (glong)sizeof(foo)), to deal with
423         size_t being long on Alpha's.
424
425 Tue May 12 16:54:15 1998  Owen Taylor  <otaylor@gtk.org>
426         (James A <jamesa@demon.net> : gtk-jamesa-980511-4.patch)
427         
428         * glib.h gstring.c gmessages.c: Added some missing
429         const to arguments.
430
431         * gutils.c (g_strsignal.c): Added missing return statements.
432
433 Mon May 11 21:11:54 1998  Owen Taylor  <otaylor@gtk.org>
434
435         * gutils.c gmessages.c: Moved g_error, g_warning, g_message and
436         g_print from gutils.c to new file gmessages.c, to avoid having to
437         include <unistd.h> in gutils.c which was causing problems for the
438         g_strsignal implementation on FreeBSD boxes.
439
440 Mon May 11 09:53:43 1998  Tim Janik  <timj@gtk.org>
441
442         * configure.in: preserve automake CFLAGS.
443
444         * Makefile.am: fully rename the created library to libglib-1.1.la.
445         this means we need to change certain portions of the Makefile.am on
446         major/minor version bumps.
447
448         * ltmain.sh: the -release option is not required anymore.
449
450         * glib.h: provide G_GNUC_FUNCTION and G_GNUC_PRETTY_FUNCTION to
451         avoid conditionals. unconditionally define NULL, TRUE, FALSE, MAX,
452         MIN, ABS and CLAMP, these macros might be screwed from other headers.
453
454 Mon May 11 01:44:10 1998  Tim Janik  <timj@gtk.org>
455
456         * gdataset.c: new file, gdatasets implement the object data
457         mechanism from GtkObject. a generic data pointer is associated with
458         a certain location and a key id.
459
460 Sat May  9 20:08:12 1998  Owen Taylor  <otaylor@gtk.org>
461
462         * glib/gmem.c: Experimentally restore GMemChunk
463         to its primeval state - where mem areas are
464         freed incrementally instead of searching the tree
465         every time a mem area is completely empty. Also,
466         always keep one mem chunk around. (Reduced calls
467         to malloc() a lot, but doesn't really improve
468         performance significiantly)
469
470 Thu May  7 08:17:28 1998  Tim Janik  <timj@gtk.org>
471
472         * glib.h (G_GNUC_PRINTF):
473         (G_GNUC_SCANF): macros to facilitate the printf/scanf format argument
474         checking of gcc.
475
476         * gstring.c: const corrections, string!=NULL checks at function entry.
477         (g_string_down): new function for tolower(3) conversion.
478         (g_string_up): new function for toupper(3) conversion.
479
480         * gutils.c: const corrections.
481         (g_strdown): g_string_down() counterpart.
482         (g_strup): g_string_up() counterpart.
483
484         * gscanner.c (g_scanner_unexp_token):
485         (g_scanner_error):
486         (g_scanner_warn): new functions to let a scanner put out warnings
487         or errors, especially to react on unexpected tokens.
488
489         * gslist.c:
490         (g_slist_index): find out about about the position of a
491         certain data pointer.
492         (g_slist_position): find out about about the position of a
493         certain node.
494
495         * glist.c:
496         (g_list_index): find out about about the position of a
497         certain data pointer.
498
499 Thu May  7 05:14:19 1998  Tim Janik  <timj@gtk.org>
500
501         * ltmain.sh: added a new commandline flag -postfix similar to -release,
502         but will immediately change the library name.
503
504         * Makefile.am: specify -postfix and -version-info
505
506         * configure.in: version bump to 1.1.0. added GLIB_INTERFACE_AGE and
507         GLIB_BINARY_AGE. calculate LT_* variables for libtool.
508
509 Fri May  1 16:36:08 1998  Owen Taylor  <otaylor@gtk.org>
510
511         * gutils.c: (g_strcasecmp). Check for isupper before
512         taking tolower, and account for macroized tolower.
513
514         * gutils.c (g_error): Check for recursion.
515
516 1998-04-27  Elliot Lee  <sopwith@cuc.ml.org>
517
518         * glist.c (g_list_position): New function to find the position of
519         a link in a list - should be the inverse of g_list_nth(), but
520         haven't tested it so poof.
521
522 Thu Apr 30 21:41:30 1998  Owen Taylor  <otaylor@gtk.org>
523
524         * gstring.c : Check arguments more carefully, 
525         (gtk-draco-980423-1.patch; ramsey@rhrk.uni-kl.de) 
526
527 Tue Apr  7 19:36:48 1998  Owen Taylor  <owt1@cornell.edu>
528
529         * gutils.c (g_direct_compare): Removed, because that's what
530         a NULL comparison function means. And it wasn't 64 bit safe.
531
532 Mon Apr  6 18:43:25 1998  Tim Janik  <timj@gtk.org>
533
534         * gscanner.c (g_scanner_get_token_ll): fixed a bug that caused floats
535         of the format ".xxx" to be parsed as "xxx".
536
537 Fri Apr  3 20:36:35 1998  Owen Taylor  <owt1@cornell.edu>
538
539         * gutils.c (g_parse_debug_string): Make debug string
540         parsine case-insensitive
541
542 Fri Apr  3 17:03:18 PST 1998 Manish Singh <yosh@gimp.org>
543
544         * gstring.c: corrected possible overrun when inserting into
545         GStrings (thanks Elrond)
546
547 Fri Apr  3 18:05:45 1998  Owen Taylor  <owt1@cornell.edu>
548
549         * testglib.c: Removed literal german from strings
550         to appease SGI compiler.
551         
552 Thu Mar 26 20:47:21 1998  Owen Taylor  <owt1@cornell.edu>
553
554         * configure.in glib glibconfig.h.in: Add test for atexit/on_exit -
555         use on_exit if atexit not found in definition of ATEXIT.
556
557 Wed Mar 25 15:23:37 1998  Owen Taylor  <owt1@cornell.edu>
558
559         * Makefile.am: Switched glibconfig.h rule from HEADERS
560         to DATA, so that it is not added to DISTFILES
561
562 Wed Mar 18 22:27:08 PST 1998 Manish Singh <yosh@gimp.org>
563
564         * garray.c: g_rarray_truncate length done correctly
565
566 Sun Mar 15 07:13:34 1998  Tim Janik  <timj@gimp.org>
567
568         * gutils.c: changed *_handler variables to be named glib_*_handler,
569         so you can easily access them from gdb.
570
571 Sat Mar 14 17:47:43 1998  Owen Taylor  <owt1@cornell.edu>
572
573         * Makefile.am: Don't refer to current directory as $(top_builddir)
574         to avoid confusing non-gmakes
575
576 Sat Mar 14 01:37:35 1998  Owen Taylor  <owt1@cornell.edu>
577
578         * Makefile.am (configincludedir): Moved glibconfig.h to
579           $(pkglibdir)/include
580
581 Tue Mar 10 02:03:12 1998  Tim Janik  <timj@gimp.org>
582
583         * gscanner.c (g_scanner_destroy_symbol_table_entry): new function to
584         free symbol table entries upon destruction
585         (gtk-gronlund-980309-0.patch.gz).
586
587 Mon Mar  9 15:02:21 1998  Tim Janik  <timj@gimp.org>
588
589         * glib.h: changed *_length functions to return guint.
590         changed *_nth functions to take guint as argument.
591
592         * glist.c: adapted g_list_length and g_list_length.
593
594         * gslist.c: adapted g_slist_length and g_slist_length.
595
596 Mon Mar  2 17:51:18 1998  Owen Taylor  <owt1@cornell.edu>
597
598         * glib.h gutils.c : changed g_strcasecmp
599           to take gchar* not guchar*
600
601         * testglib.c: Remove trailing ; after functions
602         
603 Sun Mar  1 19:04:40 1998  Owen Taylor  <owt1@cornell.edu>
604
605         * glib.h gstring.c: Added g_string_insert[_c]()
606           and g_string_erase().
607
608           From: Stefan Wille  <1wille@vsys1.informatik.uni-hamburg.de>
609
610 Mon Feb 16 23:05:06 1998  Owen Taylor  <owt1@cornell.edu>
611
612         * glist.c (g_list_insert_sorted): Changed function
613           so elements are always inserted, even if they compare
614           equal with another.
615
616 Thu Feb 12 22:48:11 1998  Owen Taylor  <owt1@cornell.edu>
617
618         * gstring.c glib.h: removed deprecated g_string_equal
619           and g_string_hash.
620
621 Tue Feb 10 13:04:36 1998  Owen Taylor  <owt1@cornell.edu>
622
623         * configure.in: Add check to see if the C library's
624           iswalnum can actually be used. (Not true for
625           Linux libc-5.4.38)
626
627 Sat Feb  7 11:48:09 1998  Owen Taylor  <owt1@cornell.edu>
628
629         * gstring.c gutils.c: added some additional consts in
630           appropriate places to remove a warning
631
632 Sat Feb  7 11:15:54 1998  Owen Taylor  <owt1@cornell.edu>
633
634         * gutils.c: include <ctype.h> for tolower()
635
636 Fri Jan 30 23:57:17 PST 1998 Manish Singh <yosh@gimp.org>
637
638         * added and autoconfigured in a new utility function
639         g_strcasecmp
640
641 Wed Jan 28 23:53:27 PST 1998 Manish Singh <yosh@gimp.org>
642
643         * glist.c
644         * gslist.c
645         * testglib.c: the sort functions compared backwards. Fixed
646         * glib.h: list iterator macros now check for NULL pointers
647
648 Tue Jan 27 09:46:57 PST 1998 Manish Singh <yosh@gimp.org>
649
650         * gstring.c: g_string_prepend and g_string_prepend_c had
651         interchanged src and dest parameters for g_memmove. Fixed.
652
653 Tue Jan 27 01:38:52 PST 1998 Manish Singh <yosh@gimp.org>
654
655         * gslist.c: fixed a really, really lame error. g_slist_insert
656         didn't hook the data in! Reworked the routine to reflect the
657         functionality of g_list
658
659 Wed Jan 21 01:13:25 1998  Tim Janik  <timj@psynet.net>
660
661         * Applied patch from (Raja R Harinath <harinath@cs.umn.edu>)
662           to add function g_snprintf.
663         * configure.in (AC_CHECK_FUNCS): Check for vsnprintf.
664         * glib.h: Add prototype for g_snprintf.
665         * glibconfig.h.in: Add HAVE_VSNPRINTF.
666         * gutils.c (g_snprintf): new function.
667
668 Sat Jan 17 23:52:40 1998  Owen Taylor  <owt1@cornell.edu>
669
670         * gstring.{c,h} gscanner.c:
671            renamed g_string_equal => g_str_equal
672            renamed g_string_hash => g_str_hash
673           And const corrected. Old functions left in for now.
674         
675 Fri Jan  9 20:03:46 1998  Tim Janik  <timj@psynet.net>
676
677         * gutils.c (g_strerror): changed message for EAGAIN from
678         "no more processes" to "try again" since EAGAIN is used with
679         functions else than fork().
680
681         * gscanner.c (g_scanner_get_token_ll): use strtol() instead of
682         strtoul() to avoid conflicts with solaris.
683
684         * merged the glib portions from Jan 2 to Jan 7 out of gtk+/ChangeLog
685         into this file.
686
687 Wed Jan  7 02:14:30 PST 1998 Manish Singh <yosh@gimp.org>
688
689         * glib.h:
690         * glist.c:
691         * gslist.c:
692         * testglib.c: Added g_[s]list_insert_sorted function
693         and appropriate tests in testglib
694
695 Sat Jan  3 20:23:25 1998  Owen Taylor  <owt1@cornell.edu>
696
697         * glib.h: Changed guint32 -> guint for bitfields.
698         (Bitfields must be int or unsigned int?)
699
700 Fri Jan  2 23:52 PST 1998 Jay Painter <jpaint@serv.net>
701
702         * glib_pre1.h: 
703         * glib_pre2.h: 
704         * glib.h: reverted glibconfig.h and glib.h files back to the
705         way they were before my ugly hack.
706
707         * gscanner.c: removed inlines from clist and gscanner
708
709 Tue Dec 23 02:49:51 1997  Tim Janik  <timj@psynet.net>
710
711         * gscanner.c: new file for GScanner: Flexible lexical scanner for
712         general purpose.
713         * glib_pre2.h: added GScanner includes. added g_strconcat and g_strtod.
714         gutils.c (g_strconcat): new function for string concatenation of NULL
715         terminated parameter list.
716         (g_strtod): new function to perform best string to double conversion
717         with or without consideration of the current locale.
718
719 Mon Dec 15 19:33:58 1997  Tim Janik  <timj@psynet.net>
720
721         * glist.c: minor optimizations:
722         (g_list_append): `if' optimized for common code path, commented out
723         unneccessary `assert', saved one variable assignment.
724         (g_list_prepend): saved two (conditioned) variable assignment.
725         (g_list_insert): saved one  (conditioned) variable assignment,
726         saved one variable assignment.
727         (g_list_remove): `if' optimized for common code path, saved two
728         variable assignments by using `g_list_free_1' (which is even
729         faster) instead of `g_list_free'.
730         (g_list_reverse): saved allocation of one variable, saved one
731         variable assignment.
732
733 Wed Dec 10 23:27:20 1997  Tim Janik  <timj@psynet.net>
734
735         * glib_pre1.h: 
736         * glib_pre2.h: 
737         * glib.h: this file now gets concatenated by makeglib_h from
738         glib_pre1.h and glib_pre2.h to merge in glibconfig.h wich got
739         created by configure (done by Jay Painter).
740
741         * glib_pre2.h: the g_assert*() and g_return_*_fail() macros
742         are wrapped by G_STMT_START and G_STMT_END now, to avoid conflicts
743         when used within if (...) g_macro(); else ... conditionals.
744         
745 Tue Dec 17 13:14:07 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
746
747         * glib.h: Changed 'g_return_if_fail' and 'g_return_val_if_fail' to
748         not call 'g_string' but to simply stringify the
749         expression. Calling 'g_string' causes the expression to be
750         expanded which is undesired.
751
752 Sun Dec  1 01:30:48 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
753
754         * Started ChangeLog