98e3b66265
New port: poink 1.5 (Nosuid, secure ping like utility). It is uses TCP SYN/RST mechanism to detect RTT. The output is very close to original ping, so it can be used as more secure replacement. PR: ports/37019 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu>
17 lines
323 B
Text
17 lines
323 B
Text
--- Makefile.orig Fri Jul 10 16:10:00 1998
|
|
+++ Makefile
|
|
@@ -1,5 +1,3 @@
|
|
-CC = gcc
|
|
-OPTS = -O3 -Wall
|
|
FILE = poink
|
|
DEST = /bin/ping
|
|
MANPAGE = ping.1
|
|
@@ -8,7 +6,7 @@
|
|
all: $(FILE)
|
|
|
|
$(FILE): $(FILE).c
|
|
- $(CC) $(OPTS) $(FILE).c -o $(FILE)
|
|
+ $(CC) $(CFLAGS) $(FILE).c -o $(FILE)
|
|
|
|
install: all
|
|
cp $(FILE) $(DEST)
|