From owner-svn-ports-head@freebsd.org Sat Dec 12 23:37:58 2015 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 9D92FA41A98; Sat, 12 Dec 2015 23:37:58 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 6D46E17A2; Sat, 12 Dec 2015 23:37:58 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBCNbvYi088618; Sat, 12 Dec 2015 23:37:57 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBCNbvtc088617; Sat, 12 Dec 2015 23:37:57 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201512122337.tBCNbvtc088617@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sat, 12 Dec 2015 23:37:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403639 - head/news/pan 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: Sat, 12 Dec 2015 23:37:58 -0000 Author: kwm Date: Sat Dec 12 23:37:57 2015 New Revision: 403639 URL: https://svnweb.freebsd.org/changeset/ports/403639 Log: Staticly link to libgcc and libstdc++. This fixes a segmentation fault when trying to run pan on a libc++ based system. PR: 199303 Submitted by: Andrew Modified: head/news/pan/Makefile Modified: head/news/pan/Makefile ============================================================================== --- head/news/pan/Makefile Sat Dec 12 23:25:27 2015 (r403638) +++ head/news/pan/Makefile Sat Dec 12 23:37:57 2015 (r403639) @@ -4,7 +4,7 @@ PORTNAME= pan PORTVERSION= 0.139 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= news gnome MASTER_SITES= http://pan.rebelbase.com/download/releases/${PORTVERSION}/source/ DIST_SUBDIR= gnome2 @@ -22,7 +22,8 @@ USE_GNOME= intlhack USE_GCC= any GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -lgnuregex ${ICONV_LIB} +LDFLAGS+= -static-libgcc -static-libstdc++ -L${LOCALBASE}/lib \ + -lgnuregex ${ICONV_LIB} OPTIONS_DEFINE= GTKSPELL GTK3 OPTIONS_DEFAULT=GTKSPELL