diff --git a/guile/ChangeLog b/guile/ChangeLog index 2a70e26d..dbb90e0c 100644 --- a/guile/ChangeLog +++ b/guile/ChangeLog @@ -1,3 +1,8 @@ +1998-10-11 Martin Baulig + + * dynamic.c, dynamic_names.c: Removed. + * Makefile.am: No longer create `libgtop.so'. + 1998-07-29 Martin Baulig * dynamic.c, dynamic_names.c: New files. @@ -7,3 +12,4 @@ `$(datadir)/guile/libgtop'; just do a `(use-modules (libgtop libgtop) (libgtop names))' in guile to use them. + diff --git a/guile/Makefile.am b/guile/Makefile.am index 53295379..9e33e223 100644 --- a/guile/Makefile.am +++ b/guile/Makefile.am @@ -2,54 +2,6 @@ LINK = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -o $@ CFLAGS = -Wall -W @CFLAGS@ -sitedir = $(datadir)/guile/site -libgtopmoduledir = $(datadir)/guile/libgtop - -libgtopmodule_LTLIBRARIES = libgtop.la libnames.la - -libgtop_la_SOURCES = dynamic.c - -libnames_la_SOURCES = dynamic_names.c - -libgtop_la_LIBADD = ../sysdeps/guile/guile.lo \ - ../lib/init.lo \ - ../lib/open.lo \ - ../lib/close.lo \ - ../lib/command.lo \ - ../lib/read.lo \ - ../lib/read_data.lo \ - ../lib/write.lo \ - ../lib/lib.lo \ - ../lib/parameter.lo \ - ../lib/sysdeps.lo \ - ../sysdeps/common/error.lo \ - ../sysdeps/common/fsusage.lo \ - ../sysdeps/common/gnuslib.lo \ - ../sysdeps/common/mountlist.lo \ - ../sysdeps/common/xmalloc.lo \ - ../sysdeps/@sysdeps_dir@/close.lo \ - ../sysdeps/@sysdeps_dir@/proclist.lo \ - ../sysdeps/@sysdeps_dir@/sem_limits.lo \ - ../sysdeps/@sysdeps_dir@/cpu.lo \ - ../sysdeps/@sysdeps_dir@/procmem.lo \ - ../sysdeps/@sysdeps_dir@/shm_limits.lo \ - ../sysdeps/@sysdeps_dir@/loadavg.lo \ - ../sysdeps/@sysdeps_dir@/procsegment.lo \ - ../sysdeps/@sysdeps_dir@/siglist.lo \ - ../sysdeps/@sysdeps_dir@/mem.lo \ - ../sysdeps/@sysdeps_dir@/procsignal.lo \ - ../sysdeps/@sysdeps_dir@/swap.lo \ - ../sysdeps/@sysdeps_dir@/msg_limits.lo \ - ../sysdeps/@sysdeps_dir@/procstate.lo \ - ../sysdeps/@sysdeps_dir@/uptime.lo \ - ../sysdeps/@sysdeps_dir@/open.lo \ - ../sysdeps/@sysdeps_dir@/proctime.lo \ - ../sysdeps/@sysdeps_dir@/prockernel.lo \ - ../sysdeps/@sysdeps_dir@/procuid.lo \ - ../sysdeps/@sysdeps_dir@/procmap.lo - -libnames_la_LIBADD = ../sysdeps/guile/names/guile-names.lo - EXTRA_DIST = features.awk CLEANFILES = features.scm diff --git a/guile/dynamic.c b/guile/dynamic.c deleted file mode 100644 index ef623196..00000000 --- a/guile/dynamic.c +++ /dev/null @@ -1,29 +0,0 @@ -/* $Id$ */ - -/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. - This file is part of the Gnome Top Library. - Contributed by Martin Baulig , April 1998. - - The Gnome Top Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public License as - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. - - The Gnome Top Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public - License along with the GNU C Library; see the file COPYING.LIB. If not, - write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. */ - -#include -#include - -void -scm_init_libgtop_libgtop_module (void) -{ - scm_register_module_xxx ("libgtop libgtop", glibtop_boot_guile); -} diff --git a/guile/dynamic_names.c b/guile/dynamic_names.c deleted file mode 100644 index 8f62b6a2..00000000 --- a/guile/dynamic_names.c +++ /dev/null @@ -1,29 +0,0 @@ -/* $Id$ */ - -/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. - This file is part of the Gnome Top Library. - Contributed by Martin Baulig , April 1998. - - The Gnome Top Library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public License as - published by the Free Software Foundation; either version 2 of the - License, or (at your option) any later version. - - The Gnome Top Library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public - License along with the GNU C Library; see the file COPYING.LIB. If not, - write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. */ - -#include -#include - -void -scm_init_libgtop_names_module (void) -{ - scm_register_module_xxx ("libgtop names", glibtop_boot_guile_names); -}