diff options
-rw-r--r-- | ChangeLog | 34 | ||||
-rw-r--r-- | NEWS | 25 |
2 files changed, 59 insertions, 0 deletions
@@ -1,5 +1,39 @@ 1998-05-20 Martin Baulig <baulig@merkur.uni-trier.de> + * NEWS: added more detailed description of + today's changes. + + * examples/third.c: added required check for + 'GLIBGTOP_GUILE_NAMES'. + + * sysdeps/Makefile.am: only build 'names' subdir + when necessary. + + * sysdeps/guile/Makefile.am: only build 'names' + subdir when necessary. + + * acinclude.m4 (AC_LC_SYSDEPS): added + '--enable-libgtop-server' (default=auto), + '--enable-libgtop-names' (default=yes) and + '--enable-libgtop-guile' (default=yes); we + now define 'GLIBTOP_NAMES' here. + + * acconfig.h: added 'GLIBTOP_NAMES' and + 'GLIBTOP_GUILE_NAMES' + + * gtopConf.sh.in: added definition of 'GTOP_GUILE_LIBS' + and 'GTOP_GUILE_INCS': + + 'GTOP_LIBS' and 'GTOP_INCS' now contains everything + that is needed to link with libgtop. + + 'GTOP_GUILE_LIBS' and 'GTOP_GUILE_INCS' now contains + everything that is needed to link with libgtop and its + guile interface. When guile cannot be found on the system + or building of the guile interface was disables, they are + identical to 'GTOP_LIBS' and 'GTOP_INCS' + [FIXME: Should I make them empty in this case?] + * sysdeps/osf1/procuid.c (glibtop_get_proc_uid__r): added implementation for DEC OSF/1. @@ -1,5 +1,30 @@ $Id$ +May/20/1998 +=========== + +* 'gtopConf.sh' now defines 'GTOP_LIBS' and 'GTOP_INCS' in a manner + that they contain everything that is needed to link some program with + libgtop. It will use '-lgtop' only if the server is really needed and + '-lgtop_sysdeps' otherwise; + +* 'gtopConf.sh' additionally defines 'GTOP_GUILE_LIBS' and 'GTOP_GUILE_INCS' + containing everything that is needed to link some program both with + libgtop and its guile interface. They are identically to 'GTOP_LIBS' + and 'GTOP_INCS' if building the guile interface is disabled or guile + cannot be found on the system. + +* 'configure' takes additional arguments '--enable-libgtop-server' and + '--disable-libgtop-server' to use the server even when it's not needed + or to disable it's use where it's needed. + +* 'configure' takes an argument '--without-libgtop-guile' to disable + guile support. + +* 'configure takes an argument '--without-libgtop-names' to remove + '-lgtop_names' (and '-lgtop_guile_names' when we have guile) from + 'GTOP_LIBS'; in this case these libraries are not even built. + May/19/1998 =========== |