diff options
Diffstat (limited to 'databases/mysql57-client/patches/patch-cmake_boost.cmake')
-rw-r--r-- | databases/mysql57-client/patches/patch-cmake_boost.cmake | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/databases/mysql57-client/patches/patch-cmake_boost.cmake b/databases/mysql57-client/patches/patch-cmake_boost.cmake index b4a6dc864d5..0b0e7834dbc 100644 --- a/databases/mysql57-client/patches/patch-cmake_boost.cmake +++ b/databases/mysql57-client/patches/patch-cmake_boost.cmake @@ -1,4 +1,4 @@ -$NetBSD: patch-cmake_boost.cmake,v 1.8 2018/04/29 21:44:12 adam Exp $ +$NetBSD: patch-cmake_boost.cmake,v 1.9 2018/08/16 16:06:09 adam Exp $ Fix to use a newer version of Boost. @@ -9,7 +9,7 @@ Fix to use a newer version of Boost. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -# We want boost 1.59.0 in order to build our boost/geometry code. -+# We want boost 1.67.0 in order to build our boost/geometry code. ++# We want boost 1.68.0 in order to build our boost/geometry code. # The boost tarball is fairly big, and takes several minutes # to download. So we recommend downloading/unpacking it # only once, in a place visible from any bzr sandbox. @@ -18,11 +18,11 @@ Fix to use a newer version of Boost. # is installed on the compile host in the standard location. -SET(BOOST_PACKAGE_NAME "boost_1_59_0") -+SET(BOOST_PACKAGE_NAME "boost_1_67_0") ++SET(BOOST_PACKAGE_NAME "boost_1_68_0") SET(BOOST_TARBALL "${BOOST_PACKAGE_NAME}.tar.gz") SET(BOOST_DOWNLOAD_URL - "http://sourceforge.net/projects/boost/files/boost/1.59.0/${BOOST_TARBALL}" -+ "http://sourceforge.net/projects/boost/files/boost/1.67.0/${BOOST_TARBALL}" ++ "http://sourceforge.net/projects/boost/files/boost/1.68.0/${BOOST_TARBALL}" ) SET(OLD_PACKAGE_NAMES "boost_1_55_0 boost_1_56_0 boost_1_57_0 boost_1_58_0") @@ -31,7 +31,7 @@ Fix to use a newer version of Boost. # // BOOST_VERSION / 100 % 1000 is the minor version # // BOOST_VERSION / 100000 is the major version -# #define BOOST_VERSION 105900 -+# #define BOOST_VERSION 106700 ++# #define BOOST_VERSION 106800 FILE(STRINGS "${BOOST_INCLUDE_DIR}/boost/version.hpp" BOOST_VERSION_NUMBER REGEX "^#define[\t ]+BOOST_VERSION[\t ][0-9]+.*" @@ -40,10 +40,10 @@ Fix to use a newer version of Boost. ENDIF() -IF(NOT BOOST_MINOR_VERSION EQUAL 59) -+IF(NOT BOOST_MINOR_VERSION EQUAL 67) ++IF(NOT BOOST_MINOR_VERSION EQUAL 68) MESSAGE(WARNING "Boost minor version found is ${BOOST_MINOR_VERSION} " - "we need 59" -+ "we need 67" ++ "we need 68" ) COULD_NOT_FIND_BOOST() ENDIF() |