Date: Thu, 26 Nov 2015 11:03:49 +0000 (UTC) From: Raphael Kubo da Costa <rakuco@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r402434 - head/devel/kdbg/files Message-ID: <201511261103.tAQB3n6G071814@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rakuco Date: Thu Nov 26 11:03:49 2015 New Revision: 402434 URL: https://svnweb.freebsd.org/changeset/ports/402434 Log: Add patch to make the port build with CMake 3.4.0. In preparation for PR 204629, add a patch (also sent upstream) to make the port build with CMake 3.4.0 by explicitly including a module used by the build system. Added: head/devel/kdbg/files/ head/devel/kdbg/files/patch-kdbg_CMakeLists.txt (contents, props changed) Added: head/devel/kdbg/files/patch-kdbg_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/kdbg/files/patch-kdbg_CMakeLists.txt Thu Nov 26 11:03:49 2015 (r402434) @@ -0,0 +1,23 @@ +Required for building with CMake 3.4.0. + +Submitted via email directly to the upstream author. + +commit 2624465f87d7782527ee82567fd3a4fdf4c54241 +Author: Raphael Kubo da Costa <rakuco@FreeBSD.org> +Date: Thu Nov 26 11:58:11 2015 +0100 + + cmake: Explicitly include the CheckIncludeFiles module. + + This fixes the build with CMake 3.4.0: kdbg/CMakeLists.txt was previously + relying on the module being included indirectly. + +--- kdbg/CMakeLists.txt ++++ kdbg/CMakeLists.txt +@@ -4,6 +4,7 @@ add_subdirectory(typetables) + + include_directories(${KDE4_INCLUDES} ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ) + include(CheckFunctionExists) ++include(CheckIncludeFiles) + + CHECK_INCLUDE_FILES(pty.h HAVE_PTY_H) + CHECK_INCLUDE_FILES(libutil.h HAVE_LIBUTIL_H)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511261103.tAQB3n6G071814>