diff options
author | Sergei Golubchik <serg@mariadb.org> | 2019-02-19 01:04:56 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2019-02-21 15:04:03 +0100 |
commit | 83de75d66dc40fedc4cb762584eed3e0121609bd (patch) | |
tree | 3d7905299200db0ac8876e636956284f588b74b6 /plugin/auth_socket | |
parent | 38bf9319a4cec638dfea319f40dc5eaecf9a52eb (diff) | |
download | mariadb-git-83de75d66dc40fedc4cb762584eed3e0121609bd.tar.gz |
try harder to link unix_socket plugin statically
fix unix_socket tests to work if unix_socket is a built-in
Diffstat (limited to 'plugin/auth_socket')
-rw-r--r-- | plugin/auth_socket/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/auth_socket/CMakeLists.txt b/plugin/auth_socket/CMakeLists.txt index bfded6a5555..c243bbb0173 100644 --- a/plugin/auth_socket/CMakeLists.txt +++ b/plugin/auth_socket/CMakeLists.txt @@ -65,5 +65,5 @@ ENDIF() ENDIF() IF(ok) - MYSQL_ADD_PLUGIN(auth_socket auth_socket.c) + MYSQL_ADD_PLUGIN(auth_socket auth_socket.c DEFAULT) ENDIF() |