diff options
author | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2010-07-15 08:26:38 -0300 |
---|---|---|
committer | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2010-07-15 08:26:38 -0300 |
commit | 9f3aa51ba15e8a19670fc2ccf786f893f9b37b64 (patch) | |
tree | 7448b8d48b397207357910233d7213495e18b77d /storage | |
parent | 79dcc17d49d717defe8eda0db03efd12ec41b838 (diff) | |
download | mariadb-git-9f3aa51ba15e8a19670fc2ccf786f893f9b37b64.tar.gz |
WL#5486: Remove code for unsupported platforms
Remove VMS specific code.
Diffstat (limited to 'storage')
-rw-r--r-- | storage/heap/hp_open.c | 4 | ||||
-rw-r--r-- | storage/myisam/mi_log.c | 3 | ||||
-rw-r--r-- | storage/myisam/mi_open.c | 3 | ||||
-rw-r--r-- | storage/myisammrg/myrg_open.c | 3 |
4 files changed, 0 insertions, 13 deletions
diff --git a/storage/heap/hp_open.c b/storage/heap/hp_open.c index ef2ce15f9b3..12d9bfe1ed3 100644 --- a/storage/heap/hp_open.c +++ b/storage/heap/hp_open.c @@ -16,10 +16,6 @@ /* open a heap-database */ #include "heapdef.h" -#ifdef VMS -#include "hp_static.c" /* Stupid vms-linker */ -#endif - #include "my_sys.h" /* diff --git a/storage/myisam/mi_log.c b/storage/myisam/mi_log.c index 8de9e190d4a..f6bbaab1f87 100644 --- a/storage/myisam/mi_log.c +++ b/storage/myisam/mi_log.c @@ -22,9 +22,6 @@ #ifdef __WIN__ #include <fcntl.h> #endif -#ifdef VMS -#include <processes.h> -#endif #undef GETPID /* For HPUX */ #ifdef THREAD diff --git a/storage/myisam/mi_open.c b/storage/myisam/mi_open.c index 0a7ab397523..5b3da9841b8 100644 --- a/storage/myisam/mi_open.c +++ b/storage/myisam/mi_open.c @@ -23,9 +23,6 @@ #ifdef __WIN__ #include <fcntl.h> #endif -#ifdef VMS -#include "static.c" -#endif static void setup_key_functions(MI_KEYDEF *keyinfo); #define get_next_element(to,pos,size) { memcpy((char*) to,pos,(size_t) size); \ diff --git a/storage/myisammrg/myrg_open.c b/storage/myisammrg/myrg_open.c index e4793ffe672..c9e19d32e96 100644 --- a/storage/myisammrg/myrg_open.c +++ b/storage/myisammrg/myrg_open.c @@ -18,9 +18,6 @@ #include "myrg_def.h" #include <stddef.h> #include <errno.h> -#ifdef VMS -#include "mrg_static.c" -#endif /* open a MyISAM MERGE table |