summaryrefslogtreecommitdiff
path: root/usr.sbin/traceroute/Makefile
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2004-12-21 12:44:20 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2004-12-21 12:44:20 +0000
commit8340281fb107174cf94783010a31c056a5711f2b (patch)
treed1e14607bf54cb8072d16a6a73a1e387b93c7cbf /usr.sbin/traceroute/Makefile
parentcbbdcac72ab315ad34e8a08b268717475225c4e4 (diff)
downloadsrc-test2-8340281fb107174cf94783010a31c056a5711f2b.tar.gz
src-test2-8340281fb107174cf94783010a31c056a5711f2b.zip
NOIPSEC -> TRACEROUTE_NO_IPSEC
Notes
Notes: svn path=/head/; revision=139125
Diffstat (limited to 'usr.sbin/traceroute/Makefile')
-rw-r--r--usr.sbin/traceroute/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/traceroute/Makefile b/usr.sbin/traceroute/Makefile
index 953c5d471149..02c9b2d8b300 100644
--- a/usr.sbin/traceroute/Makefile
+++ b/usr.sbin/traceroute/Makefile
@@ -16,7 +16,7 @@ CFLAGS+= -DHAVE_SYS_SELECT_H=1 -DHAVE_SYS_SOCKIO_H=1 \
-DHAVE_SYS_SYSCTL_H=1 \
-DHAVE_SETLINEBUF=1 -DHAVE_RAW_OPTIONS=1 \
-DHAVE_SOCKADDR_SA_LEN=1 -DHAVE_ICMP_NEXTMTU=1
-.ifndef (NOIPSEC)
+.if !defined(TRACEROUTE_NO_IPSEC)
CFLAGS+= -DIPSEC
.endif
# RTT Jitter on the internet these days means printing 3 decimal places on
@@ -24,7 +24,7 @@ CFLAGS+= -DIPSEC
# reporting, ie: print a variable precision from 0.001ms through 1000ms
# CFLAGS+= -DSANE_PRECISION
-.ifndef (NOIPSEC)
+.if !defined(TRACEROUTE_NO_IPSEC)
DPADD= ${LIBIPSEC}
LDADD= -lipsec
.endif