summaryrefslogtreecommitdiff
path: root/databases/mysql57-client
diff options
context:
space:
mode:
authoradam <adam>2017-04-30 05:10:32 +0000
committeradam <adam>2017-04-30 05:10:32 +0000
commit764345f4056d8af99794957704788e3f7af26992 (patch)
tree7d2c0896cef1550ac2f5b6b7a31bb8ef2f1121b5 /databases/mysql57-client
parent5faf36812d88562c2a2786fd99c41e79f75582ef (diff)
downloadpkgsrc-764345f4056d8af99794957704788e3f7af26992.tar.gz
Sync with boost 1.64.0
Diffstat (limited to 'databases/mysql57-client')
-rw-r--r--databases/mysql57-client/distinfo4
-rw-r--r--databases/mysql57-client/patches/patch-cmake_boost.cmake18
2 files changed, 11 insertions, 11 deletions
diff --git a/databases/mysql57-client/distinfo b/databases/mysql57-client/distinfo
index ff63c62bd12..d7484d15d83 100644
--- a/databases/mysql57-client/distinfo
+++ b/databases/mysql57-client/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.10 2017/04/11 20:49:15 adam Exp $
+$NetBSD: distinfo,v 1.11 2017/04/30 05:10:32 adam Exp $
SHA1 (mysql-5.7.18.tar.gz) = d53fdc5f392af138cd66e13ee6d4e865767181e7
RMD160 (mysql-5.7.18.tar.gz) = 40264f1c4a9113d6c84356488d2a2a7bc80920ad
@@ -8,7 +8,7 @@ SHA1 (patch-CMakeLists.txt) = b47592cf8801538375da3df2990fde4d292fc365
SHA1 (patch-client_CMakeLists.txt) = 304023577ab9c2152ca21fa9ff4895a22a321adf
SHA1 (patch-client_completion_hash.cc) = b86ec80beac624b2aa21c7587e351ff126400ecb
SHA1 (patch-client_mysqladmin.cc) = e1650ef3695675bcc01375bacdebcb7318218b93
-SHA1 (patch-cmake_boost.cmake) = 1f0a70f110d97a1ab47706ed7d79d4fafa084abd
+SHA1 (patch-cmake_boost.cmake) = 9e837691f4bcdeafcc8c6af4bc5e366f1879c32d
SHA1 (patch-cmake_libutils.cmake) = c3e5ab66d2bef43dc2308369e27550553e0f5356
SHA1 (patch-cmake_os_SunOS.cmake) = 06e290820a75d68931fce6dfd70a0b5edd548320
SHA1 (patch-cmake_plugin.cmake) = 29db9f49941a011176a6cdd46f3af6c5636afb4a
diff --git a/databases/mysql57-client/patches/patch-cmake_boost.cmake b/databases/mysql57-client/patches/patch-cmake_boost.cmake
index c983750323a..cbb715f050c 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.3 2017/01/01 16:06:07 adam Exp $
+$NetBSD: patch-cmake_boost.cmake,v 1.4 2017/04/30 05:10:32 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.63.0 in order to build our boost/geometry code.
++# We want boost 1.64.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_63_0")
++SET(BOOST_PACKAGE_NAME "boost_1_64_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.63.0/${BOOST_TARBALL}"
++ "http://sourceforge.net/projects/boost/files/boost/1.64.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 106300
++# #define BOOST_VERSION 106400
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 63)
++IF(NOT BOOST_MINOR_VERSION EQUAL 64)
MESSAGE(WARNING "Boost minor version found is ${BOOST_MINOR_VERSION} "
- "we need 59"
-+ "we need 63"
++ "we need 64"
)
COULD_NOT_FIND_BOOST()
ENDIF()
@@ -52,11 +52,11 @@ Fix to use a newer version of Boost.
# We have a limited set of patches/bugfixes here:
-SET(BOOST_PATCHES_DIR "${CMAKE_SOURCE_DIR}/include/boost_1_59_0/patches")
-+SET(BOOST_PATCHES_DIR "${CMAKE_SOURCE_DIR}/include/boost_1_63_0/patches")
++SET(BOOST_PATCHES_DIR "${CMAKE_SOURCE_DIR}/include/boost_1_64_0/patches")
# We have a limited set of source files here:
-SET(BOOST_SOURCES_DIR "${CMAKE_SOURCE_DIR}/include/boost_1_59_0")
-+SET(BOOST_SOURCES_DIR "${CMAKE_SOURCE_DIR}/include/boost_1_63_0")
++SET(BOOST_SOURCES_DIR "${CMAKE_SOURCE_DIR}/include/boost_1_64_0")
# Bug in sqrt(NaN) on 32bit platforms
IF(SIZEOF_VOIDP EQUAL 4)