From owner-svn-ports-head@FreeBSD.ORG Fri Aug 29 10:26:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 36A01AE2; Fri, 29 Aug 2014 10:26:14 +0000 (UTC) Received: from mailrelay003.isp.belgacom.be (mailrelay003.isp.belgacom.be [195.238.6.53]) by mx1.freebsd.org (Postfix) with ESMTP id 57DE9179B; Fri, 29 Aug 2014 10:26:13 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Au8IAFhUAFRR8m2A/2dsb2JhbABbgw1TTQrHbYdJBAIBgRAXd4QEAQEEOhwhAhALDgYECSUPKh4GExuIKwEIuz4XjxkzB4RMAQSVX4Z8gVyTQoNgOy+CTwEBAQ Received: from 128.109-242-81.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([81.242.109.128]) by relay.skynet.be with ESMTP; 29 Aug 2014 12:26:06 +0200 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.14.9/8.14.9) with ESMTP id s7TAQ4h4010651; Fri, 29 Aug 2014 12:26:05 +0200 (CEST) (envelope-from tijl@FreeBSD.org) Date: Fri, 29 Aug 2014 12:26:04 +0200 From: Tijl Coosemans To: Dmitry Marakasov Subject: Re: svn commit: r366484 - head/deskutils/xfce4-notification-daemon Message-ID: <20140829122604.0200b3fb@kalimero.tijl.coosemans.org> In-Reply-To: <201408290948.s7T9mUX7048672@svn.freebsd.org> References: <201408290948.s7T9mUX7048672@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 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: Fri, 29 Aug 2014 10:26:14 -0000 On Fri, 29 Aug 2014 09:48:30 +0000 (UTC) Dmitry Marakasov wrote: > Author: amdmi3 > Date: Fri Aug 29 09:48:30 2014 > New Revision: 366484 > URL: http://svnweb.freebsd.org/changeset/ports/366484 > QAT: https://qat.redports.org/buildarchive/r366484/ > > Log: > - Fix build by adding -fPIC to cflags > > Approved by: portmgr blanket > > Modified: > head/deskutils/xfce4-notification-daemon/Makefile > > Modified: head/deskutils/xfce4-notification-daemon/Makefile > ============================================================================== > --- head/deskutils/xfce4-notification-daemon/Makefile Fri Aug 29 09:42:06 2014 (r366483) > +++ head/deskutils/xfce4-notification-daemon/Makefile Fri Aug 29 09:48:30 2014 (r366484) > @@ -26,6 +26,7 @@ USES= gmake libtool pkgconfig tar:bzip2 > USE_GNOME= librsvg2 > USE_LDCONFIG= yes > USE_XFCE= configenv libutil libgui > +CFLAGS+= -fPIC Can you check config.log to see if the configure test for -fPIC fails without this change? Adding -fPIC to CFLAGS is a big hammer solution for what is usually a small problem and it causes executables and static libraries to be compiled with -fPIC as well when normally only shared libraries have to be compiled with it.