diff options
author | Vladislav Vaintroub <vvaintroub@mysql.com> | 2010-06-22 19:47:49 +0200 |
---|---|---|
committer | Vladislav Vaintroub <vvaintroub@mysql.com> | 2010-06-22 19:47:49 +0200 |
commit | 21e943e0d16b660fb564392c62c08a0a07f534f2 (patch) | |
tree | 207b4f646f054ee1dcc03f6ef00b71a80154b743 /cmake | |
parent | 3c74f80ab146496e814a8ec14a139feff86d463d (diff) | |
download | mariadb-git-21e943e0d16b660fb564392c62c08a0a07f534f2.tar.gz |
Fix syntax error (missing space in SET command), that effectively prevents mysqld from being build with SSL.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/ssl.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/ssl.cmake b/cmake/ssl.cmake index b101c26e241..d1f48888092 100644 --- a/cmake/ssl.cmake +++ b/cmake/ssl.cmake @@ -25,7 +25,7 @@ MACRO (MYSQL_USE_BUNDLED_SSL) SET(SSL_LIBRARIES yassl taocrypt) SET(SSL_INCLUDE_DIRS ${INC_DIRS}) SET(SSL_INTERNAL_INCLUDE_DIRS ${CMAKE_SOURCE_DIR}/extra/yassl/taocrypt/mySTL) - SET(SSL_DEFINES"-DHAVE_YASSL -DYASSL_PURE_C -DYASSL_PREFIX -DHAVE_OPENSSL -DYASSL_THREAD_SAFE") + SET(SSL_DEFINES "-DHAVE_YASSL -DYASSL_PURE_C -DYASSL_PREFIX -DHAVE_OPENSSL -DYASSL_THREAD_SAFE") CHANGE_SSL_SETTINGS("bundled") #Remove -fno-implicit-templates #(yassl sources cannot be compiled with it) |