mariadb: disable build S3 plugin on Darwin
This commit is contained in:
parent
91e580397e
commit
856a8b6ab5
1 changed files with 2 additions and 1 deletions
|
@ -183,9 +183,10 @@ server = stdenv.mkDerivation (common // {
|
|||
"-DWITH_ROCKSDB_JEMALLOC=ON"
|
||||
] ++ optional (!stdenv.hostPlatform.isDarwin) [
|
||||
"-DWITH_JEMALLOC=yes"
|
||||
] ++ optional stdenv.hostPlatform.isDarwin [
|
||||
] ++ optionals stdenv.hostPlatform.isDarwin [
|
||||
"-DPLUGIN_AUTH_PAM=OFF"
|
||||
"-DWITHOUT_OQGRAPH=1"
|
||||
"-DWITHOUT_PLUGIN_S3=1"
|
||||
];
|
||||
|
||||
preConfigure = optionalString (!stdenv.hostPlatform.isDarwin) ''
|
||||
|
|
Loading…
Reference in a new issue