1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/net/echoping/files/patch-aa
Peter Wemm 358c5baa72 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)
1997-04-12 17:17:34 +00:00

26 lines
671 B
Plaintext

--- 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)