From owner-svn-ports-all@freebsd.org Sun Dec 18 00:30:31 2016 Return-Path: Delivered-To: svn-ports-all@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 D8C84C71590; Sun, 18 Dec 2016 00:30:31 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from shepard.synsport.com (mail.synsport.com [208.69.230.148]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B07571707; Sun, 18 Dec 2016 00:30:31 +0000 (UTC) (envelope-from freebsd.contact@marino.st) Received: from [127.0.0.1] (ip72-204-83-236.fv.ks.cox.net [72.204.83.236]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by shepard.synsport.com (Postfix) with ESMTP id C259D43BA5; Sat, 17 Dec 2016 18:29:19 -0600 (CST) Subject: Re: svn commit: r428809 - head/irc/ircII To: Adam Weinberger , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201612172230.uBHMUkAo015155@repo.freebsd.org> Reply-To: marino@freebsd.org From: John Marino Message-ID: <03711abb-01fd-274d-2a08-50c76cd162c2@marino.st> Date: Sat, 17 Dec 2016 18:30:28 -0600 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.1.1 MIME-Version: 1.0 In-Reply-To: <201612172230.uBHMUkAo015155@repo.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 161217-0, 12/17/2016), Outbound message X-Antivirus-Status: Clean X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 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: Sun, 18 Dec 2016 00:30:32 -0000 On 12/17/2016 16:30, Adam Weinberger wrote: > Author: adamw > Date: Sat Dec 17 22:30:45 2016 > New Revision: 428809 > URL: https://svnweb.freebsd.org/changeset/ports/428809 > > Log: > Fix build against SSL from ports. The -L${ICONV_PREFIX}/lib prevents > cc from finding the correct libcrypto/libssl, so quick-fix this by > only adding -L${ICONV_PREFIX}/lib if it's something other than /usr/lib. > > Also, use USES=ssl. PORTREVISION bump for the potential ldd change. > > Modified: > head/irc/ircII/Makefile > > Modified: head/irc/ircII/Makefile > ============================================================================== > --- head/irc/ircII/Makefile Sat Dec 17 21:54:49 2016 (r428808) > +++ head/irc/ircII/Makefile Sat Dec 17 22:30:45 2016 (r428809) > @@ -3,6 +3,7 @@ > > PORTNAME= ircii > PORTVERSION= 20151120 > +PORTREVISION= 1 > CATEGORIES= irc ipv6 > MASTER_SITES= http://ircii.warped.com/ > > @@ -23,7 +24,7 @@ IRCBUG_DESC= Install ircII bug-reporting > EMACS_KEYS_DESC=Use emacs meta keys > > EMACS_KEYS_CONFIGURE_WITH= emacs-meta-keys > -OPENSSL_USE= OPENSSL=yes > +OPENSSL_USES= ssl > > .include > > @@ -33,8 +34,10 @@ CONFIGURE_ARGS+= --with-openssl=${OPENSS > CONFIGURE_ARGS+= --without-openssl > .endif > > +.if ${ICONV_PREFIX} != /usr > CPPFLAGS+= -I${ICONV_PREFIX}/include > LDFLAGS+= -L${ICONV_PREFIX}/lib > +.endif > > post-patch: > @${REINPLACE_CMD} -e '/^mandir =/s/@mandir@/$${DESTDIR}&/' \ > I don't think ICONV_PREFIX is a factor. You probably just need: OPENSSL_CPPFLAGS= -I${OPENSSLINC} OPENSSL_LDFLAGS= -L${OPENSSLLIB} Try removing what you added and use these option helpers instead. John --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus