New file. Contains `libtool.m4' from libtool-1.2, the version from which
[platform/upstream/glib.git] / ChangeLog
1 1998-06-10  Raja R Harinath  <harinath@cs.umn.edu>
2
3         * acinclude.m4: New file.  Contains `libtool.m4' from libtool-1.2,
4         the version from which glib's libtool forked.  Needed for people
5         who use post-1.2 alphas of libtool.
6         * configure.in (enable_mem_check, enable_mem_profile): Replace
7         `echo -n' with AC_MSG_CHECKING.
8         (fd_set): Explain test for `fd_set' better.
9
10 Wed Jun 10 19:29:51 1998  Owen Taylor  <otaylor@gtk.org>
11
12         * Makefile.am glib.m4 configure.in:
13         
14         Moved out from GTK+; added AM_PATH_GLIB macro.
15
16 Wed Jun 10 12:56:07 1998  Owen Taylor  <otaylor@gtk.org>
17
18         * glib.h: renamed g_const_pointer => gconstpointer
19
20 Tue Jun  9 17:47:33 1998  Owen Taylor  <otaylor@gtk.org>
21
22         * glib.h: Remove #error - HP/UX.
23
24 Sat May 23 19:00:01 1998  Owen Taylor  <otaylor@gtk.org>
25   [ Combination of:
26      gtk-rrh-980412-0.patch (Raja R Harinath <harinath@cs.umn.edu>)
27      gtk-jbuhler-980516-0 (Jeremy Buhler <jbuhler@cs.washington.edu>) ]
28         
29         * glib.h ghash.c gstring.c gdataset.c gutils.c:
30         - Added new typedef g_const_pointer; expunged all incorrect
31           uses of 'const gpointer'.
32         - Fixed up warnings that that created,
33         - Changed GHashFunc and GCompareFunc to take g_const_pointer
34           arguments. (Necessary, but will cause warnings in existing
35           code until fixed)
36         - Added other new const in harmless positions.
37
38 Mon Jun  8 01:06:47 1998  Tim Janik  <timj@gtk.org>
39
40         * glib.h: added enum-helper macros for code generation.
41         added G_BREAKPOINT().
42
43 Sat Jun  6 14:09:22 PDT 1998 Manish Singh <yosh@gimp.org>
44
45         * gmem.c: commented out MEM_PROFILE and MEM_CHECK, causing weird
46         problems
47
48 Wed Jun  3 06:19:42 1998  Tim Janik  <timj@gtk.org>
49
50         * glib.h (g_chunk_new0): convenience macro, for allocating small chunks 
51         like g_chunk_new() with additional 0 initialization.
52
53 Mon Jun  1 04:43:27 1998  Tim Janik  <timj@gtk.org>
54
55         * ghash.c (g_hash_table_insert): wrote a comment describing why
56         a hash node's key should not also get replaced when overriding
57         previous entries.
58
59 Tue May 26 18:30:06 1998  Tim Janik  <timj@gtk.org>
60
61         * glib.h (g_string_sized_new): new function to controll the preallocated
62         size of a GString.
63
64         * glib.h (g_strreversed): new function to reverse a string.
65
66 Mon May 18 22:14:39 1998  Owen Taylor  <otaylor@gtk.org>
67 (Yasuhiro SHIRASAKI <joke@awa.tohoku.ac.jp> : gtk-joke-980517-0.patch)
68         
69         * gutils.c: Restored a missing prototype for g_vsprintf.
70
71 Wed May 20 05:02:26 1998  Tim Janik  <timj@gtk.org>
72
73         * glib.h: conditionally define NULL, FALSE and TRUE.
74         (g_mem_chunk_create): new convenience macro as a short hand for
75         g_mem_chunk_new().
76         (g_chunk_free): new convenience macro to be consistent with g_chunk_new.
77
78 Tue, 19 May 1998 09:00:02 +0200  Â§Paolo Molaro <lupus@debian.org>
79
80         * gcompletion.c: generic functions for com<TAB>pletion...
81
82 Sun May 17 10:48:27 1998  Tim Janik  <timj@gtk.org>
83
84         * gscanner.c (g_scanner_unexp_token): provide usefull default
85         specifications for identifier_spec and symbol_spec.
86
87         * glib.h: new functions g_slist_nth_data and g_list_nth_data to return
88         the data of the nth element in the list.
89
90 Fri May 15 22:31:49 1998  Tim Janik  <timj@gtk.org>
91
92         * gscanner.c (g_scanner_unexp_token): removed spurious va_end(args)
93         that for some reason didn't produce a compiler wrning on my machine
94         (is va_end undefined for i386?).
95
96 Fri May 15 12:32:08 1998  rodo  <doulik@karlin.mff.cuni.cz>
97
98         * gscanner.c: replaced some snprintf with g_snprintf
99
100 Fri May 15 00:56:59 1998  Tim Janik  <timj@gtk.org>
101
102         * glib.h: further support for gcc function attributes: G_GNUC_FORMAT,
103         G_GNUC_NORETURN and G_GNUC_CONST.
104
105         * gscanner.c (g_scanner_stat_mode): changed stat() to lstat().
106         (g_scanner_msg_handler): "\n" at end of line!
107         (g_scanner_foreach_symbol): new function to iterate over the symbol
108         table (GScanner does value-wrapping).
109
110 Thu May 14 04:14:12 1998  Tim Janik  <timj@gtk.org>
111
112         * glib.h: typedef gint gboolean;
113         this is needed to provide portability with big-endian platforms (e.g.
114         try sizeof(bool) for c++ on big-endians - it's 4).
115         this is also needed to maintain some_union.d_gint==some_union.d_gboolean.
116         plus, gint to gboolean casts and vice versa need to be possible without
117         loss.
118
119 Tue May 12 19:22:58 1998  Owen Taylor  <otaylor@gtk.org>
120
121         * glib/glib.h: Added macros G[U]INT_TO_POINTER() and
122         GPOINTER_TO_[U]INT for storing small integers integers
123         inside pointers. 
124         
125         * glib/testglib.c: Print sizeof() results
126         as g_print("%ld", (glong)sizeof(foo)), to deal with
127         size_t being long on Alpha's.
128
129 Tue May 12 16:54:15 1998  Owen Taylor  <otaylor@gtk.org>
130         (James A <jamesa@demon.net> : gtk-jamesa-980511-4.patch)
131         
132         * glib.h gstring.c gmessages.c: Added some missing
133         const to arguments.
134
135         * gutils.c (g_strsignal.c): Added missing return statements.
136
137 Mon May 11 21:11:54 1998  Owen Taylor  <otaylor@gtk.org>
138
139         * gutils.c gmessages.c: Moved g_error, g_warning, g_message and
140         g_print from gutils.c to new file gmessages.c, to avoid having to
141         include <unistd.h> in gutils.c which was causing problems for the
142         g_strsignal implementation on FreeBSD boxes.
143
144 Mon May 11 09:53:43 1998  Tim Janik  <timj@gtk.org>
145
146         * configure.in: preserve automake CFLAGS.
147
148         * Makefile.am: fully rename the created library to libglib-1.1.la.
149         this means we need to change certain portions of the Makefile.am on
150         major/minor version bumps.
151
152         * ltmain.sh: the -release option is not required anymore.
153
154         * glib.h: provide G_GNUC_FUNCTION and G_GNUC_PRETTY_FUNCTION to
155         avoid conditionals. unconditionally define NULL, TRUE, FALSE, MAX,
156         MIN, ABS and CLAMP, these macros might be screwed from other headers.
157
158 Mon May 11 01:44:10 1998  Tim Janik  <timj@gtk.org>
159
160         * gdataset.c: new file, gdatasets implement the object data
161         mechanism from GtkObject. a generic data pointer is associated with
162         a certain location and a key id.
163
164 Sat May  9 20:08:12 1998  Owen Taylor  <otaylor@gtk.org>
165
166         * glib/gmem.c: Experimentally restore GMemChunk
167         to its primeval state - where mem areas are
168         freed incrementally instead of searching the tree
169         every time a mem area is completely empty. Also,
170         always keep one mem chunk around. (Reduced calls
171         to malloc() a lot, but doesn't really improve
172         performance significiantly)
173
174 Thu May  7 08:17:28 1998  Tim Janik  <timj@gtk.org>
175
176         * glib.h (G_GNUC_PRINTF):
177         (G_GNUC_SCANF): macros to facilitate the printf/scanf format argument
178         checking of gcc.
179
180         * gstring.c: const corrections, string!=NULL checks at function entry.
181         (g_string_down): new function for tolower(3) conversion.
182         (g_string_up): new function for toupper(3) conversion.
183
184         * gutils.c: const corrections.
185         (g_strdown): g_string_down() counterpart.
186         (g_strup): g_string_up() counterpart.
187
188         * gscanner.c (g_scanner_unexp_token):
189         (g_scanner_error):
190         (g_scanner_warn): new functions to let a scanner put out warnings
191         or errors, especially to react on unexpected tokens.
192
193         * gslist.c:
194         (g_slist_index): find out about about the position of a
195         certain data pointer.
196         (g_slist_position): find out about about the position of a
197         certain node.
198
199         * glist.c:
200         (g_list_index): find out about about the position of a
201         certain data pointer.
202
203 Thu May  7 05:14:19 1998  Tim Janik  <timj@gtk.org>
204
205         * ltmain.sh: added a new commandline flag -postfix similar to -release,
206         but will immediately change the library name.
207
208         * Makefile.am: specify -postfix and -version-info
209
210         * configure.in: version bump to 1.1.0. added GLIB_INTERFACE_AGE and
211         GLIB_BINARY_AGE. calculate LT_* variables for libtool.
212
213 Fri May  1 16:36:08 1998  Owen Taylor  <otaylor@gtk.org>
214
215         * gutils.c: (g_strcasecmp). Check for isupper before
216         taking tolower, and account for macroized tolower.
217
218         * gutils.c (g_error): Check for recursion.
219
220 1998-04-27  Elliot Lee  <sopwith@cuc.ml.org>
221
222         * glist.c (g_list_position): New function to find the position of
223         a link in a list - should be the inverse of g_list_nth(), but
224         haven't tested it so poof.
225
226 Thu Apr 30 21:41:30 1998  Owen Taylor  <otaylor@gtk.org>
227
228         * gstring.c : Check arguments more carefully, 
229         (gtk-draco-980423-1.patch; ramsey@rhrk.uni-kl.de) 
230
231 Tue Apr  7 19:36:48 1998  Owen Taylor  <owt1@cornell.edu>
232
233         * gutils.c (g_direct_compare): Removed, because that's what
234         a NULL comparison function means. And it wasn't 64 bit safe.
235
236 Mon Apr  6 18:43:25 1998  Tim Janik  <timj@gtk.org>
237
238         * gscanner.c (g_scanner_get_token_ll): fixed a bug that caused floats
239         of the format ".xxx" to be parsed as "xxx".
240
241 Fri Apr  3 20:36:35 1998  Owen Taylor  <owt1@cornell.edu>
242
243         * gutils.c (g_parse_debug_string): Make debug string
244         parsine case-insensitive
245
246 Fri Apr  3 17:03:18 PST 1998 Manish Singh <yosh@gimp.org>
247
248         * gstring.c: corrected possible overrun when inserting into
249         GStrings (thanks Elrond)
250
251 Fri Apr  3 18:05:45 1998  Owen Taylor  <owt1@cornell.edu>
252
253         * testglib.c: Removed literal german from strings
254         to appease SGI compiler.
255         
256 Thu Mar 26 20:47:21 1998  Owen Taylor  <owt1@cornell.edu>
257
258         * configure.in glib glibconfig.h.in: Add test for atexit/on_exit -
259         use on_exit if atexit not found in definition of ATEXIT.
260
261 Wed Mar 25 15:23:37 1998  Owen Taylor  <owt1@cornell.edu>
262
263         * Makefile.am: Switched glibconfig.h rule from HEADERS
264         to DATA, so that it is not added to DISTFILES
265
266 Wed Mar 18 22:27:08 PST 1998 Manish Singh <yosh@gimp.org>
267
268         * garray.c: g_rarray_truncate length done correctly
269
270 Sun Mar 15 07:13:34 1998  Tim Janik  <timj@gimp.org>
271
272         * gutils.c: changed *_handler variables to be named glib_*_handler,
273         so you can easily access them from gdb.
274
275 Sat Mar 14 17:47:43 1998  Owen Taylor  <owt1@cornell.edu>
276
277         * Makefile.am: Don't refer to current directory as $(top_builddir)
278         to avoid confusing non-gmakes
279
280 Sat Mar 14 01:37:35 1998  Owen Taylor  <owt1@cornell.edu>
281
282         * Makefile.am (configincludedir): Moved glibconfig.h to
283           $(pkglibdir)/include
284
285 Tue Mar 10 02:03:12 1998  Tim Janik  <timj@gimp.org>
286
287         * gscanner.c (g_scanner_destroy_symbol_table_entry): new function to
288         free symbol table entries upon destruction
289         (gtk-gronlund-980309-0.patch.gz).
290
291 Mon Mar  9 15:02:21 1998  Tim Janik  <timj@gimp.org>
292
293         * glib.h: changed *_length functions to return guint.
294         changed *_nth functions to take guint as argument.
295
296         * glist.c: adapted g_list_length and g_list_length.
297
298         * gslist.c: adapted g_slist_length and g_slist_length.
299
300 Mon Mar  2 17:51:18 1998  Owen Taylor  <owt1@cornell.edu>
301
302         * glib.h gutils.c : changed g_strcasecmp
303           to take gchar* not guchar*
304
305         * testglib.c: Remove trailing ; after functions
306         
307 Sun Mar  1 19:04:40 1998  Owen Taylor  <owt1@cornell.edu>
308
309         * glib.h gstring.c: Added g_string_insert[_c]()
310           and g_string_erase().
311
312           From: Stefan Wille  <1wille@vsys1.informatik.uni-hamburg.de>
313
314 Mon Feb 16 23:05:06 1998  Owen Taylor  <owt1@cornell.edu>
315
316         * glist.c (g_list_insert_sorted): Changed function
317           so elements are always inserted, even if they compare
318           equal with another.
319
320 Thu Feb 12 22:48:11 1998  Owen Taylor  <owt1@cornell.edu>
321
322         * gstring.c glib.h: removed deprecated g_string_equal
323           and g_string_hash.
324
325 Tue Feb 10 13:04:36 1998  Owen Taylor  <owt1@cornell.edu>
326
327         * configure.in: Add check to see if the C library's
328           iswalnum can actually be used. (Not true for
329           Linux libc-5.4.38)
330
331 Sat Feb  7 11:48:09 1998  Owen Taylor  <owt1@cornell.edu>
332
333         * gstring.c gutils.c: added some additional consts in
334           appropriate places to remove a warning
335
336 Sat Feb  7 11:15:54 1998  Owen Taylor  <owt1@cornell.edu>
337
338         * gutils.c: include <ctype.h> for tolower()
339
340 Fri Jan 30 23:57:17 PST 1998 Manish Singh <yosh@gimp.org>
341
342         * added and autoconfigured in a new utility function
343         g_strcasecmp
344
345 Wed Jan 28 23:53:27 PST 1998 Manish Singh <yosh@gimp.org>
346
347         * glist.c
348         * gslist.c
349         * testglib.c: the sort functions compared backwards. Fixed
350         * glib.h: list iterator macros now check for NULL pointers
351
352 Tue Jan 27 09:46:57 PST 1998 Manish Singh <yosh@gimp.org>
353
354         * gstring.c: g_string_prepend and g_string_prepend_c had
355         interchanged src and dest parameters for g_memmove. Fixed.
356
357 Tue Jan 27 01:38:52 PST 1998 Manish Singh <yosh@gimp.org>
358
359         * gslist.c: fixed a really, really lame error. g_slist_insert
360         didn't hook the data in! Reworked the routine to reflect the
361         functionality of g_list
362
363 Wed Jan 21 01:13:25 1998  Tim Janik  <timj@psynet.net>
364
365         * Applied patch from (Raja R Harinath <harinath@cs.umn.edu>)
366           to add function g_snprintf.
367         * configure.in (AC_CHECK_FUNCS): Check for vsnprintf.
368         * glib.h: Add prototype for g_snprintf.
369         * glibconfig.h.in: Add HAVE_VSNPRINTF.
370         * gutils.c (g_snprintf): new function.
371
372 Sat Jan 17 23:52:40 1998  Owen Taylor  <owt1@cornell.edu>
373
374         * gstring.{c,h} gscanner.c:
375            renamed g_string_equal => g_str_equal
376            renamed g_string_hash => g_str_hash
377           And const corrected. Old functions left in for now.
378         
379 Fri Jan  9 20:03:46 1998  Tim Janik  <timj@psynet.net>
380
381         * gutils.c (g_strerror): changed message for EAGAIN from
382         "no more processes" to "try again" since EAGAIN is used with
383         functions else than fork().
384
385         * gscanner.c (g_scanner_get_token_ll): use strtol() instead of
386         strtoul() to avoid conflicts with solaris.
387
388         * merged the glib portions from Jan 2 to Jan 7 out of gtk+/ChangeLog
389         into this file.
390
391 Wed Jan  7 02:14:30 PST 1998 Manish Singh <yosh@gimp.org>
392
393         * glib.h:
394         * glist.c:
395         * gslist.c:
396         * testglib.c: Added g_[s]list_insert_sorted function
397         and appropriate tests in testglib
398
399 Sat Jan  3 20:23:25 1998  Owen Taylor  <owt1@cornell.edu>
400
401         * glib.h: Changed guint32 -> guint for bitfields.
402         (Bitfields must be int or unsigned int?)
403
404 Fri Jan  2 23:52 PST 1998 Jay Painter <jpaint@serv.net>
405
406         * glib_pre1.h: 
407         * glib_pre2.h: 
408         * glib.h: reverted glibconfig.h and glib.h files back to the
409         way they were before my ugly hack.
410
411         * gscanner.c: removed inlines from clist and gscanner
412
413 Tue Dec 23 02:49:51 1997  Tim Janik  <timj@psynet.net>
414
415         * gscanner.c: new file for GScanner: Flexible lexical scanner for
416         general purpose.
417         * glib_pre2.h: added GScanner includes. added g_strconcat and g_strtod.
418         gutils.c (g_strconcat): new function for string concatenation of NULL
419         terminated parameter list.
420         (g_strtod): new function to perform best string to double conversion
421         with or without consideration of the current locale.
422
423 Mon Dec 15 19:33:58 1997  Tim Janik  <timj@psynet.net>
424
425         * glist.c: minor optimizations:
426         (g_list_append): `if' optimized for common code path, commented out
427         unneccessary `assert', saved one variable assignment.
428         (g_list_prepend): saved two (conditioned) variable assignment.
429         (g_list_insert): saved one  (conditioned) variable assignment,
430         saved one variable assignment.
431         (g_list_remove): `if' optimized for common code path, saved two
432         variable assignments by using `g_list_free_1' (which is even
433         faster) instead of `g_list_free'.
434         (g_list_reverse): saved allocation of one variable, saved one
435         variable assignment.
436
437 Wed Dec 10 23:27:20 1997  Tim Janik  <timj@psynet.net>
438
439         * glib_pre1.h: 
440         * glib_pre2.h: 
441         * glib.h: this file now gets concatenated by makeglib_h from
442         glib_pre1.h and glib_pre2.h to merge in glibconfig.h wich got
443         created by configure (done by Jay Painter).
444
445         * glib_pre2.h: the g_assert*() and g_return_*_fail() macros
446         are wrapped by G_STMT_START and G_STMT_END now, to avoid conflicts
447         when used within if (...) g_macro(); else ... conditionals.
448         
449 Tue Dec 17 13:14:07 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
450
451         * glib.h: Changed 'g_return_if_fail' and 'g_return_val_if_fail' to
452         not call 'g_string' but to simply stringify the
453         expression. Calling 'g_string' causes the expression to be
454         expanded which is undesired.
455
456 Sun Dec  1 01:30:48 1996  Peter Mattis  <pmattis@charnley.HIP.Berkeley.EDU>
457
458         * Started ChangeLog