mirror of
https://github.com/MariaDB/server.git
synced 2025-01-21 22:34:18 +01:00
5b2e3b01f0
* disable jemalloc on windows (cannot run ./configure) * disable jemalloc on ancient cmake (ExternalProject does not work) * rewrite TokuDB compiler test to check for features, not versions (to work on cmake before 2.8.11) * fix ft-index to not add VALGRIND_INCLUDE_DIR to includes, if no valgrind was found * correct the package name in FindValgrind.cmake (for find_package(... REQUIRED) to work) * disable ft-index tests by default (faster compilation and they aren't used anyway) * don't build ft-index with valgrind by default (otherwise it *requires* valgrind, it doesn't auto-detect) * use --loose-tokudb in the .opt file
18 lines
589 B
CMake
18 lines
589 B
CMake
# Find Valgrind.
|
|
#
|
|
# This module defines:
|
|
# VALGRIND_INCLUDE_DIR, where to find valgrind/memcheck.h, etc.
|
|
# VALGRIND_PROGRAM, the valgrind executable.
|
|
# VALGRIND_FOUND, If false, do not try to use valgrind.
|
|
#
|
|
# If you have valgrind installed in a non-standard place, you can define
|
|
# VALGRIND_PREFIX to tell cmake where it is.
|
|
|
|
find_path(VALGRIND_INCLUDE_DIR valgrind/memcheck.h)
|
|
find_program(VALGRIND_PROGRAM NAMES valgrind)
|
|
|
|
find_package_handle_standard_args(Valgrind DEFAULT_MSG
|
|
VALGRIND_INCLUDE_DIR
|
|
VALGRIND_PROGRAM)
|
|
|
|
mark_as_advanced(VALGRIND_INCLUDE_DIR VALGRIND_PROGRAM)
|