diff options
author | Anel Husakovic <anel@mariadb.org> | 2020-08-07 17:03:17 +0200 |
---|---|---|
committer | Anel Husakovic <anel@mariadb.org> | 2020-08-07 17:03:17 +0200 |
commit | 19bed2dbf9f357a8514f5667072da59846100b49 (patch) | |
tree | a88815bc974ae8e39e392ed2fbc80f62935c48ec | |
parent | d4967659032b18a5504198b41dd3d0a1813d79ef (diff) | |
download | mariadb-git-bb-10.3-anel-withoutserver.tar.gz |
compile for without_serverbb-10.3-anel-withoutserver
-rw-r--r-- | plugin/handler_socket/CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugin/handler_socket/CMakeLists.txt b/plugin/handler_socket/CMakeLists.txt index 329ff58d7f2..5a1925b40e0 100644 --- a/plugin/handler_socket/CMakeLists.txt +++ b/plugin/handler_socket/CMakeLists.txt @@ -1,7 +1,8 @@ -IF(WIN32) +IF(WIN32 OR WITHOUT_SERVER) # Handlersocket does not compile on Windows, compiles but does - # not start on FreeBSD. + # not start on FreeBSD. + # It is a server plugin and disable it explicitly here. RETURN() ENDIF() |