aboutsummaryrefslogtreecommitdiff
path: root/games/freeorion/files
diff options
context:
space:
mode:
authorDmitry Marakasov <amdmi3@FreeBSD.org>2018-08-05 20:25:54 +0000
committerDmitry Marakasov <amdmi3@FreeBSD.org>2018-08-05 20:25:54 +0000
commitc512c04072762b1b60f01e75a6bbfd76582ee48e (patch)
treef9d588f6d602a56fa46371754425d470a213766f /games/freeorion/files
parentb371aee6966611ebfe6ca0eed382f04e0383c22b (diff)
downloadports-c512c04072762b1b60f01e75a6bbfd76582ee48e.tar.gz
ports-c512c04072762b1b60f01e75a6bbfd76582ee48e.zip
- Update to 0.4.8-rc2
Notes
Notes: svn path=/head/; revision=476473
Diffstat (limited to 'games/freeorion/files')
-rw-r--r--games/freeorion/files/patch-boost16729
1 files changed, 0 insertions, 29 deletions
diff --git a/games/freeorion/files/patch-boost167 b/games/freeorion/files/patch-boost167
deleted file mode 100644
index 88d6983e655b..000000000000
--- a/games/freeorion/files/patch-boost167
+++ /dev/null
@@ -1,29 +0,0 @@
-commit 618568705a0ca37ffd9e88d08cda3d3601d01d98
-Author: Dmitry Marakasov <amdmi3@amdmi3.ru>
-Date: Fri Jun 29 19:42:52 2018 +0300
-
- Fix compatibility with boost 1.67.0
-
-diff --git CMakeLists.txt CMakeLists.txt
-index 5b2fe63a7..4d26e06a2 100644
---- CMakeLists.txt
-+++ CMakeLists.txt
-@@ -204,11 +204,17 @@ find_package(Boost ${MINIMUM_BOOST_VERSION}
- log_setup
- regex
- serialization
-- python
- signals
- system
- thread
- REQUIRED)
-+if(${Boost_VERSION} GREATER 106699) # boost >= 1.67
-+ find_package(Boost COMPONENTS python27 REQUIRED)
-+ set(Boost_PYTHON_LIBRARY ${Boost_PYTHON27_LIBRARY})
-+else()
-+ find_package(Boost COMPONENTS python REQUIRED)
-+endif()
-+
- find_package(ZLIB REQUIRED)
- if(NOT BUILD_HEADLESS)
- find_package(Freetype REQUIRED)