Renamed GLIB_SIZEOF_PTHREAD_T to GLIB_SIZEOF_SYSTEM_THREAD to reflect
[platform/upstream/glib.git] / ChangeLog
1 1999-11-16  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
2
3         * acconfig.h, config.h.win32.in, configure.in: Renamed
4         GLIB_SIZEOF_PTHREAD_T to GLIB_SIZEOF_SYSTEM_THREAD to reflect
5         changed meaning.
6
7         * configure.in: Cope with systems, that have a pthread_t type,
8         that is not a pointer. Hint from Karl Nelson
9         <kenelson@ece.ucdavis.edu>. Define GLIB_SIZEOF_SYSTEM_THREAD to 4
10         for Solaris. Cope with systems, that have no default mutex
11         initialize, like obviously most DCE systems.
12
13         * glib.h, gthread.c: Changed the prototype of thread_create and
14         thread_self to return the system thread into provided memory
15         instead of a return value. This is necessary, as HPUX has a
16         pthread_t, that is bigger than the biggest integral type there.
17
18         * gthread.c: system_thread is no longer a pointer, but an memory
19         area of size GLIB_SIZEOF_SYSTEM_THREAD. Changed the
20         zeroinitialization and the tests for zeroness accordingly.
21
22 1999-11-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
23
24         * configure.in: Create docs/glib-config.1 from
25         docs/glib-config.1.in. Makes 'make distcheck' happy (and me too).
26
27         * glib-config.1: Removed from CVS, as it is a generated file.
28
29 1999-11-08  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
30
31         * configure.in: Make the test for getpwuid_r work on newer AIX
32         versions, too. Still works on Solaris and Linux. Patch from Craig
33         Rodrigues <rodrigc@mediaone.net>.
34
35 1999-11-08  Tor Lillqvist  <tml@iki.fi>
36
37         * gwin32.c (g_win32_getlocale): Look at env vars LC_ALL, LC_CTYPE
38         and LANG first. Some refinements to the sublanguage logic.
39
40 1999-11-04  Tor Lillqvist  <tml@iki.fi>
41
42         * makefile.{cygwin,msc}.in: Add gwin32 object. Add rule to make .i
43         (preprocessed source) files.
44
45 1999-11-01  Tor Lillqvist  <tml@iki.fi>
46
47         * glib.h
48         * glib.def: Rename Win32-only functions from gwin_* to g_win32_*
49         to match the GLib naming conventions.
50
51         * gutils.c
52         * gwin32.c
53         * testglib.c
54         * Makefile.am: Move the Win32-only functions to the new
55         file gwin32.c
56
57 1999-10-31  Tor Lillqvist  <tml@iki.fi>
58
59         * gutils.c (gwin_getlocale): New Win32-specific function, returns
60         a Unixish current locale string (en, zh_TW etc).
61
62         * glib.h: Declare it.
63
64         * glib.def: Export it.
65
66         * testglib.c: Test it.
67
68         * gmessages.c (Win32: ensure_stdout_valid): Some improvements,
69         make sure we don't call AllocConsole several times, which I think
70         has happened.
71
72 Sun Oct 31 18:55:01 1999  ape@spacetec.no  (Asbjorn Pettersen)
73
74         * gcache.c (g_cache_remove): Test if node is NULL.
75         If not tested, GIMP's script-fu will crash. 
76
77 Sun Oct 17 18:11:40 1999  Tim Janik  <timj@gtk.org>
78
79         * gdataset.c (g_data_set_internal): remove g_dataset_global_lock around
80         destroy() notification here as well.
81
82 1999-10-15  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
83
84         * gdataset.c (g_datalist_clear_i): Avoid Freezing, when g_datalist
85         is called recursivly. Reported by Ola Andersson <rand@ling.umu.se>.
86
87 Tue Oct 12 14:17:12 1999  Tim Janik  <timj@gtk.org>
88
89         * glib.h: removed useless g_string(x) macro that cluttered the namespace
90         and was just a poor wrapper around the cpp '#' symbol, use #x if you
91         need to work around this.
92         added new macro G_STRINGIFY(arg) that will convert arg to a string,
93         no matter whether it contains macros or not.
94
95 1999-10-12  Tor Lillqvist  <tml@iki.fi>
96
97         * config.h.win32.in: Define the new GLIB_SIZEOF_* constants here,
98         too.
99
100         * glib.h: Small Win32 comments improvement.
101
102 Tue Oct 12 12:16:12 1999  Tim Janik  <timj@gtk.org>
103
104         * gmessages.c (g_printf_string_upper_bound): completly new implementation
105         for printf string upper bounds calculation.
106         we handle all glibc 2.1 format specifiers now, except for positional
107         parameters (%nn$...) and wide char strings, plus some obscure upper
108         case variants of the standard conversions. this fixes a lot of
109         bugs in the old code, i.e.
110         - NULL format strings
111         - floats with exponents >+24
112         - %G
113         - precision specifications in general
114         - negative field widths
115         - %p for SIZEOF_VOID_P > 4 platforms
116         we now issue warnigns in places where the old code would have
117         caused buffer overruns anyways. warnings are suppressed when invoked
118         from glogv(), to avoid infinite recursions if someone passes a log
119         message that comes with really obscure format specifications.
120
121 Tue Oct 12 11:49:00 1999  Tim Janik  <timj@gtk.org>
122
123         * gstrfuncs.c: nuked old g_printf_string_upper_bound() version.
124
125 Tue Oct 12 03:34:40 1999  Tim Janik  <timj@gtk.org>
126
127         * glib.h: added GFloatIEEE754 and GDoubleIEEE754 unions to access sign,
128         mantissa and exponent of IEEE floats and doubles (required by the new
129         version of g_printf_string_upper_bound). the unions are endian specific,
130         we handle G_LITTLE_ENDIAN and G_BIG_ENDIAN as of currently. ieee floats
131         and doubles are supported (used for storage) by at least intel, ppc and
132         sparc, reference:
133         http://twister.ou.edu/workshop.docs/common-tools/numerical_comp_guide/ncg_math.doc.html
134         
135 Mon Oct 11 18:01:49 1999  Tim Janik  <timj@gtk.org>
136
137         * configure.in: added additional checks to figure sizes of size_t,
138         ptrdiff_t and intmax_t (required by g_printf_string_upper_bound).
139
140 Wed Oct  6 12:44:23 PDT 1999 Manish Singh <yosh@gimp.org>
141
142         * configure.in: blah. use G_WITH_CYGWIN instead of G_HAVE_CYGWIN
143
144 1999-10-05  Tor Lillqvist  <tml@iki.fi>
145
146         * glib.h: (Win32) Drop the mapping of POSIX function names to the
147         underscored versions, it's unnecessary after all. With MSVC we get
148         them from oldnames.lib, with gcc-2.95 and mingw32 from
149         -lmoldname-msvc. Add comment about what headers to include for
150         prototypes.
151
152         * glibconfig.h.win32.in: Don't define WIN32 and NATIVE_WIN32.
153
154         * gerror.c (g_on_error_query): (Win32) Slightly increased verbosity.
155
156         * build-dll: Don't strip.
157
158         * tests/string-test.c tests/dirname-test.c: Use G_OS_WIN32.
159
160         * glib.def: Add g_thread_use_default_impl.
161
162 Sun Oct  3 19:46:55 PDT 1999 Manish Singh <yosh@gimp.org>
163
164         * configure.in: use G_HAVE_CYGWIN instead of G_OS_FEATURE_CYGWIN
165
166 Sun Oct  3 19:25:42 PDT 1999 Manish Singh <yosh@gimp.org>
167
168         * acconfig.h
169         * configure.in
170         * glibconfig.h.win32: G_OS_FOO #defines. I *think* I got the cygwin
171         and beos stuff right, but I haven't tested it. The respective
172         porters should fix any screwups
173
174         * glib.h
175         * gerror.c
176         * gmain.c
177         * gmessages.c
178         * gscanner.c
179         * gthread.c
180         * gtimer.c
181         * gutils.c
182         * testglib.c: use G_OS stuff
183
184 Wed Sep 22 01:53:18 1999  Tim Janik  <timj@gtk.org>
185
186         * glib.h (NULL): define NULL as (0L) if __cplusplus is defined, to
187         avoid "ANSI C++ forbids implicit conversion from `void *' in argument
188         passing" errors upon NULL usage in C++ programs (gcc-2.95 is on crack
189         for erroring out on this, instead of just issueing a warning).
190
191         * glib.h (g_trash_stack_pop): use uncasted NULL again.
192         
193 Fri Sep 17 10:24:45 1999  Tim Janik  <timj@gtk.org>
194
195         * gmem.c (g_mem_chunk_compute_size) (g_mem_chunk_new): applied patch
196         from Soeren Sandmann <sandmann@daimi.au.dk>, to force mem chunk's area
197         sizes to be a multitiple of atom_size, and to eliminate the MAX_MEM_AREA
198         restriction of 65536 bytes. we also catch cases where users pass an area
199         size < atom size with a return_if_fail statement now (which is ok,
200         because previously this lead to memory corruption anyways).
201
202 Thu Sep 16 13:19:54 1999  Tim Janik  <timj@gtk.org>
203
204         * glib.h (g_trash_stack_pop): add explicit (GTrashStack*) cast for NULL
205         pointer to cure ANSI C++ error.
206
207 Mon Sep 13 23:25:59 1999  Tim Janik  <timj@gtk.org>
208
209         * gmessages.c (g_logv): in case we have to abort the program,
210         debugging is enabled and we are not called recursively, try
211         to abort with raise (SIGTRAP) first, so developers may ignore
212         certain failure conditions during debugging stage.
213
214 Thu Aug 26 15:09:36 1999  Tim Janik  <timj@gtk.org>
215
216         * Makefile.am:
217         * gmodule/Makefile.am:
218         * gthread/Makefile.am: added --export-dynamic so we can load dynmic
219         modules, (required, according to the libtool 1.3.3 docu).
220
221 1999-07-23  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
222
223         * grand.c (g_rand_new): Use /dev/urandom, as it doesn't block,
224         which /dev/random might do. Do not XOR the time, when getting the
225         seed form /dev/urandom, as this is good itself. Prevent the
226         initial seed from being zero, which causes the PRNG to produce
227         only zeros. Hints from Colin Plumb <colin@pgp.com>.
228
229 1999-08-17  Tor Lillqvist  <tml@iki.fi>
230
231         * glib.h (g_trash_stack_push): Add a cast.
232
233         * gslist.c
234         * glist.c: Make the inline functions static inline, and add
235         separate extern wrappers. Not all compilers produce callable entry
236         points for inline functions, even if gcc does.
237
238 Sun Aug 15 02:47:14 1999  Tim Janik  <timj@gtk.org>
239
240         * glib.h (g_trash_stack_pop): eliminate memset() call, since string.h
241         has not neccessarily been included prior to glib.h.
242
243 Mon Aug  2 21:03:10 1999  Tim Janik  <timj@gtk.org>
244
245         * configure.in: added --enable-msg-prefix option.
246
247         * gmessages.c (g_log_default_handler): feature "prg_name (pid:%u): "
248         if --enable-msg-prefix was selected (use "(process:%u): " if
249         g_get_prgname () returns NULL, along the lines of g_on_error_query).
250
251 1999-08-03  Tor Lillqvist  <tml@iki.fi>
252
253         * glib.h
254         * gstrfuncs.c
255         * tests/strfunc-test.c: Rename g_strccpy to g_strcompress and
256         g_strecpy to g_strescape per Tim Janik's suggestion. Dropped the
257         destination parameter, always g_malloc a new string.  Fix bug in
258         g_strcompress, octal digits were gobbled up without limit, should
259         use max three.
260
261         Sources that use g_strescape must have ifdefs to be compilable
262         both with GLib 1.2 and 1.3.
263
264 Sat Jul 31 17:52:03 PDT 1999 Manish Singh <yosh@gimp.org>
265
266         * glib.h
267         * gstrfuncs.c: the #define for g_strescape interfered with the
268         compilation of the function, so just remove the function and
269         note that it's deprecated in the header
270
271 1999-08-01  Tor Lillqvist  <tml@iki.fi>
272
273         * gstrfuncs.c (g_strccpy, g_strecpy): New functions.
274
275         * glib.h: Declare and document them. Define the deprecated
276         g_strescape as a macro that calls g_strecpy.
277
278         * tests/strfunc-test.c (main): Test them.
279
280         * makefile.{cygwin,msc}.in
281         * tests/makefile.{cygwin,msc}.in: Remove gstack and its test
282         program.
283
284         * glib.def: Additions and removals.
285
286         * README.win32: Improve gcc build instructions.
287
288         * build-dll: Also build import library for MSVC.
289
290 Sat Jul 24 20:11:35 1999  Tim Janik  <timj@gtk.org>
291
292         * merged GLib 1.3.0 with glib-1.2.3 from Fri Jul 16 22:18:36.
293         * incorporated proposed cleanups from gtk-devel-list.
294
295         * bumped version number to GLib-1.3.1
296
297         * glib.h:
298         * gqueue.c:
299         * gstring.c:
300         * glist.c:
301         removed string tokenisation (we got g_strsplit() and g_strjoin()
302         already) and readline functions.
303         s/g_list_delete/g_list_delete_link.
304         implemented g_slist_delete_link.
305         removed notion of g_ATEXIT() macro in glib.h, this is an *internal*
306         macro, g_atexit() is provided for public consumption.
307         added GTrashStack inline utility functions.
308         reimplement double eneded queues.
309         removed GStack implementation, people can use a queue or a (singly)
310         linked list for this task.
311         deprecated g_strescape(), we need the SunOS variants here.
312
313         * gdate.c: added DEBUG_MSG() macro to wrap old messages.
314         
315         * *.*: CVS merges.
316
317         * upgrade to libtool 1.3.3.
318
319 1999-07-21  Tor Lillqvist  <tml@iki.fi>
320
321         Win32: With the latest gcc (2.95, pre-release), we can have binary
322         compatibility with MSVC by using the switch -fnative-struct. No
323         longer build DLLs with .gcc in the name when using gcc.
324
325         * README.win32: Renew gcc build instructions.
326
327         * build-dll: Comments change, handle also .a files.
328
329         * makefile.cygwin.in
330         * tests/makefile.cygwin.in: Remove .gcc from DLL name.
331         
332 1999-07-13  Tor Lillqvist  <tml@iki.fi>
333
334         * README.win32: Correct URL for mingw runtime sources.
335
336         * build-dll: Combine commands with &&.
337
338         * glib.h: Map also rmdir() and hypot() for MSVCRT library.
339
340         * makefile.cygwin.in
341         * tests/makefile.cygwin.in: New DLL naming style. GCC-compiled DLLs are
342         now called *.gcc.dll, to avoid binary incompatibilities with
343         MSVC-compiled versions.
344
345         * makefile.msc.in: Cosmetics.
346
347 1999-07-07  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
348
349         * configure.in: Test for pthread_join rather than for
350         pthread_create to determine the right thread-lib. Makes it work on
351         mips-sgi-irix6.5. Hitn from to Jari Vuoksenranta
352         <javu@piano.ux.phys.jyu.fi>.
353
354 1999-07-02  Tor Lillqvist  <tml@iki.fi>
355
356         * README.win32: Note about need to fix another bug in the mingw32
357         headers.
358
359         * makefile.msc.in: Debugging turned on via an nmake variable,
360         no need to edit the makefile.
361
362 1999-07-01  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
363
364         * configure.in, acconfig.h, gutils.c: Added a g_memmove
365         replacement for platforms without memmove, where bcopy can't
366         handle overlapping copies and the corresponding checks, which is
367         taken form the PERL Configure routine.
368
369         * glib.h: Updated the commentary about g_memmove to be right and
370         more GLib-like.
371         
372         * configure.in: Removed test for rand_r, as it isn't used anymore.
373
374 1999-06-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
375
376         * glib.h, grand.c: Finally removed the g_random_normal and
377         g_rand_normal functions.
378
379 1999-06-28  Tor Lillqvist  <tml@iki.fi>
380
381         * glib.def: Add missing export of g_strncasecmp.
382
383 1999-06-21  Jose Mercado  <jmercado@mit.edu>
384
385         * glib.spec.in: Changed version number (1.1->1.3) in files section
386         to allow rpm to build packages again.
387
388 1999-06-21  Tor Lillqvist  <tml@iki.fi>
389
390         * README.win32: Update the pthreads snapshot version we want.
391         Advice how to hand-expand the makefile.*.in files.
392
393         * config.h.win32.in: Define values needed by Sebastian Wilhelmi's
394         new thread stuff.
395
396         * glib.def: Add new functions.
397
398         * glibconfig.h.win32.in: Update the pthreads snapshot version.
399         Fix typo.
400
401         * gthread.c: Include config.h, guard inclusion of unistd.h.  When
402         using gcc on Win32, g_thread_functions_for_glib_use must be marked
403         for export here, too.
404
405         * gtimer.c: Implement g_usleep on native Win32 using Sleep (which
406         only has millisecond granularity, though).
407         
408         * makefile.cygwin.in
409         * makefile.msc.in: Update pthreads snapshot version. File
410         name changes. Remove testgthread.
411
412         * tests/makefile.cygwin.in
413         * tests/makefile.msc.in: Add thread-test. Link with gthread lib.
414
415 1999-06-18  Jeff Garzik  <jgarzik@pobox.com>
416
417         * tests/Makefile.am:  Re-order tests in alpha order.
418
419 1999-06-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
420
421         * configure.in: Changed test for pthread_attr_setstacksize from
422         AC_TRY_COMPILE to AC_TRY_LINK.
423
424 1999-06-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
425
426         * configure.in, acglib.m4, acconfig.h, glib.h, gthread.c:
427         Completed the thread support in GLib. Thread creation,
428         prioritizing threads, yielding, joining threads as well as
429         reader/writer locks and recursive mutexes are now in place. Please
430         test heavily on your platform. It is so far tested on
431         Linux/i386/pthreads, Solaris/Sparc/pthreads and
432         Solaris/Sparc/solaristhreads.
433
434         * gtimer.c, glib.h: Implement g_usleep (gulong microseconds) for
435         thread safe sleeping. (sleep() is not MT-safe at all!)
436
437         * gutils.c: Avoid compiler warning.
438
439         * tests/Makefile.am, tests/thread-test.c: New program to test some
440         aspects of the thread implementation.
441
442         * gthread.c, Makefile.am: Renamed from gmutex.c to reflect the
443         change of content.
444
445         * configure.in: Purged all appearances of nspr. 
446
447 Wed Jun  2 11:42:46 PDT 1999 Manish Singh <yosh@gimp.org>
448
449         * acinclude.m4
450         * config.guess
451         * config.status
452         * ltconfig
453         * ltmain.sh: upgrade to libtool 1.3.2 (BeOS changes merged)
454
455 1999-05-29  Tor Lillqvist  <tml@iki.fi>
456
457         * gstrfuncs.c (g_strescape): Backslashify also '"' characters.
458
459         * glib.h: Document g_strescape.
460
461 1999-05-12  Tor Lillqvist  <tml@iki.fi>
462
463         * glib.h (Win32): Map fileno to _fileno for mingw32. Map fstat to
464         _fstat.
465
466         * README.win32: Advice also to remove -lmoldname in the
467         patch to the egcs-1.1.2 spec file.
468
469 Wed May 12 00:23:55 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
470
471         * gmodule/Makefile.am: Another small fix.
472
473 1999-05-08  Tor Lillqvist  <tml@iki.fi>
474
475         * Makefile.am tests/Makefile.am: Correct rules for making the
476         win32-related files that are made from corresponding .in files.
477         Is there a cleaner way than explicitly writing rules that invoke
478         config.status?
479
480 Fri Jul 16 22:18:36 PDT 1999 Manish Singh <yosh@gimp.org>
481
482         * ltconfig
483         * ltmain.sh: upgrade to libtool 1.3.3
484
485 1999-06-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
486
487         * gdate.c, gstrfuncs.c, gstring.c: Fixed the use of the
488         is..... and to..... macros, which take unsigned chars, not chars!
489         Thanks to Morten Welinder <terra@diku.dk> for pointing this out.
490
491 Thu Jun  3 16:30:31 PDT 1999 Manish Singh <yosh@gimp.org>
492
493         * gerror.c (g_on_error_query): check isatty() before querying so
494         we don't loop endlessly
495
496 Sat May 29 11:16:29 PDT 1999 Manish Singh <yosh@gimp.org>
497
498         * acinclude.m4
499         * config.guess
500         * config.status
501         * ltconfig
502         * ltmain.sh: upgrade to libtool 1.3.2
503
504 1999-05-26  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
505
506         * gmain.c: provide a poll prototype for SunOS, as they do not do
507         it self. Hint from Christian Parg <cparg@fs-design.de>.
508
509 Tue May 25 12:23:07 1999  Owen Taylor  <otaylor@redhat.com>
510
511         * gstrfuncs.c (g_strchug): Use g_memmove() not memmove().
512         (Reported by Charles Levert <charles@comm.polymtl.ca>)
513
514 Mon May 10 22:03:52 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
515
516         * Released GLib 1.2.3
517
518 1999-05-08  Tor Lillqvist  <tml@iki.fi>
519
520         * Makefile.am tests/Makefile.am: Correct rules for making the
521         win32-related files that are made from corresponding .in files.
522         Is there a cleaner way than explicitly writing rules that invoke
523         config.status?
524         
525 Sat May  1 10:18:01 PDT 1999 Manish Singh <yosh@gimp.org>
526
527         * acinclude.m4
528         * config.guess
529         * config.status
530         * ltconfig
531         * ltmain.sh: upgrade to libtool 1.3
532
533 1999-04-30  Tor Lillqvist  <tml@iki.fi>
534
535         * Makefile.am: Don't distribute glibconfig.h.win32.in, but
536         glibconfig.h.win32. Generate it when making a dist. Also generate
537         makefile.msc and config.h.win32 from corresponding .in files when
538         making dist.
539
540         * configure.in: Also substitute @GLIB_INTERFACE_AGE@ and
541         @GLIB_BINARY_AGE@ (needed in config.h.win32).
542         
543         * glibconfig.h.win32.in: Use static mutex structure and initial
544         value corresponding to the 1999-04-07 snapshot of pthreads-win32.
545
546         * tests/Makefile.am: Distribute makefile.msc. Generate it when
547         making dist.
548
549         * tests/makefile.msc.in: New file.
550
551         * tests/node-test.c: Include <stdlib.h> for exit().
552
553 Thu Apr 29 02:16:36 1999  Tim Janik  <timj@gtk.org>
554
555         * gstrfuncs.c: minor code cleanups.
556
557 Tue Apr 27 13:11:29 1999  Owen Taylor  <otaylor@redhat.com>
558
559         * gmain.c (g_main_poll): Mask out ERR HUP and NVAL from
560         the events field so we don't give IRIX fits.
561
562 Tue Apr 20 08:42:22 1999  Tim Janik  <timj@gtk.org>
563
564         * gscanner.c (g_scanner_unexp_token): behave conservative with
565         G_TOKEN_IDENTIFIER_NULL and always assume scanner->value.v_string
566         to be "null" in that case.
567
568 1999-04-20  Havoc Pennington  <hp@pobox.com>
569
570         * gutils.c (g_vsnprintf):  When using the vsnprintf()
571         implementation, '\0'-terminate the resulting string
572         and return its length rather than -1.
573
574 Mon Apr 19 13:42:21 1999  Owen Taylor  <otaylor@redhat.com>
575
576         * gmain.c (g_main_iterate): Added missing
577         #ifdef G_THREADS_ENABLED. (I never liked G_THREADS_ENABLED in
578         the first place!)
579
580 1999-04-18  Havoc Pennington  <hp@pobox.com>
581
582         * gutils.c (g_snprintf): When using the vsnprintf()
583         implementation, '\0'-terminate the resulting string
584         and return its length rather than -1.
585
586 Fri Apr 16 06:52:07 1999  Tim Janik  <timj@gtk.org>
587
588         * gscanner.c (g_scanner_unexp_token): feature G_TOKEN_EOF as a valid
589         expected token as well, so we get "- expected end of file" instead of
590         "- expected (unknown) token <0>".
591
592 Tue Apr 13 16:16:14 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
593
594         * Released GLib 1.2.2
595
596 1999-04-12  Elliot Lee  <sopwith@mh69.mh.cuc.edu>
597
598         * g_strchug(): s/strcpy/memmove/
599
600 1999-04-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
601
602         * configure.in: Adjusted the test for an unimplemented
603         getpwuid_r. Info from Michael Pruett <mikep@ugcs.caltech.edu>.
604
605 Sun Apr 11 15:07:34 1999  Tim Janik  <timj@gtk.org>
606
607         * configure.in: bumped versin number to GLib 1.2.2, interface 2,
608         binary 2.
609         
610         * NEWS: updates.
611
612 Sun Apr 11 14:37:06 1999  Tim Janik  <timj@gtk.org>
613
614         * gstrfuncs.c (g_strcasecmp): always check for s1, s2 != NULL.
615
616 Sat Apr 10 19:30:50 1999  Tim Janik  <timj@gtk.org>
617
618         * glib.h: removed braces around inline strings for the G_GNUC_FUNCTION
619         and G_GNUC_PRETTY_FUNCTION macros, so the macros can be used for compile
620         time string concatenation.
621
622 Thu Apr  8 19:53:19 1999  Owen Taylor  <otaylor@redhat.com>
623
624         * gmain.c (g_main_iterate): Check for two threads
625         calling g_main_iterate at once.
626
627         * gmain.c: If the set of poll file descriptors changes
628         during a call to poll(), abort that call, and start
629         a new poll. My test program still segfaults
630         obscurely on glibc 2.0 (in read()!!!), but now it works on
631         glibc 2.1, so I'll blame something else for the other segfault.
632
633 1999-03-31  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
634
635         * configure.in: Fixed slight bug, that made configure hang on some
636         systems. Please do not merge this into 1.3 branch. It's taken care
637         of differently there. Info from J. Rhett Aultman
638         <cuplan@alley.gator.net>
639         
640 Wed Mar 24 21:23:47 CST 1999 Shawn T. Amundson <amundson@gtk.org>
641
642         * Released GLib 1.2.1
643
644         * README:
645           INSTALL: 
646           NEWS: 
647           sanity_check: updated
648
649         * glibconfig.h.win32.in:
650           Makefile.am:
651           docs/glib-config.1.in:
652           docs/Makefile.am: Added files used to generate new files.
653
654         * glibconfig.h.win32:
655           docs/glib-config.1: Removed, now generated.
656
657         * configure.in: Added to output now-generated files.
658         
659 Tue Mar 23 13:43:39 PST 1999 Manish Singh <yosh@gimp.org>
660
661         * giounix.c: add user_data param to check and prepare functions
662
663 Mon Mar 22 03:54:43 1999  Tim Janik  <timj@gtk.org>
664
665         * glib.h:
666         * gmain.c: add user_data to the GSource ->check and ->prepare functions,
667         so it can be used to e.g. pass a GPollFd.
668         (g_main_poll): only add poll records with an events mask != 0 to the
669         fd_array. don't even bother calling poll_func() if fds=timeout=0.
670         added debugging printouts around poll_func() invokation that can be
671         enabled with #define G_MAIN_POLL_DEBUG.
672
673 Fri Mar 19 16:29:50 PST 1999 Manish Singh <yosh@gimp.org>
674
675         * acinclude.m4
676         * config.guess
677         * config.sub
678         * ltconfig
679         * ltmain.sh: upgrade to libtool 1.2f
680
681         * autogen.sh: libtool is not required to autogen glib
682
683         * acconfig.h: remove WITH_SYMBOL_UNDERSCORE (not explictly
684         needed)
685
686 1999-03-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
687
688         * gmem.c: Fixed another stupid fault of mine: Did
689         s/g_static_/g_private_/g
690
691 Wed Mar 17 03:17:42 1999  Tim Janik  <timj@gtk.org>
692         
693         * configure.in bumped versin number to GLib 1.2.1, interface 1,
694         binary 1.
695         
696         * NEWS: updates.
697
698         * glib.h: added GLIB_CHECK_VERSION() macro similar to
699         GTK_CHECK_VERSION().
700
701 Sun Mar 14 17:50:35 1999  Tim Janik  <timj@gtk.org>
702
703         * gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements
704         to g_return_if_fail().
705         (g_mem_profile): 
706         (g_mem_chunk_print): 
707         (g_mem_chunk_info): removed some extraneous "\n"s at the end of the log
708         messages.
709
710         * gtimer.c (g_timer_*): changed a bunch of g_assert() statements
711         to g_return_if_fail().
712         * grel.c (g_*): changed a bunch of g_assert() statements to
713         g_return_if_fail() and added some extra ones to check relation != NULL.
714
715 1999-03-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
716
717         * configure.in: Also accept _Pctime_r instead of ctime_r, while
718         seraching for the right `_REENTRANT' flag. This is for Digital
719         UNIX 4.0d. Thanks to Sascha Brawer <sb@adasys.ch>.
720
721 Tue Mar  9 23:25:50 1999  Tim Janik  <timj@gtk.org>
722
723         * configure.in: check for working realloc (NULL,).
724         * gmem.c (g_realloc): use malloc() for initial allocation on systems
725         where realloc(NULL,) will not work (this is the case on SunOS, reported
726         by Tom Geiger).
727
728 Mon Mar  8 07:42:08 1999  Tim Janik  <timj@gtk.org>
729
730         * ghook.c (g_hook_unref): when !hook_list->is_setup, wrap the
731         flag around the call to g_hook_free() to avoid spurious
732         warnings (happens during destruction phase).
733
734 1999-03-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
735
736         * glibconfig.h.win32, config.h.win32: Moved G_THREADS_IMPL_POSIX
737         from config.h.win32 to glibconfig.h.win32
738
739         * acconfig.h, configure.in, config.h.win32: Added test for DCE
740         versions of mutex_trylock and cond_timedwait. The win32 versions
741         are posix, aren't they?
742
743 1999-03-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
744
745         * gmem.c: Fixed a stupid cut'n'paste error of mine. Thanks to
746         Friedrich Dominicus <Friedrich.Dominicus@inka.de>
747
748 1999-03-01  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
749
750         * gutils.c (g_get_any_init): Fixed yet another bloody
751         implementation of getpwuid_r on AIX. Thanks to Olaf Dietsche
752         <olaf.dietsche+list.gtk@netcologne.de>. I would like a configure
753         test better than that, but have no idea, how to do that easily.
754
755 Sun Feb 21 22:11:51 CST 1999  Shawn T. Amundson <amundson@gtk.org>
756
757         * Released GLib 1.2.0
758
759         * AUTHORS: updated
760
761 Wed Feb 24 00:08:42 CST 1999 Shawn T. Amundson <amundson@gtk.org>
762
763         * *.[ch]: inserted additional note to look for ChangeLog and
764           AUTHORS file for a log of modifications.
765
766 Sun Feb 21 14:01:00 1999  Dr Mike <drmike@redhat.com>
767
768         * Made specfile generated, tweaked slightly
769         
770 Sat May  8 06:00:17 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
771
772         * configure.in
773           gmodule/Makefile.am
774           gthread/Makefile.am: Better testing reveals better
775           methods.  Fixes for BeOS.
776
777 Sat May  8 01:52:29 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
778
779         * configure.in
780           gerror.c
781           gmain.c
782           gstrfuncs.c
783           gutils.c
784           ltconfig
785           ltmain.sh
786           gmodule/Makefile.am
787           gmodule/gmodule.c
788           gmodule/gmoduleconf.h.in
789           gmodule/gmodule-beos.c
790           gthread/Makefile.am: Port to BeOS by myself and Richard Offer.
791
792 1999-05-06  Tor Lillqvist  <tml@iki.fi>
793
794         * makefile.msc.in makefile.cygwin.in glibconfig.h.win32.in
795         config.h.win32.in tests/makefile.msc.in tests/makefile.cygwin.in:
796         New files, used to generate corresponding non-.in files when
797         making a dist. This is just so the version numbers will be kept in
798         synch automatically.
799
800         * configure.in: Also substitute @GLIB_MAJOR_VERSION@,
801         @GLIB_MINOR_VERSION@, and @GLIB_INTERFACE_AGE@.
802         
803         * Makefile.am tests/Makefile.am: Also distribute makefile.cygwin.
804         
805         * gerror.c (g_on_error_query): On Win32, put up a MessageBox and
806         then exit.
807
808         * glib.def: Add a couple of functions.
809         
810 Sat May  1 10:26:20 PDT 1999 Manish Singh <yosh@gimp.org>
811
812         * acinclude.m4
813         * config.guess
814         * config.status
815         * ltconfig
816         * ltmain.sh: upgrade to libtool 1.3
817
818 1999-04-25  Tor Lillqvist  <tml@iki.fi>
819
820         * README.win32: More editing.
821         * build-dll: Use gcc, not ld to link.
822         * glib.h: On native Win32 use _unlink().
823         * gscanner.c: Use corrent NATIVE_WIN32 feature test macro,
824         not _MSC_VER.
825         * gstring.c: Include <io.h> on Win32 for _read prototype.
826         * gutils.c: Remove old IO channel code (was in #if 0).
827         * makefile.cygwin: Don't need to link with kernel32 and msvcrt
828         explicitly, they are included anyway.
829
830 1999-04-24  Tor Lillqvist  <tml@iki.fi>
831
832         Support added for building using a GNU toolchain on Win32,
833         i.e. gcc -mno-cygwin on cygwin (a.k.a. mingw32, using egcs-1.1.2).
834
835         * README.win32: Updated.
836         * build-dll makefile.cygwin tests/makefile.cygwin: New files.
837         * glib.h glib.def glibconfig.h.win32: Slight updates. 
838         * gmain.c: No need to include <fcntl.h> and <io.h> on Win32.
839         * gmain.c gutils.c testglib.c tests/string-test.c: Test for
840         NATIVE_WIN32, not _MSC_VER.
841         * gmutex.c: Must declare g_thread_functions_for_glib_use as
842         exported (using the GUTILS_C_VAR macro).
843         * gutils.c gmodule/libgplugin_[ab].c: LibMain not needed.
844         * gmodule/gmoduleconf.h.win32: Need underscore with gcc.
845         * gthread/gthread.c: With gcc on Win32, must use memcpy to assign
846         value of g_thread_functions_for_glib_use (?).
847         * makefile.msc tests/makefile.msc: Cosmetics.
848
849 Fri Apr 23 14:29:25 BST 1999  Tony Gale <gale@gtk.org>
850
851         * glib.h: Fix typo in g_string_ncasecmp macro (by me).
852           Add b_string_strncasecmp macro.
853
854 1999-04-22  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
855
856         * gutils.c (g_get_any_init): use sysconf (_SC_GETPW_R_SIZE_MAX) as
857         the new initinal bufsize for getpwuid_r on systems, that support
858         this. Hint from Holger Duerer <H.Duerer@zait.uni-bremen.de>.
859
860 Sat Apr 17 20:55:13 BST 1999  Tony Gale <gale@gtk.org>
861
862         * glib.h, gstring.c: Add new g_string functions for reading
863           from file/socket descriptors, and tokenising strings.
864
865           Added various g_string macros.
866
867 Tue Apr 13 23:28:32 1999  Tor Lillqvist  <tml@iki.fi>
868
869         * README.win32: Mention the tests directory.
870
871         * glib.def: Add the functions from grand.c.
872
873         * glibconfig.h.win32: Add unsigned max values, and the format
874         strings.
875
876         * makefile.msc: Add grand.
877
878         * tests/{date-test,node-test}.c: Include <stdlib.h> for exit().
879
880         * tests/makefile.msc: New file.
881
882 1999-04-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
883
884         * glib.h: Moved struct declaration up. Style fixes.
885
886         * grand.c: Style fixes. Only try to open /dev/random once.
887
888         * tests/rand-test.c (main): New tests; Slight bug fix. 
889
890 1999-04-09  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
891
892         * grand.c, tests/rand-test.c: New files to implement the Mersenne
893         Twister Pseudo Random Number Generator.
894
895         * glib.h, AUTHORS, Makefile.am, tests/Makefile.am: Changed
896         accordingly.
897
898 Thu Apr  8 21:12:30 CDT 1999 Shawn T. Amundson <amundson@gtk.org>
899
900         * Released GLib 1.3.0
901
902 1999-03-30  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
903
904         * configure.in: Added a check for the right format to printf and
905         scanf long longs. It is %qi instead of %lli on FreeBSD for
906         whatever reason.
907
908 1999-03-28  Raja R Harinath  <harinath@cs.umn.edu>
909
910         * Makefile.am (glibconfig.h): Make sure `glibconfig.h' exists
911         after the rule is fired.
912         (install-exec-local): Install glibconfig.h only if the contents
913         are different from the currently installed glibconfig.h.
914
915 1999-03-26  Raja R Harinath  <harinath@cs.umn.edu>
916
917         * Makefile.am (configexecincludedir): Rename from 
918         configincludedir so that glibconfig.h will be installed 
919         as part of `make install-exec'. 
920
921 Thu Mar 25 22:45:47 1999  Tor Lillqvist  <tml@iki.fi>
922
923         * config.h.win32: Update version numbers.
924
925         * glibconfig.h.win32: Update version numbers and pthreads-win32-
926         related magic values.
927
928         * README.win32: Some improvements.
929
930         * makefile.msc: Add gqueue and gstack. Correct version number.
931
932 Fri Mar 19 16:29:50 PST 1999 Manish Singh <yosh@gimp.org>
933
934         * acinclude.m4
935         * config.guess
936         * config.sub
937         * ltconfig
938         * ltmain.sh: upgrade to libtool 1.2f
939
940         * autogen.sh: libtool is not required to autogen glib
941
942         * acconfig.h: remove WITH_SYMBOL_UNDERSCORE (not explictly
943         needed)
944
945 1999-03-18  Jeff Garzik  <jgarzik@pobox.com>
946
947         * glib.def: Add new g_list, g_stack, g_queue functions.
948
949 1999-03-18  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
950
951         * configure.in: added new AC_SUBST(GTHREAD_COMPILE_IMPL_DEFINES)
952         to hold various defines to get the right thread implementation on
953         different platforms. Also look in -ldce for pthread_create. Should
954         make it work on HP-UX 10.x. Information from "D. Emilio Grimaldo
955         Tunon" <emilio_tunon@nl.compuware.com>.
956
957 1999-03-17  Jeff Garzik  <jgarzik@pobox.com>
958
959         * gstack.c, gqueue.c:
960         Add copyright, clean up code a bit.
961
962 1999-03-17  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
963
964         * configure.in: Added missing values for G_MAXU(SHORT|INT|LONG) on
965         platforms with only /usr/include/values.h.
966
967         * acconfig.h: Removed unnecessary macros.
968
969         * glibconfig.h.win32, config.h.win32: Moved G_THREADS_IMPL_POSIX
970         from config.h.win32 to glibconfig.h.win32. Taken from glib 1.2
971         branch.
972
973         * configure.in: Also accept _Pctime_r instead of ctime_r, while
974         seraching for the right `_REENTRANT' flag. This is for Digital
975         UNIX 4.0d. Taken from glib 1.2 branch.
976
977 Wed Mar 17 03:14:56 1999  Tim Janik  <timj@gtk.org>
978
979         * glib.h: added GLIB_CHECK_VERSION() macro similar to
980         GTK_CHECK_VERSION().
981
982 Wed Mar 17 01:46:28 1999  Tim Janik  <timj@gtk.org>
983
984         * merges from glib-1-2:
985         
986 Sun Mar 14 17:50:35 1999  Tim Janik  <timj@gtk.org>
987
988         * gmem.c (g_mem_chunk_*): changed a bunch of g_assert() statements
989         to g_return_if_fail().
990         (g_mem_profile):
991         (g_mem_chunk_print):
992         (g_mem_chunk_info): removed some extraneous "\n"s at the end of the log
993         messages.
994
995         * gtimer.c (g_timer_*): changed a bunch of g_assert() statements
996         to g_return_if_fail().
997         * grel.c (g_*): changed a bunch of g_assert() statements to
998         g_return_if_fail() and added some extra ones to check relation != NULL.
999
1000 Tue Mar  9 23:25:50 1999  Tim Janik  <timj@gtk.org>
1001
1002         * configure.in: check for working realloc (NULL,).
1003         * gmem.c (g_realloc): use malloc() for initial allocation on systems
1004         where realloc(NULL,) will not work (this is the case on SunOS, reported
1005         by Tom Geiger).
1006
1007 Mon Mar  8 07:42:08 1999  Tim Janik  <timj@gtk.org>
1008
1009         * ghook.c (g_hook_unref): when !hook_list->is_setup, wrap the
1010         flag around the call to g_hook_free() to avoid spurious
1011         warnings (happens during destruction phase).
1012
1013 1999-03-02  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1014
1015         * gmem.c: Fixed a stupid cut'n'paste error of mine. Thanks to
1016         Friedrich Dominicus <Friedrich.Dominicus@inka.de>
1017
1018 1999-03-16  Timur Bakeyev  <mc@bat.ru>
1019
1020         * configure.in: Fix problem with pthread_create in libc, as running
1021         "gcc test.c -l " is not legal.
1022
1023 1999-03-16  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1024
1025         * tests/type-test.c: Added a test for the
1026         G_(U)?INT(16|32|64)_FORMAT and G_(MIN|MAX|MAXU)(SHORT|INT|LONG)
1027         macros.
1028
1029         * configure.in: Removed G_(U)?INT8_FORMAT again, as it can't be
1030         used for scanf.
1031
1032         * configure.in: Added the macros G_MAXU(SHORT|INT|LONG). I do not
1033         know how to handle these on platforms with /usr/include/values.h,
1034         but without /usr/include/limits.h. Please someone add this.
1035
1036
1037 1999-03-15  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1038
1039         * configure.in: Added the macros G_(U)?INT(8|16|32|64)_FORMAT to
1040         use for printf and (much more important) scanf format strings for
1041         the corresponding GLib types. 
1042
1043         * glib.h Added G_(U)?(SHORT|INT|LONG)_FORMAT for consistency. It
1044         however makes no sense to also provide G_(FLOAT|DOUBLE)_FORMAT, as
1045         they are different for printf (f for both) and scanf (f for float,
1046         lf for double). Defining G_INT_FORMAT makes sense however, as we
1047         might want to define gint to something different than int someday
1048         in the future. Idea from Sascha Brawer <sb@adasys.ch>.
1049         
1050 1999-03-14  Jeff Garzik  <jgarzik@pobox.com>
1051
1052         * gdate.c:
1053         Commented out debugging output.
1054
1055         * tests/Makefile.am, tests/date-test.c:
1056         Added test of the GDate module, based closely on testgdate.c.
1057
1058         * tests/Makefile.am:
1059         Bugfix - compile tests with @GLIB_DEBUG_FLAGS@.
1060
1061 1999-03-14  Raja R Harinath  <harinath@cs.umn.edu>
1062
1063         * configure.in (glibconfig.h): Remove widechar tests and defines.
1064         (fd_set): Change the grep for `fd_mask' to search for `fd_set'.
1065         * gerror.c (fd_mask): Remove conditional typedef.  It is not used
1066         elsewhere in the file.
1067         * gmain.c (fd_mask): Likewise.
1068
1069 1999-03-12  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1070
1071         * configure.in: Test for posix threads first, then for dce threads.
1072
1073 1999-03-11  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1074
1075         * configure.in: Revamped the thread configure stuff. Now dce
1076         threads (old posix draft) are recogniced. This is necessary,
1077         because dce threads are in fact working quite differently from
1078         posix threads. Also changed the conditions for checking for MT
1079         safe functions a bit, because G_THREADS_IMPL_NONE still have to
1080         compile thread safe. NOTE: Please do not commit my change to
1081         glib-1-2/{acconfig.h,configure.in,config.h.win32} from 1999-03-03,
1082         as the current change will take care of that too.
1083
1084 Tue Mar  9 14:37:32 1999  Jeff Garzik  <jgarzik@pobox.com>
1085
1086         * Makefile.am, glib.h, gstack.c, gqueue.c,
1087           tests/Makefile.am, tests/queue-test.c, tests/stack-test.c:
1088         Added stack, queue ADTs and related tests.
1089
1090         * glib.h, glist.c:
1091         New g_list_delete() function.
1092
1093 Sat Mar  6 11:03:08 1999  Asbjorn Pettersen  <ape@lrdpf.spacetec.no>
1094
1095         * gutils.c (g_get_any_init): add OS/2 changes.
1096         change '\\' in HOME to '/'.
1097
1098 1999-03-03  Josh MacDonald  <jmacd@spin.dsl.pacbell.net>
1099
1100         * glib.def: g_spaced_primes_closest was omitted here, so I
1101         couldn't build Xdelta on Windows.
1102
1103 1999-03-01  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
1104
1105         * gutils.c (g_get_any_init): Fixed yet another bloody
1106         implementation of getpwuid_r on AIX. Thanks to Olaf Dietsche
1107         <olaf.dietsche+list.gtk@netcologne.de>. I would like a configure
1108         test better than that, but have no idea, how to do that easily.
1109
1110 Sat Feb 27 01:18:47 1999  Tim Janik  <timj@gtk.org>
1111
1112         * ChangeLog: moved old ChangeLog to ChangeLog.pre-1-2, and started
1113         new one.
1114
1115         * configure.in: set glib version to 1.3.0.