diff options
author | jimw@mysql.com <> | 2006-04-13 10:34:46 -0700 |
---|---|---|
committer | jimw@mysql.com <> | 2006-04-13 10:34:46 -0700 |
commit | 55727ef6d0db4b5aec48223f9618c2da3d36f989 (patch) | |
tree | 0a79040513002b1077bf7cde2601476cd8f5493c /configure.in | |
parent | 86d6b16113715a9b7e94658b6ca356e8899032fa (diff) | |
download | mariadb-git-55727ef6d0db4b5aec48223f9618c2da3d36f989.tar.gz |
Remove sql-bench from the server repository -- it is being maintained
in a distinct mysql-bench repository. Also add a new --benchdir option
to mysql-test-run.pl so the location of the mysql-bench repository can
be specified. The default location is adjacent to the source tree.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/configure.in b/configure.in index ed3d732828e..401abb26b0a 100644 --- a/configure.in +++ b/configure.in @@ -2288,22 +2288,6 @@ fi AC_SUBST(man_dirs) AC_SUBST(man1_files) -# Shall we build the bench code? -AC_ARG_WITH(bench, - [ --without-bench Skip building of the benchmark suite.], - [with_bench=$withval], - [with_bench=yes] -) - -if test "$with_bench" = "yes" -then - bench_dirs="sql-bench" -else - bench_dirs="" -fi -bench_dirs="$bench_dirs mysql-test" -AC_SUBST(bench_dirs) - # Don't build readline, i have it already AC_ARG_WITH(readline, [ --without-readline Use system readline instead of bundled copy.], @@ -2593,7 +2577,7 @@ AC_CONFIG_FILES(Makefile extra/Makefile mysys/Makefile dnl pstack/Makefile pstack/aout/Makefile sql/Makefile sql/share/Makefile dnl sql/handlerton.cc sql-common/Makefile dnl dbug/Makefile scripts/Makefile dnl - include/Makefile sql-bench/Makefile dnl + include/Makefile dnl server-tools/Makefile server-tools/instance-manager/Makefile dnl tests/Makefile Docs/Makefile support-files/Makefile dnl support-files/MacOSX/Makefile mysql-test/Makefile dnl |