summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kde-base/kig/files/kig-4.11.0-boostpython.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/kde-base/kig/files/kig-4.11.0-boostpython.patch b/kde-base/kig/files/kig-4.11.0-boostpython.patch
deleted file mode 100644
index 0f9557d04ad..00000000000
--- a/kde-base/kig/files/kig-4.11.0-boostpython.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/cmake/modules/FindBoostPython.cmake b/cmake/modules/FindBoostPython.cmake
-index d6c5a34..1fde037 100644
---- a/cmake/modules/FindBoostPython.cmake
-+++ b/cmake/modules/FindBoostPython.cmake
-@@ -24,7 +24,7 @@ set(BOOST_PYTHON_INCLUDES)
- set(BOOST_PYTHON_LIBS)
-
- # handy arrays
--set(PYTHON_VERSIONS "python;python2.7;python2.6;python2.5;python2.4;python2.3;python2.2")
-+execute_process(COMMAND python -c "import sys; sys.stdout.write('.'.join(str(x) for x in sys.version_info[:2]))" OUTPUT_VARIABLE PYTHON_VERSIONS)
-
- # 1st: check for boost/shared_ptr.hpp
- check_include_file_cxx(boost/shared_ptr.hpp HAVE_BOOST_SHARED_PTR_HPP)
-@@ -35,7 +35,7 @@ if(HAVE_BOOST_SHARED_PTR_HPP)
- set(_found FALSE)
- foreach(_pyver ${PYTHON_VERSIONS})
- if(NOT _found)
-- pkg_check_modules(_python QUIET ${_pyver})
-+ pkg_check_modules(_python python-${_pyver})
- if (_python_FOUND)
- find_package(Boost 1.33 COMPONENTS python)
- if (Boost_PYTHON_FOUND)