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