diff options
author | unknown <lenz@mysql.com> | 2002-08-27 16:03:42 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2002-08-27 16:03:42 +0200 |
commit | 9f352497f88bd956110b4f7427bd24ed4ebb0e69 (patch) | |
tree | 5bfa9c8b149d9be73ddf20bf2915a82669a1f256 /Build-tools | |
parent | cfc861537da2f256f11823b3a4997a033eec73dc (diff) | |
download | mariadb-git-9f352497f88bd956110b4f7427bd24ed4ebb0e69.tar.gz |
- Added option "--raid" to Build-Tools/Do-compile
- Added 4.0.4 News section and updated Alpha-Linux compilation notes
to manual.texi
- Tagged ChangeSet 1.1244.1.2 as mysql-4.0.3
Build-tools/Do-compile:
- Added --raid option to be able to build with MySQL RAID suppo
Docs/manual.texi:
- Updated compilation notes on Alpha-Linux
- Added 4.0.4 News section
- Added note about Sinisa's last fix (mostly only to have an item in the
news section)
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Do-compile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile index 061b0c4147f..d09fceb37b3 100755 --- a/Build-tools/Do-compile +++ b/Build-tools/Do-compile @@ -5,9 +5,9 @@ $opt_distribution=$opt_user=$opt_result=$opt_config_options=$opt_config_env=""; $opt_dbd_options=$opt_perl_options=$opt_make_options=$opt_suffix=""; $opt_tmp=$opt_version_suffix=""; $opt_help=$opt_Information=$opt_delete=$opt_debug=$opt_stage=$opt_rsh_mail=$opt_no_test=$opt_no_perl=$opt_with_low_memory=$opt_fast_benchmark=$opt_static_client=$opt_static_server=$opt_static_perl=$opt_sur=$opt_with_small_disk=$opt_local_perl=$opt_tcpip=$opt_build_thread=$opt_no_mysqltest=$opt_use_old_distribution=$opt_enable_shared=$opt_no_crash_me=$opt_no_strip=0; -$opt_innodb=$opt_bdb=0; +$opt_innodb=$opt_bdb=$opt_raid=0; -GetOptions("Information","help","distribution=s","user=s","result=s","delete","no-test","no-mysqltest","perl-files=s","debug","config-options=s","config-env=s","stage=i","rsh-mail","with-low-memory","fast-benchmark","tmp=s","static-client","static-server","static-perl","no-perl","local-perl","perl-options=s","make-options=s", "sur","with-small-disk","dbd-options=s","tcpip","suffix=s","build-thread=i","innodb","bdb","use-old-distribution","enable-shared","no-crash-me","no-strip","version-suffix=s", "with-other-libc=s") || usage(); +GetOptions("Information","help","distribution=s","user=s","result=s","delete","no-test","no-mysqltest","perl-files=s","debug","config-options=s","config-env=s","stage=i","rsh-mail","with-low-memory","fast-benchmark","tmp=s","static-client","static-server","static-perl","no-perl","local-perl","perl-options=s","make-options=s","sur","with-small-disk","dbd-options=s","tcpip","suffix=s","build-thread=i","innodb","bdb","raid","use-old-distribution","enable-shared","no-crash-me","no-strip","version-suffix=s", "with-other-libc=s") || usage(); usage() if ($opt_help || $opt_Information); usage() if (!$opt_distribution); @@ -169,6 +169,10 @@ if ($opt_stage <= 1) { $opt_config_options.= " --with-berkeley-db" } + if ($opt_raid) + { + $opt_config_options.= " --with-raid" + } if ($opt_innodb) { $opt_config_options.= " --with-innodb" |