diff options
author | unknown <greg@mysql.com> | 2003-04-24 20:48:54 -0400 |
---|---|---|
committer | unknown <greg@mysql.com> | 2003-04-24 20:48:54 -0400 |
commit | ae5e364c19dba6c87e2fed60df1ee4c417e1f893 (patch) | |
tree | c36594ab694e521b8b9f7a633e650af1857c88f4 /mysys/mf_path.c | |
parent | 1a01f0ff08b2e22602605d59e009d19500f9fb75 (diff) | |
download | mariadb-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.c | 3 |
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 |