mirror of
https://git.freebsd.org/ports.git
synced 2025-06-15 01:30:33 -04:00
- Update to version 10.1.13 - Make GSSAPI plugin optional [2] - Remove patches that are merged upstream - Re-generate patches that required fuzzing - Server - Fix OQGraph build failure [1] - Install server gssapi plugin only - Don't install gssapi libs/files that were moved to -client - Add license and readme file for TokuDB - Add tokuft_logprint and tokuftdump binaries - Client - Install client gssapi plugin - Enable PLIST_SUB for optional gssapi plugin - Add new plugins and ini file - Remove taocrypt patch, we don't build bundled SSL PR: 207675 [1], 207883 [2] Reviewed by: feld (mentor) Approved by: feld (mentor) Differential Revision: D5751
69 lines
1.5 KiB
Text
69 lines
1.5 KiB
Text
--- scripts/CMakeLists.txt.orig 2016-03-24 09:12:11 UTC
|
|
+++ scripts/CMakeLists.txt
|
|
@@ -73,6 +73,7 @@ IF(UNIX)
|
|
)
|
|
ENDIF()
|
|
|
|
+IF(FALSE)
|
|
INSTALL(FILES
|
|
${CMAKE_CURRENT_SOURCE_DIR}/mysql_system_tables.sql
|
|
${CMAKE_CURRENT_SOURCE_DIR}/mysql_system_tables_data.sql
|
|
@@ -82,6 +83,7 @@ INSTALL(FILES
|
|
${FIX_PRIVILEGES_SQL}
|
|
DESTINATION ${INSTALL_MYSQLSHAREDIR} COMPONENT Server
|
|
)
|
|
+ENDIF()
|
|
|
|
# TCMalloc hacks
|
|
IF(MALLOC_LIB)
|
|
@@ -134,6 +136,7 @@ ENDIF()
|
|
SET(HOSTNAME "hostname")
|
|
SET(MYSQLD_USER "mysql")
|
|
|
|
+IF(FALSE)
|
|
# Required for mysqlbug until autotools are deprecated, once done remove these
|
|
# and expand default cmake variables
|
|
SET(CC ${CMAKE_C_COMPILER})
|
|
@@ -168,6 +171,7 @@ INSTALL_SCRIPT(${CMAKE_CURRENT_BINARY_DI
|
|
DESTINATION ${INSTALL_BINDIR}
|
|
COMPONENT Server
|
|
)
|
|
+ENDIF()
|
|
|
|
ENDIF(UNIX)
|
|
|
|
@@ -193,6 +197,7 @@ ELSE()
|
|
SET(localstatedir ${MYSQL_DATADIR})
|
|
ENDIF()
|
|
|
|
+IF()
|
|
IF(UNIX)
|
|
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/mysql_install_db.sh
|
|
${CMAKE_CURRENT_BINARY_DIR}/mysql_install_db ESCAPE_QUOTES @ONLY)
|
|
@@ -206,6 +211,7 @@ INSTALL_SCRIPT(
|
|
COMPONENT Server
|
|
)
|
|
ENDIF()
|
|
+ENDIF()
|
|
|
|
SET(prefix "${CMAKE_INSTALL_PREFIX}")
|
|
IF(INSTALL_SYSCONFDIR)
|
|
@@ -284,18 +290,8 @@ ELSE()
|
|
SET(BIN_SCRIPTS
|
|
msql2mysql
|
|
mysql_config
|
|
- mysql_fix_extensions
|
|
- mysql_setpermission
|
|
- mysql_secure_installation
|
|
- mysql_zap
|
|
mysqlaccess
|
|
- mysql_convert_table_format
|
|
mysql_find_rows
|
|
- mytop
|
|
- mysqlhotcopy
|
|
- mysqldumpslow
|
|
- mysqld_multi
|
|
- mysqld_safe
|
|
${WSREP_BINARIES}
|
|
${SYSTEMD_SCRIPTS}
|
|
)
|