summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorunknown <svoj@mysql.com>2005-06-15 01:39:58 +0500
committerunknown <svoj@mysql.com>2005-06-15 01:39:58 +0500
commit70b58ecb9112e3fbcd538ee2cdcb9951a8499a3b (patch)
treeb849492a438afaedf21cbc9119acd3d888c23832 /extra
parentd5600efdc1ec98c1b9ef7190565788e7174e45f0 (diff)
downloadmariadb-git-70b58ecb9112e3fbcd538ee2cdcb9951a8499a3b.tar.gz
WL#2286 - Compile MySQL w/YASSL support
Fix for link failures on boxes with non-gnu compiler. Fix for compilation failure on hpux11. extra/yassl/taocrypt/src/misc.cpp: Adjust __HP_aCC value to solve compilation problem on hpux11. tools/Makefile.am: Add a dummy C++ file to mysqltestmanager to make libtool use a C++ linker: this lets mysqltestmanager link when using yaSSL and a non-gcc C++ compiler.
Diffstat (limited to 'extra')
-rw-r--r--extra/yassl/taocrypt/src/misc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/yassl/taocrypt/src/misc.cpp b/extra/yassl/taocrypt/src/misc.cpp
index 6d43273ef20..3ec4502ed57 100644
--- a/extra/yassl/taocrypt/src/misc.cpp
+++ b/extra/yassl/taocrypt/src/misc.cpp
@@ -136,7 +136,7 @@ unsigned long Crop(unsigned long value, unsigned int size)
#if !(defined(_MSC_VER) && (_MSC_VER < 1300)) && \
- !(defined(__HP_aCC) && (__HP_aCC <= 35700))
+ !(defined(__HP_aCC) && (__HP_aCC <= 36300))
using std::new_handler;
using std::set_new_handler;
#endif