svn commit: r259678 - head/contrib/tcpdump

Glen Barber gjb at FreeBSD.org
Sat Dec 21 12:45:36 UTC 2013


Author: gjb
Date: Sat Dec 21 12:45:35 2013
New Revision: 259678
URL: http://svnweb.freebsd.org/changeset/base/259678

Log:
  Fix build with WITHOUT_CAPSICUM.
  
  Submitted by:	dt71 gmx com
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/contrib/tcpdump/addrtoname.c

Modified: head/contrib/tcpdump/addrtoname.c
==============================================================================
--- head/contrib/tcpdump/addrtoname.c	Sat Dec 21 11:59:58 2013	(r259677)
+++ head/contrib/tcpdump/addrtoname.c	Sat Dec 21 12:45:35 2013	(r259678)
@@ -33,8 +33,10 @@ static const char rcsid[] _U_ =
 #endif
 
 #ifdef __FreeBSD__
+#ifdef HAVE_LIBCAPSICUM
 #include <libcapsicum.h>
 #include <libcapsicum_dns.h>
+#endif /* HAVE_LIBCAPSICUM */
 #endif
 #include <tcpdump-stdinc.h>
 


More information about the svn-src-all mailing list