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
f502ae82
Commit
f502ae82
authored
Dec 08, 2021
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SUMMARY/DESCRIPTION for compression provider RPMs
parent
ef77c051
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
0 deletions
+15
-0
plugin/provider_bzip2/CMakeLists.txt
plugin/provider_bzip2/CMakeLists.txt
+3
-0
plugin/provider_lz4/CMakeLists.txt
plugin/provider_lz4/CMakeLists.txt
+3
-0
plugin/provider_lzma/CMakeLists.txt
plugin/provider_lzma/CMakeLists.txt
+3
-0
plugin/provider_lzo/CMakeLists.txt
plugin/provider_lzo/CMakeLists.txt
+3
-0
plugin/provider_snappy/CMakeLists.txt
plugin/provider_snappy/CMakeLists.txt
+3
-0
No files found.
plugin/provider_bzip2/CMakeLists.txt
View file @
f502ae82
FIND_PACKAGE
(
BZip2
)
SET
(
CPACK_RPM_provider-bzip2_PACKAGE_SUMMARY
"BZip2 compression support in the server and storage engines"
PARENT_SCOPE
)
SET
(
CPACK_RPM_provider-bzip2_PACKAGE_DESCRIPTION
"BZip2 compression support in the server and storage engines"
PARENT_SCOPE
)
IF
(
BZIP2_FOUND
)
GET_PROPERTY
(
dirs DIRECTORY PROPERTY INCLUDE_DIRECTORIES
)
LIST
(
REMOVE_ITEM dirs
${
CMAKE_SOURCE_DIR
}
/include/providers
)
...
...
plugin/provider_lz4/CMakeLists.txt
View file @
f502ae82
FIND_PACKAGE
(
LZ4 1.6
)
SET
(
CPACK_RPM_provider-lz4_PACKAGE_SUMMARY
"LZ4 compression support in the server and storage engines"
PARENT_SCOPE
)
SET
(
CPACK_RPM_provider-lz4_PACKAGE_DESCRIPTION
"LZ4 compression support in the server and storage engines"
PARENT_SCOPE
)
IF
(
LZ4_FOUND
)
GET_PROPERTY
(
dirs DIRECTORY PROPERTY INCLUDE_DIRECTORIES
)
LIST
(
REMOVE_ITEM dirs
${
CMAKE_SOURCE_DIR
}
/include/providers
)
...
...
plugin/provider_lzma/CMakeLists.txt
View file @
f502ae82
FIND_PACKAGE
(
LibLZMA
)
SET
(
CPACK_RPM_provider-lzma_PACKAGE_SUMMARY
"LZMA compression support in the server and storage engines"
PARENT_SCOPE
)
SET
(
CPACK_RPM_provider-lzma_PACKAGE_DESCRIPTION
"LZMA compression support in the server and storage engines"
PARENT_SCOPE
)
IF
(
LIBLZMA_FOUND
)
GET_PROPERTY
(
dirs DIRECTORY PROPERTY INCLUDE_DIRECTORIES
)
LIST
(
REMOVE_ITEM dirs
${
CMAKE_SOURCE_DIR
}
/include/providers
)
...
...
plugin/provider_lzo/CMakeLists.txt
View file @
f502ae82
FIND_PACKAGE
(
LZO
)
SET
(
CPACK_RPM_provider-lzo_PACKAGE_SUMMARY
"LZO compression support in the server and storage engines"
PARENT_SCOPE
)
SET
(
CPACK_RPM_provider-lzo_PACKAGE_DESCRIPTION
"LZO compression support in the server and storage engines"
PARENT_SCOPE
)
IF
(
LZO_FOUND
)
GET_PROPERTY
(
dirs DIRECTORY PROPERTY INCLUDE_DIRECTORIES
)
LIST
(
REMOVE_ITEM dirs
${
CMAKE_SOURCE_DIR
}
/include/providers
)
...
...
plugin/provider_snappy/CMakeLists.txt
View file @
f502ae82
FIND_PACKAGE
(
Snappy
)
SET
(
CPACK_RPM_provider-snappy_PACKAGE_SUMMARY
"Snappy compression support in the server and storage engines"
PARENT_SCOPE
)
SET
(
CPACK_RPM_provider-snappy_PACKAGE_DESCRIPTION
"Snappy compression support in the server and storage engines"
PARENT_SCOPE
)
IF
(
SNAPPY_FOUND
)
GET_PROPERTY
(
dirs DIRECTORY PROPERTY INCLUDE_DIRECTORIES
)
LIST
(
REMOVE_ITEM dirs
${
CMAKE_SOURCE_DIR
}
/include/providers
)
...
...
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