From owner-svn-ports-all@FreeBSD.ORG Fri Jul 19 19:23:23 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3780140E; Fri, 19 Jul 2013 19:23:23 +0000 (UTC) (envelope-from jkim@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 2961ECE4; Fri, 19 Jul 2013 19:23:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6JJNNQV014242; Fri, 19 Jul 2013 19:23:23 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6JJNN73014241; Fri, 19 Jul 2013 19:23:23 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201307191923.r6JJNN73014241@svn.freebsd.org> From: Jung-uk Kim Date: Fri, 19 Jul 2013 19:23:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323326 - head/www/nspluginwrapper/files 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: Fri, 19 Jul 2013 19:23:23 -0000 Author: jkim Date: Fri Jul 19 19:23:22 2013 New Revision: 323326 URL: http://svnweb.freebsd.org/changeset/ports/323326 Log: Add an upstream patch to fix build with GCC 4.6 (and possibly others). https://github.com/davidben/nspluginwrapper/commit/928c322 Prodded by: avg Modified: head/www/nspluginwrapper/files/patch-configure Modified: head/www/nspluginwrapper/files/patch-configure ============================================================================== --- head/www/nspluginwrapper/files/patch-configure Fri Jul 19 18:36:42 2013 (r323325) +++ head/www/nspluginwrapper/files/patch-configure Fri Jul 19 19:23:22 2013 (r323326) @@ -1,5 +1,5 @@ ---- configure.orig 2009-01-02 11:54:10.000000000 +0300 -+++ configure 2009-01-09 05:42:24.000000000 +0300 +--- configure.orig 2011-06-30 23:18:57.000000000 -0400 ++++ configure 2013-07-19 15:17:17.000000000 -0400 @@ -6,13 +6,8 @@ PACKAGE=nspluginwrapper @@ -16,3 +16,14 @@ TMPC="${TMPDIR1}/npw-conf-${RANDOM}-$$-${RANDOM}.c" TMPO="${TMPDIR1}/npw-conf-${RANDOM}-$$-${RANDOM}.o" +@@ -499,8 +494,8 @@ + + # check for Glib 2.0 compile CFLAGS + if $pkgconfig --exists glib-2.0; then +- GLIB_CFLAGS=`$pkgconfig --cflags glib-2.0` +- GLIB_LIBS=`$pkgconfig --libs glib-2.0` ++ GLIB_CFLAGS=`$pkgconfig --cflags glib-2.0 gthread-2.0` ++ GLIB_LIBS=`$pkgconfig --libs glib-2.0 gthread-2.0` + GLIB_VERSION=`$pkgconfig --modversion glib-2.0` + else + echo "GLIB 2.0 environment not found"