From owner-svn-ports-all@freebsd.org Sat Feb 13 01:26:11 2016 Return-Path: Delivered-To: svn-ports-all@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 EE35FAA6472; Sat, 13 Feb 2016 01:26:11 +0000 (UTC) (envelope-from amdmi3@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 AF13F11E0; Sat, 13 Feb 2016 01:26:11 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1D1QAiv011919; Sat, 13 Feb 2016 01:26:10 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1D1QAlf011913; Sat, 13 Feb 2016 01:26:10 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201602130126.u1D1QAlf011913@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 13 Feb 2016 01:26:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r408773 - head/multimedia/gstreamer-qt4/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.20 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: Sat, 13 Feb 2016 01:26:12 -0000 Author: amdmi3 Date: Sat Feb 13 01:26:10 2016 New Revision: 408773 URL: https://svnweb.freebsd.org/changeset/ports/408773 Log: - Fix build with boost 1.60 PR: 199601 Added: head/multimedia/gstreamer-qt4/files/ head/multimedia/gstreamer-qt4/files/patch-src_QGlib_connect.cpp (contents, props changed) head/multimedia/gstreamer-qt4/files/patch-src_QGlib_connect.h (contents, props changed) head/multimedia/gstreamer-qt4/files/patch-src_QGlib_connectimpl.h (contents, props changed) head/multimedia/gstreamer-qt4/files/patch-src_QGlib_refpointer.h (contents, props changed) head/multimedia/gstreamer-qt4/files/patch-src_QGlib_type.h (contents, props changed) head/multimedia/gstreamer-qt4/files/patch-src_QGlib_value.h (contents, props changed) Added: head/multimedia/gstreamer-qt4/files/patch-src_QGlib_connect.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/gstreamer-qt4/files/patch-src_QGlib_connect.cpp Sat Feb 13 01:26:10 2016 (r408773) @@ -0,0 +1,16 @@ +--- src/QGlib/connect.cpp.orig 2013-10-14 08:44:40 UTC ++++ src/QGlib/connect.cpp +@@ -20,10 +20,13 @@ + #include + #include + #include ++ ++#ifndef Q_MOC_RUN + #include + #include + #include + #include ++#endif + + namespace QGlib { + namespace Private { Added: head/multimedia/gstreamer-qt4/files/patch-src_QGlib_connect.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/gstreamer-qt4/files/patch-src_QGlib_connect.h Sat Feb 13 01:26:10 2016 (r408773) @@ -0,0 +1,14 @@ +--- src/QGlib/connect.h.orig 2013-10-14 08:44:40 UTC ++++ src/QGlib/connect.h +@@ -25,8 +25,11 @@ + #include + #include + #include ++ ++#ifndef Q_MOC_RUN + #include + #include ++#endif + + namespace QGlib { + Added: head/multimedia/gstreamer-qt4/files/patch-src_QGlib_connectimpl.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/gstreamer-qt4/files/patch-src_QGlib_connectimpl.h Sat Feb 13 01:26:10 2016 (r408773) @@ -0,0 +1,12 @@ +--- src/QGlib/connectimpl.h.orig 2013-10-14 08:44:40 UTC ++++ src/QGlib/connectimpl.h +@@ -26,7 +26,9 @@ + # include "refpointer.h" + # include + # include ++#ifndef Q_MOC_RUN + # include ++#endif + + + namespace QGlib { Added: head/multimedia/gstreamer-qt4/files/patch-src_QGlib_refpointer.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/gstreamer-qt4/files/patch-src_QGlib_refpointer.h Sat Feb 13 01:26:10 2016 (r408773) @@ -0,0 +1,13 @@ +--- src/QGlib/refpointer.h.orig 2013-10-14 08:44:40 UTC ++++ src/QGlib/refpointer.h +@@ -23,8 +23,10 @@ + #include "type.h" + #include "wrap.h" + #include ++#ifndef Q_MOC_RUN + #include + #include ++#endif + #include + + namespace QGlib { Added: head/multimedia/gstreamer-qt4/files/patch-src_QGlib_type.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/gstreamer-qt4/files/patch-src_QGlib_type.h Sat Feb 13 01:26:10 2016 (r408773) @@ -0,0 +1,12 @@ +--- src/QGlib/type.h.orig 2013-10-14 08:44:40 UTC ++++ src/QGlib/type.h +@@ -21,7 +21,9 @@ + + #include "global.h" + #include ++#ifndef Q_MOC_RUN + #include ++#endif + + /* + * This is a re-definition of GType inside the QGlib::Private namespace. Added: head/multimedia/gstreamer-qt4/files/patch-src_QGlib_value.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/gstreamer-qt4/files/patch-src_QGlib_value.h Sat Feb 13 01:26:10 2016 (r408773) @@ -0,0 +1,13 @@ +--- src/QGlib/value.h.orig 2013-10-14 08:44:40 UTC ++++ src/QGlib/value.h +@@ -23,8 +23,10 @@ + #include "type.h" + #include "refpointer.h" + #include "error.h" ++#ifndef Q_MOC_RUN + #include + #include ++#endif + #include + #include + #include