summaryrefslogtreecommitdiff
path: root/config/ac-macros/yassl.m4
diff options
context:
space:
mode:
authormsvensson@neptunus.(none) <>2005-09-15 08:59:29 +0200
committermsvensson@neptunus.(none) <>2005-09-15 08:59:29 +0200
commit95197f39a283f67f8a4efee066c3ab87882c28db (patch)
treef6d096d508b013d29e5b34edf0be9d6097112ac6 /config/ac-macros/yassl.m4
parentc4f5e7f1f9225372852369bf35dab4bfb58ac1c6 (diff)
downloadmariadb-git-95197f39a283f67f8a4efee066c3ab87882c28db.tar.gz
Bug #12526 yassl: Crashes in "integer.cpp"
- Disable inlining in integer.cp for sparc solaris Cun C++ 5.6
Diffstat (limited to 'config/ac-macros/yassl.m4')
-rw-r--r--config/ac-macros/yassl.m411
1 files changed, 11 insertions, 0 deletions
diff --git a/config/ac-macros/yassl.m4 b/config/ac-macros/yassl.m4
index 92133339343..7af39db48be 100644
--- a/config/ac-macros/yassl.m4
+++ b/config/ac-macros/yassl.m4
@@ -20,6 +20,17 @@ AC_DEFUN([MYSQL_CHECK_YASSL], [
-L\$(top_builddir)/extra/yassl/taocrypt/src -ltaocrypt"
openssl_includes="-I\$(top_srcdir)/extra/yassl/include"
AC_DEFINE([HAVE_OPENSSL], [1], [Defined by configure. Using yaSSL for OpenSSL emulation.])
+
+ # System specific checks
+ yassl_integer_extra_cxxflags=""
+ case $SYSTEM_TYPE--$CXX_VERSION in
+ sparc*solaris*--*Sun*C++*5.6*)
+ # Disable inlining when compiling taocrypt/src/integer.cpp
+ yassl_integer_extra_cxxflags="+d"
+ ;;
+ esac
+ AC_SUBST([yassl_integer_extra_cxxflags])
+
else
yassl_dir=""
AC_MSG_RESULT(no)