diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-12-21 10:19:02 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-12-21 12:17:31 +0100 |
commit | e126baafbc78f15c794082f0a93740d81041d038 (patch) | |
tree | 5b9aeec751ef5d261fc3a2355a933408a934b4b7 /config.h.cmake | |
parent | 591e74c7e8f682f2eada7496f50aa73f38bd168d (diff) | |
download | mariadb-git-e126baafbc78f15c794082f0a93740d81041d038.tar.gz |
MDEV-9249 MariaDB un-buildable on linux64: fails @ "error: ‘ERR_remove_state’ was not declared in this scope" when linking against OpenSSL 1.0.2e
ERR_remove_state is deprecated, use ERR_remove_thread_state
if possible
Diffstat (limited to 'config.h.cmake')
-rw-r--r-- | config.h.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.h.cmake b/config.h.cmake index 73dc918bc3c..02952f6f395 100644 --- a/config.h.cmake +++ b/config.h.cmake @@ -465,7 +465,7 @@ #cmakedefine HAVE_BSD_SIGNALS 1 #cmakedefine HAVE_SVR3_SIGNALS 1 #cmakedefine HAVE_V7_SIGNALS 1 - +#cmakedefine HAVE_ERR_remove_thread_state 1 #cmakedefine HAVE_SOLARIS_STYLE_GETHOST 1 |