Commit ba677667 authored by unknown's avatar unknown
Browse files

Merge joreland@bk-internal.mysql.com:/home/bk/mysql-5.1

into  eel.(none):/home/jonas/src/mysql-5.1-push


sql/set_var.cc:
  Auto merged
sql/set_var.h:
  Auto merged
sql/sql_show.cc:
  Auto merged
storage/ndb/src/kernel/blocks/backup/Backup.cpp:
  Auto merged
parents 173bdc33 bbc293fd
Loading
Loading
Loading
Loading
+0 −0

Empty file added.

+2 −1
Original line number Diff line number Diff line
@@ -37,8 +37,9 @@ static char *add_load_option(char *ptr,const char *object,
			     const char *statement);

static my_bool	verbose=0,lock_tables=0,ignore_errors=0,opt_delete=0,
		replace=0,silent=0,ignore=0,opt_compress=0,opt_local_file=0,
		replace=0,silent=0,ignore=0,opt_compress=0,
                opt_low_priority= 0, tty_password= 0;
static uint     opt_local_file=0;
static MYSQL	mysql_connection;
static char	*opt_password=0, *current_user=0,
		*current_host=0, *current_db=0, *fields_terminated=0,
+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ public:


// no gas on these systems ?, disable for now
#if defined(__sun__) || defined (__QNX__)
#if defined(__sun__) || defined (__QNX__) || defined (__APPLE__)
    #define TAOCRYPT_DISABLE_X86ASM
#endif

+3 −1
Original line number Diff line number Diff line
@@ -25,7 +25,8 @@



#if !defined(yaSSL_NEW_HPP) && defined(__GNUC__) && !defined(__ICC)
#if !defined(yaSSL_NEW_HPP) && defined(__GNUC__) 
#if !(defined(__ICC) || defined(__INTEL_COMPILER))

#define yaSSL_NEW_HPP

@@ -46,5 +47,6 @@ static int __cxa_pure_virtual()
} // extern "C"

#endif // __GNUC__ > 2
#endif // ! _ICC
#endif // yaSSL_NEW_HPP && __GNUC__
+2 −1
Original line number Diff line number Diff line
@@ -61,9 +61,10 @@ typedef unsigned int word32;

// compilers we've found 64-bit multiply insructions for
#if defined(__GNUC__) || defined(_MSC_VER) || defined(__DECCXX)
#if !(defined(__ICC) || defined(__INTEL_COMPILER))
    #define HAVE_64_MULTIPLY
#endif

#endif
    
#if defined(HAVE_64_MULTIPLY) && (defined(__alpha__) || defined(__ia64__) \
    || defined(_ARCH_PPC64) || defined(__mips64)  || defined(__x86_64__)) 
Loading