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
657868f5
Commit
657868f5
authored
Nov 22, 2022
by
Monty
Committed by
Sergei Petrunia
Feb 03, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change BUILD scripts to use wolfss by default
parent
0dd9ec97
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
BUILD/SETUP.sh
BUILD/SETUP.sh
+6
-5
cmake/configure.pl
cmake/configure.pl
+1
-1
No files found.
BUILD/SETUP.sh
View file @
657868f5
...
...
@@ -127,7 +127,7 @@ get_make_parallel_flag
# implementation of SSL. --with-ssl=yes will first try system library
# then the bundled one --with-ssl=system will use the system library.
# We use bundled by default as this is guaranteed to work with Galera
SSL_LIBRARY
=
--with-ssl
SSL_LIBRARY
=
--with-ssl
=
bundled
if
[
"x
$warning_mode
"
=
"xpedantic"
]
;
then
warnings
=
"-W -Wall -ansi -pedantic -Wno-long-long -Wno-unused -D_POSIX_SOURCE"
...
...
@@ -202,6 +202,7 @@ base_configs="$base_configs --with-extra-charsets=complex "
base_configs
=
"
$base_configs
--enable-thread-safe-client "
base_configs
=
"
$base_configs
--with-big-tables
$maintainer_mode
"
base_configs
=
"
$base_configs
--with-plugin-aria --with-aria-tmp-tables --with-plugin-s3=STATIC"
base_configs
=
"
$base_configs
$SSL_LIBRARY
"
if
test
-d
"
$path
/../cmd-line-utils/readline"
then
...
...
@@ -212,10 +213,10 @@ then
fi
max_plugins
=
"--with-plugins=max"
max_no_embedded_configs
=
"
$
SSL_LIBRARY
$
max_plugins
"
max_no_qc_configs
=
"
$
SSL_LIBRARY
$
max_plugins
--without-query-cache"
max_configs
=
"
$
SSL_LIBRARY
$max_plugins
--with-embedded-server --with-libevent --with-plugin-rocksdb=dynamic --with-plugin-test_sql_discovery=DYNAMIC --with-plugin-file_key_management=DYNAMIC --with-plugin-hashicorp_key_management
=DYNAMIC"
all_configs
=
"
$
SSL_LIBRARY
$
max_plugins
--with-embedded-server --with-innodb_plugin --with-libevent"
max_no_embedded_configs
=
"
$max_plugins
"
max_no_qc_configs
=
"
$max_plugins
--without-query-cache"
max_configs
=
"
$
max_plugins
--with-embedded-server --with-libevent --with-plugin-rocksdb=dynamic --with-plugin-test_sql_discovery=DYNAMIC --with-plugin-file_key_management=DYNAMIC --with-plugin-hashicorp_key_management=DYNAMIC --with-plugin-auth_gssapi
=DYNAMIC"
all_configs
=
"
$max_plugins
--with-embedded-server --with-innodb_plugin --with-libevent"
#
# CPU and platform specific compilation flags.
...
...
cmake/configure.pl
View file @
657868f5
...
...
@@ -190,7 +190,7 @@ foreach my $option (@ARGV)
$cmakeargs
=
$cmakeargs
.
"
-DWITH_SSL=system
";
next
;
}
if
(
$option
=~
/with-ssl$/
)
if
(
$option
=~
/with-ssl$/
||
$option
=~
/with-ssl=bundled/
)
{
$cmakeargs
=
$cmakeargs
.
"
-DWITH_SSL=bundled
";
next
;
...
...
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