Commit b027f833 authored by unknown's avatar unknown

Merge qualinost.(none):/home/mtaylor/src/mysql-5.0-maint

into  qualinost.(none):/home/mtaylor/src/mysql-5.1-maint


mysql-test/r/myisam.result:
  Auto merged
mysys/default.c:
  Auto merged
parents 8cad8f9b fad8db22
...@@ -987,10 +987,11 @@ static uint my_get_system_windows_directory(char *buffer, uint size) ...@@ -987,10 +987,11 @@ static uint my_get_system_windows_directory(char *buffer, uint size)
Everywhere else, this is: Everywhere else, this is:
1. /etc/ 1. /etc/
2. getenv(DEFAULT_HOME_ENV) 2. /etc/mysql/
3. "" 3. getenv(DEFAULT_HOME_ENV)
4. "~/" 4. ""
5. --sysconfdir=<path> 5. "~/"
6. --sysconfdir=<path>
*/ */
...@@ -1012,6 +1013,7 @@ static void init_default_directories() ...@@ -1012,6 +1013,7 @@ static void init_default_directories()
*ptr++= "sys:/etc/"; *ptr++= "sys:/etc/";
#else #else
*ptr++= "/etc/"; *ptr++= "/etc/";
*ptr++= "/etc/mysql/";
#endif #endif
if ((env= getenv(STRINGIFY_ARG(DEFAULT_HOME_ENV)))) if ((env= getenv(STRINGIFY_ARG(DEFAULT_HOME_ENV))))
*ptr++= env; *ptr++= env;
......
...@@ -132,7 +132,13 @@ if test -z "$VISUAL" ...@@ -132,7 +132,13 @@ if test -z "$VISUAL"
then then
if test -z "$EDITOR" if test -z "$EDITOR"
then then
EDIT=emacs # Honor debian sensible-editor
if test -x "/usr/bin/sensible-editor"
then
EDIT=/usr/bin/sensible-editor
else
EDIT=emacs
fi
else else
EDIT="$EDITOR" EDIT="$EDITOR"
fi fi
......
...@@ -472,6 +472,14 @@ sub find_groups ...@@ -472,6 +472,14 @@ sub find_groups
{ {
$data[$i] = $line; $data[$i] = $line;
} }
if (-f "/etc/mysql/my.cnf" && -r "/etc/mysql/my.cnf")
{
open(MY_CNF, "</etc/mysql/my.cnf") && (@tmp=<MY_CNF>) && close(MY_CNF);
}
for (; ($line = shift @tmp); $i++)
{
$data[$i] = $line;
}
if (defined($ENV{MYSQL_HOME}) && -f "$ENV{MYSQL_HOME}/my.cnf" && if (defined($ENV{MYSQL_HOME}) && -f "$ENV{MYSQL_HOME}/my.cnf" &&
-r "$ENV{MYSQL_HOME}/my.cnf") -r "$ENV{MYSQL_HOME}/my.cnf")
{ {
...@@ -491,7 +499,7 @@ sub find_groups ...@@ -491,7 +499,7 @@ sub find_groups
$data[$i] = $line; $data[$i] = $line;
} }
} }
chop @data; chomp @data;
# Make a list of the wanted group ids # Make a list of the wanted group ids
if (defined($raw_gids)) if (defined($raw_gids))
{ {
......
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