mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
Make rocksdb build as a deb package too
This commit is contained in:
parent
adb7470742
commit
38919f68a1
2 changed files with 12 additions and 1 deletions
9
debian/control
vendored
9
debian/control
vendored
|
@ -22,6 +22,7 @@ Build-Depends: bison,
|
|||
libpcre3-dev (>= 2:8.35-3.2~),
|
||||
libreadline-gplv2-dev,
|
||||
libssl-dev,
|
||||
libsnappy-dev,
|
||||
libsystemd-dev,
|
||||
libxml2-dev,
|
||||
lsb-release,
|
||||
|
@ -452,6 +453,14 @@ Description: Connect storage engine for MariaDB
|
|||
other interesting features.
|
||||
This package contains the Connect plugin for MariaDB.
|
||||
|
||||
Package: mariadb-plugin-rocksdb
|
||||
Architecture: any
|
||||
Depends: mariadb-server-10.2, ${misc:Depends}, ${shlibs:Depends}
|
||||
Description: RocksDB storage engine for MariaDB
|
||||
The RocksDB storage engine is a high performance storage engine, aimed
|
||||
at maximising storage efficiency while maintaining InnoDB-like performance.
|
||||
This package contains the RocksDB plugin for MariaDB.
|
||||
|
||||
Package: mariadb-plugin-oqgraph
|
||||
Architecture: any
|
||||
Depends: libjudydebian1, mariadb-server-10.2, ${misc:Depends}, ${shlibs:Depends}
|
||||
|
|
|
@ -74,7 +74,9 @@ SET(ROCKSDB_SE_SOURCES
|
|||
rdb_psi.cc
|
||||
)
|
||||
|
||||
MYSQL_ADD_PLUGIN(rocksdb_se ${ROCKSDB_SE_SOURCES} STORAGE_ENGINE MODULE_OUTPUT_NAME ha_rocksdb)
|
||||
MYSQL_ADD_PLUGIN(rocksdb_se ${ROCKSDB_SE_SOURCES} STORAGE_ENGINE
|
||||
MODULE_OUTPUT_NAME ha_rocksdb
|
||||
COMPONENT rocksdb-engine)
|
||||
|
||||
IF(NOT TARGET rocksdb_se)
|
||||
# Bail out if compilation with rocksdb engine is not requested
|
||||
|
|
Loading…
Add table
Reference in a new issue