summaryrefslogtreecommitdiff
path: root/mysys/mf_path.c
diff options
context:
space:
mode:
authorunknown <greg@mysql.com>2003-04-24 20:48:54 -0400
committerunknown <greg@mysql.com>2003-04-24 20:48:54 -0400
commitae5e364c19dba6c87e2fed60df1ee4c417e1f893 (patch)
treec36594ab694e521b8b9f7a633e650af1857c88f4 /mysys/mf_path.c
parent1a01f0ff08b2e22602605d59e009d19500f9fb75 (diff)
downloadmariadb-git-ae5e364c19dba6c87e2fed60df1ee4c417e1f893.tar.gz
Changes from Novell for NetWare platform
include/my_pthread.h: Consolidated NetWare pthread_exit() changes. mysys/mf_path.c: NetWare needs a semicolon path delimiter. mysys/my_pthread.c: Consolidated NetWare pthread_exit() changes. sql/mini_client.cc: Modified to match my_connect(). sql/mysqld.cc: Consolidated NetWare pthread_exit() changes. sql/slave.cc: Consolidated NetWare pthread_exit() changes. sql/sql_load.cc: Stat properites should not be checked here on NetWare.
Diffstat (limited to 'mysys/mf_path.c')
-rw-r--r--mysys/mf_path.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysys/mf_path.c b/mysys/mf_path.c
index 23eadd2acce..1ecd5fbb2b1 100644
--- a/mysys/mf_path.c
+++ b/mysys/mf_path.c
@@ -77,6 +77,9 @@ my_string my_path(my_string to, const char *progname,
#define F_OK 0
#define PATH_SEP ';'
#define PROGRAM_EXTENSION ".exe"
+#elif defined(__NETWARE__)
+#define PATH_SEP ';'
+#define PROGRAM_EXTENSION ".nlm"
#else
#define PATH_SEP ':'
#endif