diff options
author | serg@serg.mylan <> | 2004-01-22 14:46:54 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2004-01-22 14:46:54 +0100 |
commit | fbf4299b5c19e583fea70f1c6333dba37a07c563 (patch) | |
tree | 074d84010f261bde1e1ab9e3300cb6f136d5f63a /mysys | |
parent | 03d60deed741d8ee348e610d56d49e0fa6f6dce2 (diff) | |
parent | c4a52e4ac41a50d68a6a9b207dcb6610ffe8d70d (diff) | |
download | mariadb-git-fbf4299b5c19e583fea70f1c6333dba37a07c563.tar.gz |
Merge bk-internal:/home/bk/mysql-4.1/
into serg.mylan:/usr/home/serg/Abk/mysql-4.1
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/my_new.cc | 4 | ||||
-rw-r--r-- | mysys/raid.cc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mysys/my_new.cc b/mysys/my_new.cc index 5f2da90bbd1..ec27502d8aa 100644 --- a/mysys/my_new.cc +++ b/mysys/my_new.cc @@ -19,9 +19,9 @@ with gcc 3.0.x to avoid including libstdc++ */ -#include "mysys_priv.h" +#ifdef USE_MYSYS_NEW -#ifdef USE_MYSYS_NEW +#include "mysys_priv.h" void *operator new (size_t sz) { diff --git a/mysys/raid.cc b/mysys/raid.cc index 0b688464fb3..7eb19ffb16a 100644 --- a/mysys/raid.cc +++ b/mysys/raid.cc @@ -70,6 +70,8 @@ tonu@mysql.com & monty@mysql.com */ +#if defined(USE_RAID) && !defined(MYSQL_CLIENT) + #ifdef __GNUC__ #pragma implementation // gcc: Class implementation #endif @@ -79,8 +81,6 @@ #include <m_string.h> #include <assert.h> -#if defined(USE_RAID) && !defined(MYSQL_CLIENT) - #define RAID_SEEK_DONE ~(off_t) 0 #define RAID_SIZE_UNKNOWN ~(my_off_t) 0 |