List:Internals« Previous MessageNext Message »
From:konstantin Date:June 6 2005 12:43pm
Subject:bk commit into 5.0 tree (konstantin:1.1922)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of kostja. When kostja does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.1922 05/06/06 14:43:21 konstantin@stripped +1 -0
  Futher yaSSL portability fixes: hp3750 (HP aCC + HPUX).

  extra/yassl/taocrypt/src/misc.cpp
    1.4 05/06/06 14:43:16 konstantin@stripped +2 -1
    Futher yaSSL portability fixes: hp3750 (HP aCC + HPUX):
    we can remove these 2 ifdefed statements, as new handlers are not used
    anymore (yaSSL new doesn't throw exceptions and does not
    calls/resets new handlers as prescribed in the standard), but let's
    leave it to Todd, now just #ifdef the problematic code.

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	konstantin
# Host:	dragonfly.local
# Root:	/opt/local/work/mysql-5.0-root

--- 1.3/extra/yassl/taocrypt/src/misc.cpp	2005-05-31 19:56:26 +04:00
+++ 1.4/extra/yassl/taocrypt/src/misc.cpp	2005-06-06 14:43:16 +04:00
@@ -149,7 +149,8 @@
 }
 
 
-#if !(defined(_MSC_VER) && (_MSC_VER < 1300))
+#if !(defined(_MSC_VER) && (_MSC_VER < 1300)) && \
+    !(defined(__HP_aCC) && (__HP_aCC <= 35700))
 using std::new_handler;
 using std::set_new_handler;
 #endif
Thread
bk commit into 5.0 tree (konstantin:1.1922)konstantin6 Jun