From owner-freebsd-gnome@FreeBSD.ORG Sat Dec 7 09:20:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4EF0161C for ; Sat, 7 Dec 2013 09:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 399851FFB for ; Sat, 7 Dec 2013 09:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id rB79K1Ld033671 for ; Sat, 7 Dec 2013 09:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id rB79K10J033670; Sat, 7 Dec 2013 09:20:01 GMT (envelope-from gnats) Date: Sat, 7 Dec 2013 09:20:01 GMT Message-Id: <201312070920.rB79K10J033670@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/184138: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: dfilter service List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Dec 2013 09:20:01 -0000 The following reply was made to PR ports/184138; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184138: commit references a PR Date: Sat, 7 Dec 2013 09:12:11 +0000 (UTC) Author: bsam Date: Sat Dec 7 09:11:54 2013 New Revision: 335818 URL: http://svnweb.freebsd.org/changeset/ports/335818 Log: Fix build at 10.x and up (hardcoded -lstdc++): ----- libtool: link: c++ -shared -nostdlib /usr/lib/crti.o /usr/lib/crtbeginS.o .libs/wmf.o -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib -L/usr/local/lib /usr/local/lib/libEMF.so -lstdc++ -lpng -lz -L/usr/lib -lc++ -lm -lc -lgcc -lgcc_s /usr/lib/crtendS.o /usr/lib/crtn.o -Wl,-soname -Wl,libwmf_filter.so -o .libs/libwmf_filter.so /usr/bin/ld: cannot find -lstdc++ ----- PR: ports/184138 Submitted by: bsam (me) Approved by: gnome (maintainer timeout, 2 weeks) Modified: head/graphics/dia/Makefile Modified: head/graphics/dia/Makefile ============================================================================== --- head/graphics/dia/Makefile Sat Dec 7 09:07:40 2013 (r335817) +++ head/graphics/dia/Makefile Sat Dec 7 09:11:54 2013 (r335818) @@ -72,7 +72,7 @@ post-patch: 's,\(^GTK_LIBS.*\),\1 ${PTHREAD_LIBS}, ; \ s,\(^GTK_CFLAGS = \),\1 ${PTHREAD_CFLAGS} ,' @${REINPLACE_CMD} -e 's|http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl|${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl| ; \ - s|echo aout|echo elf|g ; s|/usr/include/libEMF|${LOCALBASE}/include/libEMF|g' \ - ${WRKSRC}/configure + s|echo aout|echo elf|g ; s|/usr/include/libEMF|${LOCALBASE}/include/libEMF|g ; \ + s|-lstdc++||g' ${WRKSRC}/configure .include _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"