diff options
author | unknown <monty@tik.mysql.fi> | 2001-05-28 02:45:19 +0300 |
---|---|---|
committer | unknown <monty@tik.mysql.fi> | 2001-05-28 02:45:19 +0300 |
commit | b8ca36124b34a4ee63821c4b772e299ac10b2332 (patch) | |
tree | 58dc666b6a55c3f19c8f553d66b95eccd0680274 /sql | |
parent | bb1f850150e5e1bf8ba9c299f8dd3987d8c7aad1 (diff) | |
download | mariadb-git-b8ca36124b34a4ee63821c4b772e299ac10b2332.tar.gz |
Fixed portability bug in my_config.sh
Added print of --use-symbolic-links in mysqld
Docs/manual.texi:
Added new links
configure.in:
Fixes for gcc
scripts/mysql_config.sh:
Fixed portability bug.
sql/mysqld.cc:
Added print of --use-symbolic-links
Diffstat (limited to 'sql')
-rw-r--r-- | sql/mysqld.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc index dccb54ae7ec..b009387f5c0 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -3039,8 +3039,12 @@ static void usage(void) --console Don't remove the console window\n\ --install Install mysqld as a service (NT)\n\ --remove Remove mysqld from the service list (NT)\n\ - --standalone Dummy option to start as a standalone program (NT)\n\ + --standalone Dummy option to start as a standalone program (NT)\ "); +#ifdef USE_SYMDIR + puts("--use-symbolic-links Enable symbolic link support"); +#endif + puts(""); #endif #ifdef HAVE_BERKELEY_DB puts("\ |