svn commit: r259433 - head/usr.sbin/tcpdump/tcpdump

Pawel Jakub Dawidek pjd at FreeBSD.org
Sun Dec 15 23:05:19 UTC 2013


Author: pjd
Date: Sun Dec 15 23:05:19 2013
New Revision: 259433
URL: http://svnweb.freebsd.org/changeset/base/259433

Log:
  Add Casper support.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/usr.sbin/tcpdump/tcpdump/Makefile

Modified: head/usr.sbin/tcpdump/tcpdump/Makefile
==============================================================================
--- head/usr.sbin/tcpdump/tcpdump/Makefile	Sun Dec 15 23:02:36 2013	(r259432)
+++ head/usr.sbin/tcpdump/tcpdump/Makefile	Sun Dec 15 23:05:19 2013	(r259433)
@@ -162,6 +162,11 @@ CFLAGS+=	-DLBL_ALIGN
 
 DPADD=	${LIBL} ${LIBPCAP}
 LDADD=	-ll -lpcap
+.if ${MK_CASPER} != "no"
+DPADD+=	${LIBCAPSICUM} ${LIBNV}
+LDADD+=	-lcapsicum -lnv
+CFLAGS+=-DHAVE_LIBCAPSICUM
+.endif
 .if ${MK_OPENSSL} != "no" && !defined(RELEASE_CRUNCH)
 DPADD+= ${LIBCRYPTO}
 LDADD+= -lcrypto


More information about the svn-src-all mailing list