mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
- fixed Do-compile to actually add InnoDB support when requested to do so
This commit is contained in:
parent
73506bb612
commit
ab67c943a9
1 changed files with 8 additions and 1 deletions
|
@ -215,7 +215,14 @@ if ($opt_stage <= 1)
|
|||
|
||||
# Only enable InnoDB when requested (required to be able to
|
||||
# build the "Classic" packages that do not include InnoDB)
|
||||
$opt_config_options.= " --without-innodb" if (!$opt_innodb);
|
||||
if ($opt_innodb)
|
||||
{
|
||||
$opt_config_options.= " --with-innodb";
|
||||
}
|
||||
else
|
||||
{
|
||||
$opt_config_options.= " --without-innodb";
|
||||
}
|
||||
|
||||
if ($opt_with_other_libc)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue