Compare commits
7 Commits
LIBGTOP_0_
...
LIBGTOP_0_
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
688e65fbec | ||
|
|
c1c629eb37 | ||
|
|
5566a5cde2 | ||
|
|
364130c6e1 | ||
|
|
394d4dc226 | ||
|
|
ce80f111df | ||
|
|
abdeeda9c0 |
15
ChangeLog
15
ChangeLog
@@ -1,3 +1,18 @@
|
||||
1999-01-03 Martin Baulig <martin@home-of-linux.org>
|
||||
|
||||
Released LibGTop 0.99.2.
|
||||
|
||||
1999-01-05 Martin Baulig <martin@home-of-linux.org>
|
||||
|
||||
* libgtop.spec: Always build SMP support; binary packages should
|
||||
contain all possible features.
|
||||
|
||||
* configure.in: LibGTop will now require GLIB >= 1.1.12.
|
||||
|
||||
1999-01-05 Martin Baulig <martin@home-of-linux.org>
|
||||
|
||||
* configure.in: Make it abort if the `dc' utility is not installed.
|
||||
|
||||
1999-01-03 Martin Baulig <martin@home-of-linux.org>
|
||||
|
||||
Released LibGTop 0.99.1.
|
||||
|
||||
@@ -8,10 +8,10 @@
|
||||
#
|
||||
LIBGTOP_MAJOR_VERSION=0
|
||||
LIBGTOP_MINOR_VERSION=99
|
||||
LIBGTOP_MICRO_VERSION=1
|
||||
LIBGTOP_MICRO_VERSION=2
|
||||
|
||||
LIBGTOP_INTERFACE_AGE=1
|
||||
LIBGTOP_BINARY_AGE=1
|
||||
LIBGTOP_INTERFACE_AGE=2
|
||||
LIBGTOP_BINARY_AGE=2
|
||||
|
||||
# Increase each time you change the client/server protocol.
|
||||
LIBGTOP_SERVER_VERSION=3
|
||||
|
||||
8
TODO
8
TODO
@@ -1,4 +1,4 @@
|
||||
This is LibGTop 0.30.0,
|
||||
This is LibGTop 0.99.2,
|
||||
|
||||
a feature-freezed version of LibGTop for GNOME 1.0.
|
||||
|
||||
@@ -15,9 +15,7 @@ NOTE: LibGTop is already feature-freezed for GNOME 1.0, so only bug fixes
|
||||
Sysdeps directory 'linux':
|
||||
==========================
|
||||
|
||||
* Add implementation `netload' and `ppp' with modems.
|
||||
|
||||
* Add implementation for `proc_args'.
|
||||
* Add implementation for `ppp' with modems.
|
||||
|
||||
Sysdeps directory 'freebsd':
|
||||
============================
|
||||
@@ -43,6 +41,6 @@ Everything except sysdeps directories:
|
||||
|
||||
* Ready for Gnome 1.0. [ALREADY FEATURE FREEZED]
|
||||
|
||||
December 15, 1998
|
||||
January 5, 1999
|
||||
|
||||
Martin
|
||||
|
||||
12
configure.in
12
configure.in
@@ -6,6 +6,16 @@ AC_INIT(copyright.txt)
|
||||
AM_CONFIG_HEADER(config.h)
|
||||
AC_CANONICAL_SYSTEM
|
||||
|
||||
dnl This is required at several places
|
||||
AC_CHECK_PROG(ac_dc_found, dc, yes, no)
|
||||
if test x$ac_dc_found != xyes ; then
|
||||
AC_MSG_ERROR([
|
||||
*** The "dc" utility was not found on your system.
|
||||
***
|
||||
*** When using RedHat Linux, you need to install the "bc" package.
|
||||
***])
|
||||
fi
|
||||
|
||||
. $srcdir/LIBGTOP-VERSION
|
||||
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
|
||||
|
||||
@@ -143,7 +153,7 @@ AC_SUBST(guile_subdirs)
|
||||
|
||||
AM_PROG_LIBTOOL
|
||||
|
||||
AM_PATH_GLIB(1.1.3,,AC_MSG_ERROR(GLIB >= 1.1.3 is required for LibGTop))
|
||||
AM_PATH_GLIB(1.1.12,,AC_MSG_ERROR(GLIB >= 1.1.12 is required for LibGTop))
|
||||
|
||||
dnl You need to uncomment the following line if you want to use
|
||||
dnl libGTop without Gnome.
|
||||
|
||||
@@ -231,11 +231,11 @@ main (void)
|
||||
fi
|
||||
;;
|
||||
linux*)
|
||||
os_major_version=`uname -r | \
|
||||
os_major_version=`uname -r | sed 's/-pre[[0-9]]*//' | \
|
||||
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
|
||||
os_minor_version=`uname -r | \
|
||||
os_minor_version=`uname -r | sed 's/-pre[[0-9]]*//' | \
|
||||
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
|
||||
os_micro_version=`uname -r | \
|
||||
os_micro_version=`uname -r | sed 's/-pre[[0-9]]*//' | \
|
||||
sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
|
||||
os_version_expr="$os_major_version 65536 * $os_minor_version 256 * + $os_micro_version + p q"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# Note that this is NOT a relocatable package
|
||||
%define ver 0.99.1
|
||||
%define ver 0.99.2
|
||||
%define rel SNAP
|
||||
%define prefix /usr
|
||||
|
||||
@@ -58,9 +58,9 @@ Examples for LibGTop.
|
||||
%build
|
||||
# Needed for snapshot releases.
|
||||
if [ ! -f configure ]; then
|
||||
CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh --prefix=%prefix --without-linux-table --with-libgtop-inodedb --with-libgtop-examples --with-libgtop-guile
|
||||
CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh --prefix=%prefix --without-linux-table --with-libgtop-inodedb --with-libgtop-examples --with-libgtop-guile --with-libgtop-smp
|
||||
else
|
||||
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix --without-linux-table --with-libgtop-inodedb --with-libgtop-examples --with-libgtop-guile
|
||||
CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix --without-linux-table --with-libgtop-inodedb --with-libgtop-examples --with-libgtop-guile --with-libgtop-smp
|
||||
fi
|
||||
|
||||
if [ "$SMP" != "" ]; then
|
||||
@@ -99,7 +99,9 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%defattr(-, root, root)
|
||||
|
||||
%doc RELNOTES-0.25 AUTHORS ChangeLog NEWS README copyright.txt
|
||||
%doc ANNOUNCE ANNOUNCE-0.25 README.LATEST TODO
|
||||
%doc src/inodedb/README.inodedb
|
||||
|
||||
%{prefix}/lib/lib*.so.*
|
||||
%{prefix}/share/*
|
||||
%{prefix}/bin/*
|
||||
|
||||
Reference in New Issue
Block a user