From owner-svn-ports-head@freebsd.org Wed Feb 22 20:02:59 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B1B19CE664A; Wed, 22 Feb 2017 20:02:59 +0000 (UTC) (envelope-from rezny@freebsd.org) Received: from mail.modirum.com (mail.modirum.com [31.185.27.10]) (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 785B91765; Wed, 22 Feb 2017 20:02:59 +0000 (UTC) (envelope-from rezny@freebsd.org) Received: by mail.modirum.com with esmtpsa (TLSv1:ECDHE-RSA-AES256-SHA:256) (Exim 4.87 (FreeBSD)) (envelope-from ) id 1cgd7m-0002il-0y; Wed, 22 Feb 2017 20:02:54 +0000 From: Matthew Rezny To: Adam Weinberger Cc: jharris@widomaker.com, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r434630 - in head/www/lynx: . files Date: Wed, 22 Feb 2017 21:02:50 +0100 Message-ID: <1724035.JGxz2HHYse@workstation.reztek> Organization: FreeBSD User-Agent: KMail/4.14.10 (FreeBSD/11.0-STABLE; KDE/4.14.10; amd64; ; ) In-Reply-To: <3AA22105-0A55-4761-95F3-CDAD27157F93@adamw.org> References: <201702221902.v1MJ2pks021893@repo.freebsd.org> <3AA22105-0A55-4761-95F3-CDAD27157F93@adamw.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-SA-Authenticated: Yes X-SA-Exim-Connect-IP: 94.142.238.108 X-SA-Exim-Mail-From: rezny@freebsd.org X-SA-Exim-Scanned: No (on mail.modirum.com); SAEximRunCond expanded to false X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Feb 2017 20:02:59 -0000 On Wednesday 22 February 2017 12:19:53 Adam Weinberger wrote: > > On 22 Feb, 2017, at 12:02, Matthew Rezny wrote: > > > > Author: rezny > > Date: Wed Feb 22 19:02:51 2017 > > New Revision: 434630 > > URL: https://svnweb.freebsd.org/changeset/ports/434630 > > > > Log: > > Fix building with libressl-devel and add missing dependency on libidn. > > > > PR: 216785 > > Approved by: jharris@widomaker.com (maintainer), swills (mentor) > > Differential Revision: https://reviews.freebsd.org/D9672 > > > > Added: > > head/www/lynx/files/patch-WWW_Library_Implementation_HTTP.c (contents, > > props changed)> > > Modified: > > head/www/lynx/Makefile > > > > Modified: head/www/lynx/Makefile > > ========================================================================== > > ==== --- head/www/lynx/Makefile Wed Feb 22 18:56:44 2017 (r434629) > > +++ head/www/lynx/Makefile Wed Feb 22 19:02:51 2017 (r434630) > > @@ -3,7 +3,7 @@ > > > > PORTNAME= lynx > > PORTVERSION= 2.8.8.2 > > -PORTREVISION= 5 > > +PORTREVISION= 6 > > PORTEPOCH= 1 > > CATEGORIES= www ipv6 > > MASTER_SITES= http://invisible-mirror.net/archives/lynx/tarballs/ \ > > @@ -15,6 +15,8 @@ COMMENT= Non-graphical, text-based World > > > > LICENSE= GPLv2 > > > > +LIB_DEPENDS= libidn.so:dns/libidn > > Does libidn really need to be mandatory? lynx-current has it as an option. > Does lynx-2.8 handle idn differently? > > # Adam The addition of libidn was in response to stage-qa's notification while testing the patch for LibreSSL. I did not investigate the possibility of an option, though it does appear one could easily be added.