Commit fd64a0db authored by Davi Arnaut's avatar Davi Arnaut

WL#5486: Remove code for unsupported platforms

Remove OS/2 specific code.
parent 37113a68
...@@ -522,10 +522,10 @@ int init_embedded_server(int argc, char **argv, char **groups) ...@@ -522,10 +522,10 @@ int init_embedded_server(int argc, char **argv, char **groups)
mysql_data_home= mysql_real_data_home; mysql_data_home= mysql_real_data_home;
mysql_data_home_len= mysql_real_data_home_len; mysql_data_home_len= mysql_real_data_home_len;
/* Get default temporary directory */ /* Get default temporary directory */
opt_mysql_tmpdir=getenv("TMPDIR"); /* Use this if possible */ opt_mysql_tmpdir=getenv("TMPDIR"); /* Use this if possible */
#if defined( __WIN__) || defined(OS2) #if defined(__WIN__)
if (!opt_mysql_tmpdir) if (!opt_mysql_tmpdir)
opt_mysql_tmpdir=getenv("TEMP"); opt_mysql_tmpdir=getenv("TEMP");
if (!opt_mysql_tmpdir) if (!opt_mysql_tmpdir)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment