summaryrefslogtreecommitdiff
path: root/net/slurm/patches
diff options
context:
space:
mode:
authorcube <cube>2003-10-16 12:54:14 +0000
committercube <cube>2003-10-16 12:54:14 +0000
commitd47eba6438a1cba5acf537d7b2b4979c6950aee4 (patch)
tree5ba73f682bfd618d9ae1bca600fbb4d5e48ab292 /net/slurm/patches
parentb5a2452dbca8624f3860a7ac2f15db5b6735cfcb (diff)
downloadpkgsrc-d47eba6438a1cba5acf537d7b2b4979c6950aee4.tar.gz
Update to 0.3.1. Closes PR pkg/23084.
Changes for 0.3.1: * fix 32Bit signed/unsigned bug * improve Linux /proc/net/dev parsing * disable LED (set -DWITH_LED to enable them) * make slurm Gbit-safe (tests with >100MByte/s will be done soon :)) * make -Wall happy on all systems * calculate traffic correctly when using -d option * add Mac OS X support (thanks Jan-Eric Kolbe for providing access!) * print usage information if no interface was given at startup Changes for 0.3.0: * did some profiling and lowered cpu usage of sleep stuff * misc small fixes and documentation updates Changes for 0.3.0-pre1: * theme support * misc small typo fixes and internal changes Changes for 0.2.3: * Solaris interface speed detection code * fix visual overflows in the display when running for long time * prevent the missing 'E' from being overwritten Changes for 0.2.2: * Solaris auto* support * -z option to virtualy reset displayed counters * fix padding problems which lead to speeds like 123.45KB/s/s/s/s
Diffstat (limited to 'net/slurm/patches')
-rw-r--r--net/slurm/patches/patch-aa14
-rw-r--r--net/slurm/patches/patch-ab17
2 files changed, 0 insertions, 31 deletions
diff --git a/net/slurm/patches/patch-aa b/net/slurm/patches/patch-aa
deleted file mode 100644
index afa352be299..00000000000
--- a/net/slurm/patches/patch-aa
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2003/03/04 16:22:06 hubertf Exp $
-
---- Makefile.orig Mon Feb 24 20:33:15 2003
-+++ Makefile
-@@ -1,7 +1,7 @@
- CC= gcc
- VERSION = "0.2.1"
--CFLAGS = -g -O2 -D_HAVE_NCURSES
--LIBS = -lncurses
-+CFLAGS = -g -O2 -D_HAVE_NCURSES -I${LOCALBASE}/include
-+LIBS = -L${LOCALBASE}/lib -Wl,-R${LOCALBASE}/lib -lncurses
- LDFLAGS =
-
- all: slurm-bin
diff --git a/net/slurm/patches/patch-ab b/net/slurm/patches/patch-ab
deleted file mode 100644
index cc5978043e0..00000000000
--- a/net/slurm/patches/patch-ab
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2003/03/04 16:22:06 hubertf Exp $
-
---- slurm.c.orig Mon Feb 24 19:57:27 2003
-+++ slurm.c
-@@ -107,7 +107,11 @@
- #include <time.h>
- #include <ctype.h>
- #include <signal.h>
--#include <curses.h>
-+#ifdef _HAVE_NCURSES
-+# include <ncurses.h>
-+#else
-+# include <curses.h>
-+#endif
- #include <sys/wait.h>
- #include <sys/stat.h>
- #include <sys/ioctl.h>