From owner-svn-ports-head@freebsd.org Thu Nov 26 14:38:08 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 E7F96A3789E; Thu, 26 Nov 2015 14:38:08 +0000 (UTC) (envelope-from rakuco@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 B4B621324; Thu, 26 Nov 2015 14:38:08 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAQEc71H039089; Thu, 26 Nov 2015 14:38:07 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAQEc7Pk039088; Thu, 26 Nov 2015 14:38:07 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201511261438.tAQEc7Pk039088@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Thu, 26 Nov 2015 14:38:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402449 - head/multimedia/kaffeine/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-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: Thu, 26 Nov 2015 14:38:09 -0000 Author: rakuco Date: Thu Nov 26 14:38:07 2015 New Revision: 402449 URL: https://svnweb.freebsd.org/changeset/ports/402449 Log: Add upstream commit to make the port build with the upcoming CMake 3.4.0. Added: head/multimedia/kaffeine/files/patch-git_4a1a90e (contents, props changed) Added: head/multimedia/kaffeine/files/patch-git_4a1a90e ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/kaffeine/files/patch-git_4a1a90e Thu Nov 26 14:38:07 2015 (r402449) @@ -0,0 +1,19 @@ +commit 4a1a90ee1b2b4d13302046f043adf1c2a1de758d +Author: Raphael Kubo da Costa +Date: Thu Nov 26 15:36:26 2015 +0100 + + Explicitly include CheckIncludeFiles. + + This fixes the build with CMake 3.4.0. We were calling check_include_files() + and implicitly relying on CheckIncludeFiles being included. + +--- CMakeLists.txt ++++ CMakeLists.txt +@@ -21,6 +21,7 @@ if(STRICT_BUILD) + -DQT_NO_URL_CAST_FROM_STRING -DQT_STRICT_ITERATORS) + endif(STRICT_BUILD) + ++include(CheckIncludeFiles) + check_include_files(${CMAKE_CURRENT_SOURCE_DIR}/include/frontend.h HAVE_DVB) + + if(NOT HAVE_DVB)