From owner-svn-ports-head@FreeBSD.ORG Thu Apr 30 21:34:52 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD9844ED; Thu, 30 Apr 2015 21:34:52 +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 9C0D41032; Thu, 30 Apr 2015 21:34:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3ULYq6J070682; Thu, 30 Apr 2015 21:34:52 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3ULYqC0070681; Thu, 30 Apr 2015 21:34:52 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201504302134.t3ULYqC0070681@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Thu, 30 Apr 2015 21:34:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385069 - head/archivers/libcabinet X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 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: Thu, 30 Apr 2015 21:34:52 -0000 Author: marino Date: Thu Apr 30 21:34:51 2015 New Revision: 385069 URL: https://svnweb.freebsd.org/changeset/ports/385069 Log: archivers/libcabinet: link with libz For about a week, a new error appeared on this port during linking: undefined reference to deflateEnd@@ZLIB_1.2.8. Portsmon so far has indicated it is only happening on DragonFly so far. Adding -lz during the post-build linking for listcab fixes the issue. Approved by: Blanket Modified: head/archivers/libcabinet/Makefile Modified: head/archivers/libcabinet/Makefile ============================================================================== --- head/archivers/libcabinet/Makefile Thu Apr 30 20:51:40 2015 (r385068) +++ head/archivers/libcabinet/Makefile Thu Apr 30 21:34:51 2015 (r385069) @@ -3,7 +3,7 @@ PORTNAME= libcabinet PORTVERSION= 0.30 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= archivers MASTER_SITES= http://www.bsd-geek.de/FreeBSD/distfiles/ @@ -18,7 +18,7 @@ PROGFILE= ${SRCFILE:S/.cpp$//} MAKE_ENV= WITHOUT_PROFILE=yes __MAKE_CONF=/dev/null SRCCONF=/dev/null post-build: - ${CXX} ${CXXFLAGS} -o ${PROGFILE} ${SRCFILE} -L${WRKSRC} -lcabinet + ${CXX} ${CXXFLAGS} -o ${PROGFILE} ${SRCFILE} -L${WRKSRC} -lcabinet -lz pre-install: ${MKDIR} ${STAGEDIR}${PREFIX}/include/cabinet