diff options
author | unknown <monty@donna.mysql.fi> | 2001-04-13 16:21:38 +0300 |
---|---|---|
committer | unknown <monty@donna.mysql.fi> | 2001-04-13 16:21:38 +0300 |
commit | 3b78ab65bb8e340b328cac5bca3188f64396ed61 (patch) | |
tree | d5bf5dce34ab694fbf5f6372332cd9a4226fe04c /Build-tools/Do-all-build-steps | |
parent | 0948956b802845699f9868b1e2c6b61a74f36b8d (diff) | |
download | mariadb-git-3b78ab65bb8e340b328cac5bca3188f64396ed61.tar.gz |
Changes to get mysqld-max to compile
BUILD/SETUP.sh:
Changed to use -ffixed-ebp with -fomit-frame-pointer
BUILD/compile-pentium:
Changed to use reckless flags as defaults as this appears to work
good, even with stack-traces.
Build-tools/Do-all-build-steps:
Innobase -> Innodb
Docs/manual.texi:
Added information about -ffixed-ebp
scripts/safe_mysqld.sh:
Added option --mysqld-version
Use mysqld-max binary as default if installed and --mysqld or --mysqld-version
is not used
support-files/mysql-max.spec.sh:
Fixed bugs
support-files/mysql.spec.sh:
Added Max package
tests/fork_big.pl:
Added --user and --password
Diffstat (limited to 'Build-tools/Do-all-build-steps')
-rwxr-xr-x | Build-tools/Do-all-build-steps | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build-tools/Do-all-build-steps b/Build-tools/Do-all-build-steps index c3c0f4a6bf8..ccd437a3b7e 100755 --- a/Build-tools/Do-all-build-steps +++ b/Build-tools/Do-all-build-steps @@ -56,7 +56,7 @@ aclocal; autoheader; aclocal; automake; autoconf (cd bdb/dist && sh s_all) (cd innobase && aclocal && autoheader && aclocal && automake && autoconf) -# A normal user starts here. We must use mit-threads, bdb and innobase. +# A normal user starts here. We must use mit-threads, bdb and innodb. # Otherwise they do not end up in the distribution. ./configure \ --with-unix-socket-path=/var/tmp/mysql.sock \ @@ -64,7 +64,7 @@ aclocal; autoheader; aclocal; automake; autoconf --with-mit-threads=yes $EXTRA_CONFIG \ --enable-thread-safe-client \ --with-berkeley-db \ - --with-innobase + --with-innodb gmake -j 2 |