diff options
-rw-r--r-- | config/ac-macros/openssl.m4 | 2 | ||||
-rw-r--r-- | include/my_global.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/config/ac-macros/openssl.m4 b/config/ac-macros/openssl.m4 index 6541a492247..aa46dd45360 100644 --- a/config/ac-macros/openssl.m4 +++ b/config/ac-macros/openssl.m4 @@ -44,7 +44,7 @@ AC_DEFUN([MYSQL_FIND_OPENSSL], [ if test -z "$OPENSSL_LIB" -o -z "$OPENSSL_INCLUDE" ; then echo "Could not find an installation of OpenSSL" if test -n "$OPENSSL_LIB" ; then - if test "$IS_LINUX" = "true"; then + if test "$TARGET_LINUX" = "true"; then echo "Looks like you've forgotten to install OpenSSL development RPM" fi fi diff --git a/include/my_global.h b/include/my_global.h index 6cd1277d358..74846fe1762 100644 --- a/include/my_global.h +++ b/include/my_global.h @@ -107,6 +107,7 @@ #undef THREAD #undef HAVE_mit_thread #undef HAVE_LINUXTHREADS +#undef HAVE_NPTL #undef HAVE_UNIXWARE7_THREADS #endif |