diff options
author | monty@mashka.mysql.fi <> | 2003-01-28 09:02:51 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-01-28 09:02:51 +0200 |
commit | 6b712793825955f37e27497b937f7c5cba0b71c6 (patch) | |
tree | bbd008d05f1c1111676b46f092fde8257666d9c2 /myisam | |
parent | 52e440b9a784289bb1d502e9891c7250bf9b0b47 (diff) | |
parent | 152f0603e7348ef58103ddf0c958a3373dd958bc (diff) | |
download | mariadb-git-6b712793825955f37e27497b937f7c5cba0b71c6.tar.gz |
merge
Diffstat (limited to 'myisam')
-rw-r--r-- | myisam/mi_test3.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/myisam/mi_test3.c b/myisam/mi_test3.c index ac36f55a181..6111167b38f 100644 --- a/myisam/mi_test3.c +++ b/myisam/mi_test3.c @@ -16,6 +16,8 @@ /* Test av locking */ +#ifndef __NETWARE__ + #include "myisam.h" #include <sys/types.h> #ifdef HAVE_SYS_WAIT_H @@ -483,3 +485,15 @@ int test_update(MI_INFO *file,int id,int lock_type) printf("%2d: update: %5d\n",id,update); fflush(stdout); return 0; } + +#else /* __NETWARE__ */ + +#include <stdio.h> + +main() +{ + fprintf(stderr,"this test has not been ported to NetWare\n"); + return 0; +} + +#endif /* __NETWARE__ */ |