summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoshinobu Inoue <shin@FreeBSD.org>2000-04-01 21:48:07 +0000
committerYoshinobu Inoue <shin@FreeBSD.org>2000-04-01 21:48:07 +0000
commit9bad006e54603dcdbdecf85d8f5c39cb2f7dd508 (patch)
tree8e7e7e9e0655d0fadbc2cc758d2114759139482a
parent0a3eb835c28939d86dde5fd80f9f3b9aab892d5d (diff)
Notes
-rw-r--r--usr.sbin/traceroute/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.sbin/traceroute/Makefile b/usr.sbin/traceroute/Makefile
index 1cb75bfa905a..89ed6b4c4c48 100644
--- a/usr.sbin/traceroute/Makefile
+++ b/usr.sbin/traceroute/Makefile
@@ -4,7 +4,10 @@ PROG= traceroute
MAN8= traceroute.8
BINMODE=4555
CFLAGS+=-DHAVE_SYS_SELECT_H=1 -DHAVE_SETLINEBUF=1 -DHAVE_RAW_OPTIONS=1 \
- -DSTDC_HEADERS=1 -DIPSEC
+ -DSTDC_HEADERS=1
+.ifndef (NOIPSEC)
+CFLAGS+=-DIPSEC
+.endif
# RTT Jitter on the internet these days means printing 3 decimal places on
# > 1000ms times is plain useless. Uncomment this to enable variable precision
# reporting, ie: print a variable precision from 0.001ms through 1000ms
@@ -12,8 +15,10 @@ CFLAGS+=-DHAVE_SYS_SELECT_H=1 -DHAVE_SETLINEBUF=1 -DHAVE_RAW_OPTIONS=1 \
SRCS= version.c traceroute.c
CLEANFILES+= version.c
+.ifndef (NOIPSEC)
DPADD= ${LIBIPSEC}
LDADD= -lipsec
+.endif
TRACEROUTE_DISTDIR?= ${.CURDIR}/../../contrib/traceroute