blob: 57662e714ddf1d6553fd8188044cd9c245f23224 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
$NetBSD: patch-storage_example_CMakeLists.txt,v 1.2 2019/10/14 19:44:47 adam Exp $
Build with newer DTrace.
--- storage/example/CMakeLists.txt.orig 2019-10-14 18:53:07.000000000 +0000
+++ storage/example/CMakeLists.txt
@@ -25,5 +25,6 @@ SET(EXAMPLE_SOURCES ha_example.cc)
IF(WITH_EXAMPLE_STORAGE_ENGINE AND NOT WITHOUT_EXAMPLE_STORAGE_ENGINE)
MYSQL_ADD_PLUGIN(example ${EXAMPLE_SOURCES} STORAGE_ENGINE DEFAULT)
ELSEIF(NOT WITHOUT_EXAMPLE_STORAGE_ENGINE)
- MYSQL_ADD_PLUGIN(example ${EXAMPLE_SOURCES} STORAGE_ENGINE MODULE_ONLY)
+ MYSQL_ADD_PLUGIN(example ${EXAMPLE_SOURCES} STORAGE_ENGINE MODULE_ONLY
+ DTRACE_INSTRUMENTED)
ENDIF()
|