Skip to content

Commit

Permalink
after-merge: 10.0 part of MDEV-9249 (ERR_remove_state)
Browse files Browse the repository at this point in the history
  • Loading branch information
vuvova committed Dec 21, 2015
1 parent 05dc86c commit 4fdf25a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions mysys_ssl/my_aes.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@
#include <openssl/evp.h>
#include <openssl/err.h>

#ifdef HAVE_ERR_remove_thread_state
#define ERR_remove_state(X) ERR_remove_thread_state(NULL)
#endif

// Wrap C struct, to ensure resources are released.
struct MyCipherCtx
{
Expand Down
2 changes: 1 addition & 1 deletion storage/perfschema/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/include
${CMAKE_SOURCE_DIR}/sql
${PCRE_INCLUDES}
${CMAKE_SOURCE_DIR}/extra/yassl/include)
${SSL_INCLUDE_DIRS})

ADD_DEFINITIONS(-DMYSQL_SERVER)

Expand Down

0 comments on commit 4fdf25a

Please sign in to comment.