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> _______________________________________________ svn-src-head@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"
