head 1.3; access; symbols pkgsrc-2024Q2:1.2.0.58 pkgsrc-2024Q2-base:1.2 pkgsrc-2024Q1:1.2.0.56 pkgsrc-2024Q1-base:1.2 pkgsrc-2023Q4:1.2.0.54 pkgsrc-2023Q4-base:1.2 pkgsrc-2023Q3:1.2.0.52 pkgsrc-2023Q3-base:1.2 pkgsrc-2023Q2:1.2.0.50 pkgsrc-2023Q2-base:1.2 pkgsrc-2023Q1:1.2.0.48 pkgsrc-2023Q1-base:1.2 pkgsrc-2022Q4:1.2.0.46 pkgsrc-2022Q4-base:1.2 pkgsrc-2022Q3:1.2.0.44 pkgsrc-2022Q3-base:1.2 pkgsrc-2022Q2:1.2.0.42 pkgsrc-2022Q2-base:1.2 pkgsrc-2022Q1:1.2.0.40 pkgsrc-2022Q1-base:1.2 pkgsrc-2021Q4:1.2.0.38 pkgsrc-2021Q4-base:1.2 pkgsrc-2021Q3:1.2.0.36 pkgsrc-2021Q3-base:1.2 pkgsrc-2021Q2:1.2.0.34 pkgsrc-2021Q2-base:1.2 pkgsrc-2021Q1:1.2.0.32 pkgsrc-2021Q1-base:1.2 pkgsrc-2020Q4:1.2.0.30 pkgsrc-2020Q4-base:1.2 pkgsrc-2020Q3:1.2.0.28 pkgsrc-2020Q3-base:1.2 pkgsrc-2020Q2:1.2.0.24 pkgsrc-2020Q2-base:1.2 pkgsrc-2020Q1:1.2.0.4 pkgsrc-2020Q1-base:1.2 pkgsrc-2019Q4:1.2.0.26 pkgsrc-2019Q4-base:1.2 pkgsrc-2019Q3:1.2.0.22 pkgsrc-2019Q3-base:1.2 pkgsrc-2019Q2:1.2.0.20 pkgsrc-2019Q2-base:1.2 pkgsrc-2019Q1:1.2.0.18 pkgsrc-2019Q1-base:1.2 pkgsrc-2018Q4:1.2.0.16 pkgsrc-2018Q4-base:1.2 pkgsrc-2018Q3:1.2.0.14 pkgsrc-2018Q3-base:1.2 pkgsrc-2018Q2:1.2.0.12 pkgsrc-2018Q2-base:1.2 pkgsrc-2018Q1:1.2.0.10 pkgsrc-2018Q1-base:1.2 pkgsrc-2017Q4:1.2.0.8 pkgsrc-2017Q4-base:1.2 pkgsrc-2017Q3:1.2.0.6 pkgsrc-2017Q3-base:1.2 pkgsrc-2017Q2:1.2.0.2 pkgsrc-2017Q2-base:1.2 pkgsrc-2017Q1:1.1.0.4 pkgsrc-2017Q1-base:1.1 pkgsrc-2016Q4:1.1.0.2 pkgsrc-2016Q4-base:1.1; locks; strict; comment @# @; 1.3 date 2024.08.05.06.30.27; author wiz; state dead; branches; next 1.2; commitid bBHFyVW9uHUXcBkF; 1.2 date 2017.04.11.20.21.02; author adam; state Exp; branches; next 1.1; commitid XcivM732KEX0J9Nz; 1.1 date 2016.12.16.17.55.48; author jperkin; state Exp; branches; next ; commitid tNqROMC3PefEEeyz; desc @@ 1.3 log @mysql* 5.6, 5.7: remove As proposed on pkgsrc-users on July 26. These versions are unsupported by upstream since 2018 and 2020 respectively. @ text @$NetBSD: patch-cmake_os_SunOS.cmake,v 1.2 2017/04/11 20:21:02 adam Exp $ Backport section from MySQL 5.7 to fix SunOS/gcc. --- cmake/os/SunOS.cmake.orig 2017-03-18 06:43:12.000000000 +0000 +++ cmake/os/SunOS.cmake @@@@ -19,7 +19,13 @@@@ INCLUDE(CheckCSourceCompiles) # We require SunStudio 12u2 (CC 5.11) IF(NOT FORCE_UNSUPPORTED_COMPILER) - IF(CMAKE_C_COMPILER_ID MATCHES "SunPro") + IF(CMAKE_COMPILER_IS_GNUCC) + EXECUTE_PROCESS(COMMAND ${CMAKE_C_COMPILER} -dumpversion + OUTPUT_VARIABLE GCC_VERSION) + IF(GCC_VERSION VERSION_LESS 4.4) + MESSAGE(FATAL_ERROR "GCC 4.4 or newer is required!") + ENDIF() + ELSEIF(CMAKE_C_COMPILER_ID MATCHES "SunPro") # CC -V yields # CC: Studio 12.6 Sun C++ 5.15 SunOS_sparc Beta 2016/12/19 # CC: Studio 12.5 Sun C++ 5.14 SunOS_sparc Dodona 2016/04/04 @ 1.2 log @Changes 5.6.36: * Windows builds now use the default runtime libraries (builds use the /MD flag). * CMake support was added for compiling with Developer Studio 12.6. MySQL failed to compile if -DENABLE_DEBUG_SYNC=OFF AND -DWITH_DEBUG=ON were both given. The ENABLE_DEBUG_SYNC option has been removed and enabling WITH_DEBUG enables Debug Sync. * Changes in RPM package structure require a larger set of packages to be removed to install MySQL Server cleanly. * To avoid potential race conditions, Debian packages now use the GNU install utility rather than a combination of mkdir, touch, and chown. * CMake-generated packaging for Debian/Ubuntu packages was refactored for improved maintainability. The change includes updated logic for correctly replacing native distribution packaging in Debian and Ubuntu. * Reminder: MySQL 5.6 requires the Microsoft Visual C++ 2010 Redistributable Package to run on Windows platforms. Users should make sure the package has been installed on the system before starting the server. The package is available at the Microsoft Download Center. * The linked OpenSSL library for the MySQL Commercial Server has been updated to version 1.0.2k. For a description of issues fixed in this version, see http://www.openssl.org/news/vulnerabilities.html. * The mysql_options() C API function now supports a MYSQL_OPT_SSL_MODE option. @ text @d1 1 a1 1 $NetBSD: patch-cmake_os_SunOS.cmake,v 1.1 2016/12/16 17:55:48 jperkin Exp $ @ 1.1 log @Backport section from MySQL 5.7 to fix SunOS/gcc. PR#51725 @ text @d1 1 a1 1 $NetBSD$ d5 1 a5 1 --- cmake/os/SunOS.cmake.orig 2016-11-28 13:36:22.000000000 +0000 d7 1 a7 1 @@@@ -19,7 +19,13 @@@@ INCLUDE(CheckCSourceCompiles) d20 1 a21 1 # CC: Sun C++ 5.13 SunOS_sparc Beta 2014/03/11 @