Wed Mar 1 05:34:47 2000 Tim Janik <timj@gtk.org>
* gmodule-beos.c (_g_module_symbol): do not return NULL symbols.
* gmodule-os2.c: removed NetBSD specific defines.
(_g_module_self): set an error message for unsupported behaviour.
* gmodule-beos.c: many coding style fixups.
(_g_module_open):
(_g_module_self):
(_g_module_close):
(_g_module_symbol): bunch of memory leaks plugged.
* gmodule-dl.c: make sure the error message returned from dlerror()
is always != NULL, by using a wrapper function fetch_dlerror(). based
on a patch to fix _g_module_symbol() for NetBSD from Scott Presnell
<srp@zgi.com>.
* gmodule-dld.c: minor indentation.
* gmodule-win32.c: minor cleanups.
Sat Feb 19 19:43:29 2000 Tim Janik <timj@gtk.org>
* testgmodule.c (main): added test to check that not yet bound symbols
in shared libraries of the main module are retrievable, from David Gero.
* gmodule-dld.c (_g_module_symbol): applied patch by David Gero
<dgero@nortelnetworks.com>, so lookups for module_self also return
library symbols on AIX.
2000-02-18 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Changed GCC version test to also accept major
versions > 2. Thanks to Ben Gertzfield <che@debian.org> for
pointing this out.
Mon Feb 14 22:32:49 2000 Tim Janik <timj@gtk.org>
* gstring.c: changed g_str_hash() to a 31 bit version based on
a submission by Karl Nelson and hand optimized ad absurdum by
various people ;)
Fri Jan 28 11:37:41 2000 Owen Taylor <otaylor@redhat.com>
Bug #4156 - Changes vaguely modelled after Scott Gifford's patch
* gtimer.c (g_timer_elapsed): Never report negative times -
clip times to 0.
* gmain.c (g_timeout_prepare): Guard against unexpected
clock shifts by never setting a timeout of more than
data->interval msecs.
Wed Jan 26 05:29:11 2000 Tim Janik <timj@gtk.org>
* glib.h:
* gmain.c: s/current_time/dispatch_time/ for the dispatch() handlers.
refetch the current time after invocation of poll() to cover up for
the time spent in that function call.
1999-11-08 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* Make the test for getpwuid_r work on newer AIX versions,
too. Still works on Solaris and Linux. Patch from Craig Rodrigues
<rodrigc@mediaone.net>.
Sun Oct 17 18:11:40 1999 Tim Janik <timj@gtk.org>
* gdataset.c (g_data_set_internal): remove g_dataset_global_lock around
destroy() notification here as well.
Make 'dist-hook' targets, which copy the .spec file into $(distdir), depend upon the
.spec file, so that the .spec file will be regenerated when a previously-compiled tree
is 'dist'd with a new version number.
Fri Sep 17 10:24:45 1999 Tim Janik <timj@gtk.org>
* gmem.c (g_mem_chunk_compute_size) (g_mem_chunk_new): applied patch
from Soeren Sandmann <sandmann@daimi.au.dk>, to force mem chunk's area
sizes to be a multitiple of atom_size, and to eliminate the MAX_MEM_AREA
restriction of 65536 bytes. we also catch cases where users pass an area
size < atom size with a return_if_fail statement now (which is ok,
because previously this lead to memory corruption anyways).
Thu Aug 26 15:09:36 1999 Tim Janik <timj@gtk.org>
* Makefile.am:
* gmodule/Makefile.am:
* gthread/Makefile.am: added --export-dynamic so we can load dynmic
modules, (required, according to the libtool 1.3.3 docu).
Mon Aug 23 18:29:45 1999 Tim Janik <timj@gtk.org>
* configure.in: update version to 1.2.4, interface age 4, binary age 4.
* NEWS: updates.
* Makefile.am: require automake 1.4, build README from README.in and
INSTALL from INSTALL.in in dist-hook.
* README.in:
* INSTALL.in: new files to autogenerate README and INSTALL from.
* COPYING: update to the GNU LESSER GENERAL PUBLIC LICENSE.
1999-06-18 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gdate.c, gstrfuncs.c, gstring.c: Fixed the use of the
is..... and to..... macros, which take unsigned chars, not chars!
Thanks to Morten Welinder <terra@diku.dk> for pointing this out.
1999-05-26 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* gmain.c: provide a poll() prototype for SunOS, as it doesn't
provide one itself. Reported by Christian Parg
<cparg@fs-design.de>.
Tue May 25 12:23:07 1999 Owen Taylor <otaylor@redhat.com>
* gstrfuncs.c (g_strchug): Use g_memmove() not memmove().
(Reported by Charles Levert <charles@comm.polymtl.ca>)
* Makefile.am tests/Makefile.am: Correct rules for making the
win32-related files that are made from corresponding .in files.
Is there a cleaner way than explicitly writing rules that invoke
config.status?
* Makefile.am: Don't distribute glibconfig.h.win32.in, but
glibconfig.h.win32. Generate it when making a dist. Also generate
makefile.msc and config.h.win32 from corresponding .in files when
making dist.
* configure.in: Also substitute @GLIB_INTERFACE_AGE@ and
@GLIB_BINARY_AGE@ (needed in config.h.win32).
* glibconfig.h.win32.in: Use static mutex structure and initial
value corresponding to the 1999-04-07 snapshot of pthreads-win32.
* tests/Makefile.am: Distribute makefile.msc. Generate it when
making dist.
* tests/makefile.msc.in: New file.
* tests/node-test.c: Include <stdlib.h> for exit().
Tue Apr 27 13:11:29 1999 Owen Taylor <otaylor@redhat.com>
* gmain.c (g_main_poll): Mask out ERR HUP and NVAL from
the events field so we don't give IRIX fits.
Fri Apr 23 09:03:48 1999 Tim Janik <timj@gtk.org>
* gmodule.c (g_module_symbol): removed inline variable assignment.
s/CHECK_ERROR/SUPPORT_OR_RETURN/ to make the code more self descriptive.