summaryrefslogtreecommitdiff
path: root/databases/mariadb101-server/files/patch-cmake_jemalloc.cmake
diff options
context:
space:
mode:
authorBernard Spil <brnrd@FreeBSD.org>2016-03-27 20:57:51 +0000
committerBernard Spil <brnrd@FreeBSD.org>2016-03-27 20:57:51 +0000
commit63fec1d6d4f53c480ff3db3308e0da8e029ca027 (patch)
tree8c457b51b278855ab62a43afb7b75378462e9a63 /databases/mariadb101-server/files/patch-cmake_jemalloc.cmake
parentNew port: multimedia/plexwatch (diff)
databases/mariadb101-{server,client}: Update to 10.1.13
- 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
Notes
Notes: svn path=/head/; revision=412011
Diffstat (limited to 'databases/mariadb101-server/files/patch-cmake_jemalloc.cmake')
-rw-r--r--databases/mariadb101-server/files/patch-cmake_jemalloc.cmake24
1 files changed, 0 insertions, 24 deletions
diff --git a/databases/mariadb101-server/files/patch-cmake_jemalloc.cmake b/databases/mariadb101-server/files/patch-cmake_jemalloc.cmake
deleted file mode 100644
index 187de9ad4298..000000000000
--- a/databases/mariadb101-server/files/patch-cmake_jemalloc.cmake
+++ /dev/null
@@ -1,24 +0,0 @@
-Fix jemalloc detection on FreeBSD 10.x
-Upstream https://github.com/MariaDB/server/pull/140
-
---- cmake/jemalloc.cmake.orig 2015-12-23 15:33:29 UTC
-+++ cmake/jemalloc.cmake
-@@ -12,9 +12,16 @@ MACRO(JEMALLOC_TRY_STATIC)
- ENDMACRO()
-
- MACRO(JEMALLOC_TRY_DYNAMIC)
-- SET(libname jemalloc)
- SET(what system)
-- CHECK_LIBRARY_EXISTS(${libname} malloc_stats_print "" HAVE_DYNAMIC_JEMALLOC)
-+ IF (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD" AND
-+ CMAKE_SYSTEM_VERSION STRGREATER "10.0")
-+ # Since FreeBSD 10.0 jemalloc is in base libc
-+ SET(libname c)
-+ SET(HAVE_DYNAMIC_JEMALLOC ON)
-+ ELSE()
-+ SET(libname jemalloc)
-+ CHECK_LIBRARY_EXISTS(${libname} malloc_stats_print "" HAVE_DYNAMIC_JEMALLOC)
-+ ENDIF()
- ENDMACRO()
-
- MACRO (CHECK_JEMALLOC)