diff options
author | unknown <reggie@linux.site> | 2005-08-12 04:44:04 -0600 |
---|---|---|
committer | unknown <reggie@linux.site> | 2005-08-12 04:44:04 -0600 |
commit | 0318ed0e75f57f0fa28dffa196cea4dfe9c85a23 (patch) | |
tree | 3eb71567c7b8ca7a75d485e2c734f9b4cb18d020 /innobase | |
parent | 058d5bff6e73eb4b9b36cb0bb82687557e3c317d (diff) | |
download | mariadb-git-0318ed0e75f57f0fa28dffa196cea4dfe9c85a23.tar.gz |
Bug #6581 Failure to start mysql server on Windows with AWE option enabled
innobase/srv/srv0start.c:
added line to error message clearly indicating that to get AWE support
the user must compile InnoDB with __WIN2000__ defined.
Diffstat (limited to 'innobase')
-rw-r--r-- | innobase/srv/srv0start.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/innobase/srv/srv0start.c b/innobase/srv/srv0start.c index 62df7301cc9..87f4c31257a 100644 --- a/innobase/srv/srv0start.c +++ b/innobase/srv/srv0start.c @@ -1052,7 +1052,8 @@ innobase_start_or_create_for_mysql(void) fprintf(stderr, "InnoDB: Error: You have specified innodb_buffer_pool_awe_mem_mb\n" -"InnoDB: in my.cnf, but AWE can only be used in Windows 2000 and later.\n"); +"InnoDB: in my.cnf, but AWE can only be used in Windows 2000 and later.\n" +"InnoDB: To use AWE, InnoDB must be compiled with __WIN2000__ defined.\n"); return(DB_ERROR); } |