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