diff options
author | rakuco <rakuco@FreeBSD.org> | 2015-11-26 22:38:07 +0800 |
---|---|---|
committer | rakuco <rakuco@FreeBSD.org> | 2015-11-26 22:38:07 +0800 |
commit | d1023ef057e8b89ca209329ad04874056743e8eb (patch) | |
tree | af6100451148b17eb5ebd52f9735e71686e0cce7 | |
parent | 7c6ed7fd9a86c516e03c4dd55b122e3e80cedd00 (diff) | |
download | freebsd-ports-gnome-d1023ef057e8b89ca209329ad04874056743e8eb.tar.gz freebsd-ports-gnome-d1023ef057e8b89ca209329ad04874056743e8eb.tar.zst freebsd-ports-gnome-d1023ef057e8b89ca209329ad04874056743e8eb.zip |
Add upstream commit to make the port build with the upcoming CMake 3.4.0.
-rw-r--r-- | multimedia/kaffeine/files/patch-git_4a1a90e | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/multimedia/kaffeine/files/patch-git_4a1a90e b/multimedia/kaffeine/files/patch-git_4a1a90e new file mode 100644 index 000000000000..85fbea75aaa5 --- /dev/null +++ b/multimedia/kaffeine/files/patch-git_4a1a90e @@ -0,0 +1,19 @@ +commit 4a1a90ee1b2b4d13302046f043adf1c2a1de758d +Author: Raphael Kubo da Costa <rakuco@FreeBSD.org> +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) |