Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
08897b05
Commit
08897b05
authored
Feb 01, 2010
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup casing in MYSQL_ADD_PLUGIN, patch provided by Kent
parent
08777eae
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
plugin/daemon_example/CMakeLists.txt
plugin/daemon_example/CMakeLists.txt
+1
-1
plugin/fulltext/CMakeLists.txt
plugin/fulltext/CMakeLists.txt
+1
-1
storage/blackhole/CMakeLists.txt
storage/blackhole/CMakeLists.txt
+1
-1
storage/innobase/CMakeLists.txt
storage/innobase/CMakeLists.txt
+1
-1
storage/myisammrg/CMakeLists.txt
storage/myisammrg/CMakeLists.txt
+1
-1
storage/perfschema/CMakeLists.txt
storage/perfschema/CMakeLists.txt
+1
-1
No files found.
plugin/daemon_example/CMakeLists.txt
View file @
08897b05
...
...
@@ -13,4 +13,4 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
MYSQL_ADD_PLUGIN
(
DAEMON_EXAMPLE
daemon_example.cc MODULE_ONLY
)
MYSQL_ADD_PLUGIN
(
daemon_example
daemon_example.cc MODULE_ONLY
)
plugin/fulltext/CMakeLists.txt
View file @
08897b05
...
...
@@ -14,4 +14,4 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
MYSQL_ADD_PLUGIN
(
FTEXAMPLE
plugin_example.c MODULE_ONLY MODULE_OUTPUT_NAME mypluglib
)
MYSQL_ADD_PLUGIN
(
ftexample
plugin_example.c MODULE_ONLY MODULE_OUTPUT_NAME mypluglib
)
storage/blackhole/CMakeLists.txt
View file @
08897b05
...
...
@@ -15,4 +15,4 @@
SET
(
BLACKHOLE_SOURCES ha_blackhole.cc ha_blackhole.h
)
MYSQL_ADD_PLUGIN
(
BLACKHOLE
${
BLACKHOLE_SOURCES
}
STORAGE_ENGINE
)
MYSQL_ADD_PLUGIN
(
blackhole
${
BLACKHOLE_SOURCES
}
STORAGE_ENGINE
)
storage/innobase/CMakeLists.txt
View file @
08897b05
...
...
@@ -261,7 +261,7 @@ ELSEIF (MYSQL_VERSION_ID LESS "50137")
ENDIF
()
ELSE
()
# New plugin support, cross-platform , base name for shared module is "ha_innodb"
MYSQL_ADD_PLUGIN
(
INNOBASE
${
INNOBASE_SOURCES
}
STORAGE_ENGINE
MYSQL_ADD_PLUGIN
(
innobase
${
INNOBASE_SOURCES
}
STORAGE_ENGINE
MODULE_OUTPUT_NAME ha_innodb
LINK_LIBRARIES
${
ZLIB_LIBRARY
}
)
ENDIF
()
storage/myisammrg/CMakeLists.txt
View file @
08897b05
...
...
@@ -20,4 +20,4 @@ SET(MYISAMMRG_SOURCES myrg_close.c myrg_create.c myrg_delete.c myrg_extra.c myr
myrg_rprev.c myrg_rrnd.c myrg_rsame.c myrg_static.c myrg_update.c
myrg_write.c myrg_records.c
)
MYSQL_ADD_PLUGIN
(
MYISAMMRG
${
MYISAMMRG_SOURCES
}
STORAGE_ENGINE MANDATORY RECOMPILE_FOR_EMBEDDED
)
MYSQL_ADD_PLUGIN
(
myisammrg
${
MYISAMMRG_SOURCES
}
STORAGE_ENGINE MANDATORY RECOMPILE_FOR_EMBEDDED
)
storage/perfschema/CMakeLists.txt
View file @
08897b05
...
...
@@ -74,7 +74,7 @@ SET(PERFSCHEMA_SOURCES ha_perfschema.h
pfs_check.cc
)
MYSQL_ADD_PLUGIN
(
PERFSCHEMA
${
PERFSCHEMA_SOURCES
}
STORAGE_ENGINE DEFAULT STATIC_ONLY
)
MYSQL_ADD_PLUGIN
(
perfschema
${
PERFSCHEMA_SOURCES
}
STORAGE_ENGINE DEFAULT STATIC_ONLY
)
IF
(
WITH_PERFSCHEMA_STORAGE_ENGINE AND WITH_UNIT_TESTS
)
ENABLE_TESTING
()
ADD_SUBDIRECTORY
(
unittest
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment