diff options
author | unknown <acurtis@xiphis.org> | 2006-05-01 21:33:09 -0700 |
---|---|---|
committer | unknown <acurtis@xiphis.org> | 2006-05-01 21:33:09 -0700 |
commit | fa15fbf34738550527b6b102960b7d9750fd959d (patch) | |
tree | bf7d4b8ff5d717f0a72d8dfb958718da47855d85 /BUILD | |
parent | 3d35b05a0cb35e873ca4ecf595e4524809281634 (diff) | |
download | mariadb-git-fa15fbf34738550527b6b102960b7d9750fd959d.tar.gz |
WL#3201 post-review fixups
end plugin/module naming schizophrenia
fixup shell code and m4 macro comments
cmakelists.txt included in EXTRA_DIST
BUILD/SETUP.sh:
change module -> plugin
config/ac-macros/plugins.m4:
change module -> plugin
rename some macros
fixup comments
alter shell code to use similar 'test "X$var" = Xfoo"' which autoconf generates
configure.in:
change module -> plugin
move plugin mandatory declarations near rest of plugin declaration
storage/archive/Makefile.am:
cmakelists.txt needed in EXTRA_DIST
storage/blackhole/Makefile.am:
cmakelists.txt needed in EXTRA_DIST
storage/csv/Makefile.am:
cmakelists.txt needed in EXTRA_DIST
storage/example/Makefile.am:
cmakelists.txt needed in EXTRA_DIST
Diffstat (limited to 'BUILD')
-rwxr-xr-x | BUILD/SETUP.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BUILD/SETUP.sh b/BUILD/SETUP.sh index d115e3c29dc..589e609beeb 100755 --- a/BUILD/SETUP.sh +++ b/BUILD/SETUP.sh @@ -147,9 +147,9 @@ static_link="$static_link --with-client-ldflags=-all-static" local_infile_configs="--enable-local-infile" -max_no_embedded_configs="$SSL_LIBRARY --with-modules=max" -max_no_ndb_configs="$SSL_LIBRARY --with-modules=max-no-ndb --with-embedded-server" -max_configs="$SSL_LIBRARY --with-modules=max --with-embedded-server" +max_no_embedded_configs="$SSL_LIBRARY --with-plugins=max" +max_no_ndb_configs="$SSL_LIBRARY --with-plugins=max-no-ndb --with-embedded-server" +max_configs="$SSL_LIBRARY --with-plugins=max --with-embedded-server" # # CPU and platform specific compilation flags. |