Commit d5bad490 authored by Daniel Black's avatar Daniel Black

MDEV-34313: compile WITHOUT_SERVER and WSREP=ON

CMake WSREP=ON has some implications for client
executables so still present this as an option
when compiling WITHOUT_SERVER. In this case
default to ON for maximium compatibility of
the build client executables and libraries.
parent 53a48678
......@@ -17,7 +17,9 @@
#
# Galera library does not compile with windows
#
IF (NOT WITHOUT_SERVER)
IF(WITHOUT_SERVER)
OPTION(WITH_WSREP "Galera server compatibility in build client utilities" ON)
ELSE()
IF(UNIX)
SET(with_wsrep_default ON)
ELSE()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment