diff options
author | unknown <monty@hundin.mysql.fi> | 2002-08-28 17:00:58 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-08-28 17:00:58 +0300 |
commit | 242a3755b3dc96dc8a886e9d22b0d60a046b6f47 (patch) | |
tree | 46c7f1bee6132602a63c4b88d2a131d6ab149d77 /sql/mysqld.cc | |
parent | 6c13a5724c59ab4ca5fac479f82124e22de1a00d (diff) | |
download | mariadb-git-242a3755b3dc96dc8a886e9d22b0d60a046b6f47.tar.gz |
Portability fixes for windows
include/config-win.h:
Portability fix for windows
include/my_global.h:
General portability fix
sql/mysqld.cc:
Portability fix for windows
sql/set_var.cc:
Portability fix for windows
sql/sql_yacc.yy:
Portability fix for windows
Diffstat (limited to 'sql/mysqld.cc')
-rw-r--r-- | sql/mysqld.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc index 4ecded767d1..28367670b8e 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -3339,7 +3339,7 @@ struct my_option my_long_options[] = #ifdef USE_SYMDIR {"use-symbolic-links", 's', "Enable symbolic link support", (gptr*) &my_use_symdir, (gptr*) &my_use_symdir, 0, GET_BOOL, NO_ARG, - USE_PURIFY(0,1), 0, 0, 0, 0, 0}, + IF_PURIFY(0,1), 0, 0, 0, 0, 0}, #endif {"user", 'u', "Run mysqld daemon as user", (gptr*) &mysqld_user, (gptr*) &mysqld_user, 0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0}, |