From owner-svn-ports-all@freebsd.org Tue Oct 16 20:20:37 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 55AFB10E1247; Tue, 16 Oct 2018 20:20:37 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) (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 074217F109; Tue, 16 Oct 2018 20:20:36 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 925A122131; Tue, 16 Oct 2018 16:20:36 -0400 (EDT) Received: from web5 ([10.202.2.215]) by compute4.internal (MEProxy); Tue, 16 Oct 2018 16:20:36 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=lNZjSZoM/DdS6FhrDt8vF/6kX6RVeLMgXvdK4AmNQ hw=; b=iaGjw1R4S5HXH17H9Dl4yp1NnkLNWQw8sb3V8wjB7vKMi02pqyyzpZ3fX PCf75mzVPBtd+HXdMtFIKK6wpz5VlkHAl/qQqDEcnoWKFnA+2lEoDiyvmA1G8xDQ 7uwXvI2HEq75Ple8kc81nCzIpblZCy65RH5CzyuIxMfIC6O+L6AHecjUpRecEtGA t4ue4ZJUTV0kPLVnhLkEj6yN+o+c1FaDH66eNSDYT+SvOoRa6zzHUDlPh697foYE nPuVkNS83afrv85WI+BS3fpu5Uj1lIk1ZqUyG58KZL8h4aBJB8U3mhBuxeRHkFw6 SY5uenhMIDZtcyTgPdV4jhE/2J9+Q== X-ME-Sender: X-ME-Proxy: Received: by mailuser.nyi.internal (Postfix, from userid 99) id F39E69E082; Tue, 16 Oct 2018 16:20:35 -0400 (EDT) Message-Id: <1539721235.3325884.1544335168.58635E44@webmail.messagingengine.com> From: Tobias Kortkamp To: "Sunpoet Po-Chuan Hsieh" , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-cc4e8f33 In-Reply-To: <201810162003.w9GK3kx5009762@repo.freebsd.org> Date: Tue, 16 Oct 2018 22:20:35 +0200 References: <201810162003.w9GK3kx5009762@repo.freebsd.org> Subject: Re: svn commit: r482244 - in head/net-mgmt/ettercap: . files X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 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: Tue, 16 Oct 2018 20:20:37 -0000 On Tue, Oct 16, 2018, at 22:03, Sunpoet Po-Chuan Hsieh wrote: > Author: sunpoet > Date: Tue Oct 16 20:03:46 2018 > New Revision: 482244 > URL: https://svnweb.freebsd.org/changeset/ports/482244 > > Log: > Fix build with OpenSSL 1.1.x > > Obtained from: > https://github.com/LocutusOfBorg/ettercap/commit/f0d63b27c82df2ad5f7ada6310727d841b43fbcc > > https://github.com/LocutusOfBorg/ettercap/commit/def7a62c542241367428223dc460906b0634dcd1 > > Added: > head/net-mgmt/ettercap/files/patch-src-dissectors-ec_ssh.c > (contents, props changed) > head/net-mgmt/ettercap/files/patch-src-ec_sslwrap.c (contents, props > changed) > Modified: > head/net-mgmt/ettercap/Makefile > > Modified: head/net-mgmt/ettercap/Makefile > ============================================================================== > --- head/net-mgmt/ettercap/Makefile Tue Oct 16 20:03:38 2018 (r482243) > +++ head/net-mgmt/ettercap/Makefile Tue Oct 16 20:03:46 2018 (r482244) > @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE > LIB_DEPENDS= libnet.so:net/libnet > > OPTIONS_DEFINE= DESKTOP DOCS GTK2 IPV6 NCURSES PCRE PLUGINS SSL UTF8 > -OPTIONS_DEFAULT=GTK2 NCURSES PCRE PLUGINS SSL UTF8 > +OPTIONS_DEFAULT=NCURSES PCRE PLUGINS SSL UTF8 Why does GTK2 need to be disabled by default to fix the build with OpenSSL 1.1.x?