diff options
author | unknown <monty@mashka.mysql.fi> | 2003-01-28 09:02:51 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2003-01-28 09:02:51 +0200 |
commit | c97ddd06f4c9eceac9b698f07eb5cc168b1006b6 (patch) | |
tree | bbd008d05f1c1111676b46f092fde8257666d9c2 /myisam | |
parent | 3595556335b31d908555da9abaa669d3cfcce1e2 (diff) | |
parent | 88b405c4e21162b73077e000a9b8f7ffe9d6d251 (diff) | |
download | mariadb-git-c97ddd06f4c9eceac9b698f07eb5cc168b1006b6.tar.gz |
merge
include/my_sys.h:
Auto merged
sql/item_create.cc:
Auto merged
sql/log.cc:
Auto merged
sql/mysql_priv.h:
Auto merged
sql/set_var.cc:
Auto merged
sql/sql_parse.cc:
Auto merged
innobase/btr/btr0cur.c:
Use local file
scripts/make_binary_distribution.sh:
Add mysql_waitpid
sql/mysqld.cc:
Simple cleanup
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__ */ |