diff options
author | brian@zim.(none) <> | 2006-04-15 08:49:00 -0700 |
---|---|---|
committer | brian@zim.(none) <> | 2006-04-15 08:49:00 -0700 |
commit | ba2502b9c3b5bcc57115c9f325f12e4350a8bdfe (patch) | |
tree | 0016808c56b0545d9e84a1650e620b6bf9dc516b /mysys/mf_tempdir.c | |
parent | 36b897f4c6750b7bca2e03164998ab2dffe62d9a (diff) | |
download | mariadb-git-ba2502b9c3b5bcc57115c9f325f12e4350a8bdfe.tar.gz |
Another long patch to remove the rest of the OS2 support.
Diffstat (limited to 'mysys/mf_tempdir.c')
-rw-r--r-- | mysys/mf_tempdir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/mf_tempdir.c b/mysys/mf_tempdir.c index e79980ab931..d12b73a2ca2 100644 --- a/mysys/mf_tempdir.c +++ b/mysys/mf_tempdir.c @@ -17,7 +17,7 @@ #include "mysys_priv.h" #include <m_string.h> -#if defined( __WIN__) || defined(OS2) || defined(__NETWARE__) +#if defined( __WIN__) || defined(__NETWARE__) #define DELIM ';' #else #define DELIM ':' @@ -38,7 +38,7 @@ my_bool init_tmpdir(MY_TMPDIR *tmpdir, const char *pathlist) { /* Get default temporary directory */ pathlist=getenv("TMPDIR"); /* Use this if possible */ -#if defined( __WIN__) || defined(OS2) || defined(__NETWARE__) +#if defined( __WIN__) || defined(__NETWARE__) if (!pathlist) pathlist=getenv("TEMP"); if (!pathlist) |