aboutsummaryrefslogtreecommitdiffstats
path: root/net/echoping/files
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1997-04-13 01:17:34 +0800
committerpeter <peter@FreeBSD.org>1997-04-13 01:17:34 +0800
commitcd03f7ad70ef3cb1efbeda016d6551a5d3c02eec (patch)
tree95743c3d61e73c384ba4166d96792d8132bcde92 /net/echoping/files
parent227eb2d4078c97bfac3e9fa3d193ea74b0ad338b (diff)
downloadfreebsd-ports-gnome-cd03f7ad70ef3cb1efbeda016d6551a5d3c02eec.tar.gz
freebsd-ports-gnome-cd03f7ad70ef3cb1efbeda016d6551a5d3c02eec.tar.zst
freebsd-ports-gnome-cd03f7ad70ef3cb1efbeda016d6551a5d3c02eec.zip
echoping is a damn useful tool for checking reachability other than
via icmp status, eg: tcp or udp. It speaks http as well, so it can "ping" a http server or a http proxy cache to make sure it's operating and not wedged. (Nearly all of our system lockups are not detected by icmp pings)
Diffstat (limited to 'net/echoping/files')
-rw-r--r--net/echoping/files/patch-aa25
1 files changed, 25 insertions, 0 deletions
diff --git a/net/echoping/files/patch-aa b/net/echoping/files/patch-aa
new file mode 100644
index 000000000000..6d6c0a5cc468
--- /dev/null
+++ b/net/echoping/files/patch-aa
@@ -0,0 +1,25 @@
+--- Makefile.dist Thu Dec 19 21:58:15 1996
++++ Makefile Sun Apr 13 00:54:03 1997
+@@ -1,5 +1,5 @@
+ # Choose your C compiler
+-CC = gcc
++#CC = gcc
+ #CC = cc
+
+ # Possible options:
+@@ -7,12 +7,12 @@
+ # TTCP : supports the T/TCP protocol (few systems support it)
+ # USE_SIGACTION: uses sigaction instead of signal. Necessary on pure BSD
+ # machines because we need to change the semantic of signals.
+-OPTIONS = -DHTTP -DUSE_SIGACTION
++OPTIONS = -DHTTP -DUSE_SIGACTION -DTTCP
+
+ # Flags for gcc
+-CFLAGS = -c -O3 $(OPTIONS) -Wall
++#CFLAGS = -c -O3 $(OPTIONS) -Wall
+ # Flags for cc
+-#CFLAGS = -c -O $(OPTIONS)
++CFLAGS = -c -O $(OPTIONS)
+
+ # Flags for the linker
+ LD = $(CC)