summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <martin@src.gnome.org>1998-05-20 23:14:55 +0000
committerMartin Baulig <martin@src.gnome.org>1998-05-20 23:14:55 +0000
commitf39948ae54e7d441b24484d0195d6bf8d8dfc1e1 (patch)
treea5a7ba4e0c31273475994aa188cdf4f06115dd4e
parentbb959df4b22ed342efb4d7a6d6745711afb595c0 (diff)
downloadlibgtop-f39948ae54e7d441b24484d0195d6bf8d8dfc1e1.tar.gz
added more detailed description of today's changes.
* NEWS: added more detailed description of today's changes.
-rw-r--r--ChangeLog34
-rw-r--r--NEWS25
2 files changed, 59 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4693e508..f0326d7b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/NEWS b/NEWS
index b9be53b9..28f6bcdb 100644
--- a/NEWS
+++ b/NEWS
@@ -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
===========