From owner-svn-ports-all@FreeBSD.ORG Tue Jul 2 04:21:06 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 86BA1332; Tue, 2 Jul 2013 04:21:06 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 79E28132B; Tue, 2 Jul 2013 04:21:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r624L6BJ085692; Tue, 2 Jul 2013 04:21:06 GMT (envelope-from jgh@svn.freebsd.org) Received: (from jgh@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r624L6Jl085691; Tue, 2 Jul 2013 04:21:06 GMT (envelope-from jgh@svn.freebsd.org) Message-Id: <201307020421.r624L6Jl085691@svn.freebsd.org> From: Jason Helfman Date: Tue, 2 Jul 2013 04:21:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r322154 - head/devel/libvirt 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.14 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, 02 Jul 2013 04:21:06 -0000 Author: jgh Date: Tue Jul 2 04:21:05 2013 New Revision: 322154 URL: http://svnweb.freebsd.org/changeset/ports/322154 Log: - -fstack-protector is in CFLAGS, but not in LDFLAGS.  The compiler run inserts references to __stack_chk* symbols, but the linker run later does not resolve them. add -fstack-protector to LDFLAGS bump portrevision Submitted by: mandree@ and others Modified: head/devel/libvirt/Makefile Modified: head/devel/libvirt/Makefile ============================================================================== --- head/devel/libvirt/Makefile Tue Jul 2 02:16:57 2013 (r322153) +++ head/devel/libvirt/Makefile Tue Jul 2 04:21:05 2013 (r322154) @@ -3,6 +3,7 @@ PORTNAME= libvirt PORTVERSION= 1.0.6 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://libvirt.org/sources/ \ ftp://libvirt.org/libvirt/ @@ -37,7 +38,7 @@ CONFIGURE_ARGS= --without-sasl \ #limit to non-stable release x.x.x PORTSCOUT= limit:\d+\.\d+\.\d+$$ -LDFLAGS+= -L${LOCALBASE}/lib +LDFLAGS+= -L${LOCALBASE}/lib -fstack-protector USES= charsetfix pathfix USE_GMAKE= yes