From owner-svn-ports-all@FreeBSD.ORG Fri Aug 15 22:28:23 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 47A4ED2F; Fri, 15 Aug 2014 22:28:23 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 335C5259F; Fri, 15 Aug 2014 22:28:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7FMSNW8039164; Fri, 15 Aug 2014 22:28:23 GMT (envelope-from adamw@FreeBSD.org) Received: (from adamw@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7FMSNiJ039163; Fri, 15 Aug 2014 22:28:23 GMT (envelope-from adamw@FreeBSD.org) Message-Id: <201408152228.s7FMSNiJ039163@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: adamw set sender to adamw@FreeBSD.org using -f From: Adam Weinberger Date: Fri, 15 Aug 2014 22:28:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r365062 - head/net/tcpdump398/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Aug 2014 22:28:23 -0000 Author: adamw Date: Fri Aug 15 22:28:22 2014 New Revision: 365062 URL: http://svnweb.freebsd.org/changeset/ports/365062 QAT: https://qat.redports.org/buildarchive/r365062/ Log: Fix build on -current. Added: head/net/tcpdump398/files/ head/net/tcpdump398/files/patch-Makefile (contents, props changed) Added: head/net/tcpdump398/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/tcpdump398/files/patch-Makefile Fri Aug 15 22:28:22 2014 (r365062) @@ -0,0 +1,28 @@ +--- Makefile.orig 2014-08-15 18:26:37.000000000 -0400 ++++ Makefile 2014-08-15 18:27:35.000000000 -0400 +@@ -38,7 +38,7 @@ + CFLAGS+= -DHAVE_CONFIG_H + CFLAGS+= -D_U_="__attribute__((unused))" + +-.if ${MK_INET6_SUPPORT} != "no" ++.if empty(MK_INET6_SUPPORT:Mno) + SRCS+= print-ip6.c print-ip6opts.c print-mobility.c print-ripng.c \ + print-icmp6.c print-frag6.c print-rt6.c print-ospf6.c print-dhcp6.c + CFLAGS+= -DINET6 +@@ -49,14 +49,14 @@ + + DPADD= ${LIBL} ${LIBPCAP} + LDADD= -ll -lpcap +-.if ${MK_OPENSSL} != "no" && !defined(RELEASE_CRUNCH) ++.if empty(MK_OPENSSL:Mno) && !defined(RELEASE_CRUNCH) + DPADD+= ${LIBCRYPTO} + LDADD+= -lcrypto + CFLAGS+= -I${DESTDIR}/usr/include/openssl + CFLAGS+= -DHAVE_LIBCRYPTO -DHAVE_RC5_H -DHAVE_CAST_H -DHAVE_OPENSSL_EVP_H + .endif + +-.if ${MK_PF} != "no" ++.if empty(MK_PF:Mno) + SRCS+= print-pflog.c + CFLAGS+= -DHAVE_NET_PFVAR_H + .endif