diff options
author | Harin Vadodaria <harin.vadodaria@oracle.com> | 2012-07-24 18:45:58 +0530 |
---|---|---|
committer | Harin Vadodaria <harin.vadodaria@oracle.com> | 2012-07-24 18:45:58 +0530 |
commit | d259fae7e4470c45750839d0c8daab9b9cde9655 (patch) | |
tree | 380da2fbdd9711d90634ccb76edb0fb0017a4c58 /cmake | |
parent | f9e6613bd4f118eab00881900b1f2c6ef0554e7f (diff) | |
download | mariadb-git-d259fae7e4470c45750839d0c8daab9b9cde9655.tar.gz |
Bug#13904906: YASSL PRE-AUTH CRASH WITH 5.1.62, 5.5.22
Problem: Valgrind reports errors when an invalid certificate is used on the
client.
Solution: Updated yaSSL to version 2.2.2.
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 9b16bf09394..9cb80a2303c 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 -DMULTI_THREADED") CHANGE_SSL_SETTINGS("bundled") #Remove -fno-implicit-templates #(yassl sources cannot be compiled with it) |