diff options
author | unknown <brian@zim.(none)> | 2006-08-18 21:19:19 -0700 |
---|---|---|
committer | unknown <brian@zim.(none)> | 2006-08-18 21:19:19 -0700 |
commit | b470b3ab87743a13470098b8446da3fe2e100c9e (patch) | |
tree | 5e3642a4d6fe9f0bfc4b88394c8d2dae810fb30b /BUILD | |
parent | bc4215111ca83b8535915c8b8d207fe105b4cb66 (diff) | |
download | mariadb-git-b470b3ab87743a13470098b8446da3fe2e100c9e.tar.gz |
Major changes are plug.in files created for almost all storage engines. A few stray BDB references removed.
storage/blackhole/plug.in:
BitKeeper file /home/brian/mysql/arch-5.1/storage/blackhole/plug.in
storage/heap/plug.in:
BitKeeper file /home/brian/mysql/arch-5.1/storage/heap/plug.in
storage/myisam/plug.in:
BitKeeper file /home/brian/mysql/arch-5.1/storage/myisam/plug.in
storage/myisammrg/plug.in:
BitKeeper file /home/brian/mysql/arch-5.1/storage/myisammrg/plug.in
storage/federated/ha_federated.h:
Rename: sql/ha_federated.h -> storage/federated/ha_federated.h
BUILD/FINISH.sh:
Stray BDB reference
BUILD/autorun.sh:
Stray bdb reference
BUILD/compile-alpha-cxx:
Stray bdb reference
BUILD/compile-alpha-debug:
Stray bdb reference
BUILD/compile-dist:
Stray BDB Reference
BUILD/compile-ia64-debug-max:
Stray BDB reference
configure.in:
All plugin code is now in plug.in files. Few tricky exceptions left.
sql/CMakeLists.txt:
Removed federated references
sql/Makefile.am:
Removed federated references
sql/mysql_priv.h:
stray bdb reference
storage/example/ha_example.cc:
Enabled all of mysql include
storage/federated/ha_federated.cc:
Added plugin defs
storage/csv/plug.in:
New BitKeeper file ``storage/csv/plug.in''
storage/federated/Makefile.am:
New BitKeeper file ``storage/federated/Makefile.am''
storage/federated/plug.in:
New BitKeeper file ``storage/federated/plug.in''
storage/innobase/plug.in:
New BitKeeper file ``storage/innobase/plug.in''
storage/ndb/plug.in:
New BitKeeper file ``storage/ndb/plug.in''
Diffstat (limited to 'BUILD')
-rw-r--r-- | BUILD/FINISH.sh | 2 | ||||
-rwxr-xr-x | BUILD/autorun.sh | 1 | ||||
-rwxr-xr-x | BUILD/compile-alpha-cxx | 2 | ||||
-rwxr-xr-x | BUILD/compile-alpha-debug | 2 | ||||
-rwxr-xr-x | BUILD/compile-dist | 1 | ||||
-rwxr-xr-x | BUILD/compile-ia64-debug-max | 2 |
6 files changed, 4 insertions, 6 deletions
diff --git a/BUILD/FINISH.sh b/BUILD/FINISH.sh index a0e702515e6..51f6e909172 100644 --- a/BUILD/FINISH.sh +++ b/BUILD/FINISH.sh @@ -5,7 +5,7 @@ configure="./configure $base_configs $extra_configs" commands="\ $make -k distclean || true -/bin/rm -rf */.deps/*.P config.cache storage/innobase/config.cache storage/bdb/build_unix/config.cache bdb/dist/autom4te.cache autom4te.cache innobase/autom4te.cache; +/bin/rm -rf */.deps/*.P config.cache storage/innobase/config.cache autom4te.cache innobase/autom4te.cache; path=`dirname $0` . \"$path/autorun.sh\"" diff --git a/BUILD/autorun.sh b/BUILD/autorun.sh index 9ffe61b250a..337f43512fa 100755 --- a/BUILD/autorun.sh +++ b/BUILD/autorun.sh @@ -11,7 +11,6 @@ if [ -f /usr/bin/glibtoolize ] LIBTOOLIZE=libtoolize fi -(cd storage/bdb/dist && sh s_all) (cd storage/innobase && aclocal && autoheader && \ $LIBTOOLIZE --automake --force --copy && \ automake --force --add-missing --copy && autoconf) diff --git a/BUILD/compile-alpha-cxx b/BUILD/compile-alpha-cxx index 610d358ef82..1624f4ed622 100755 --- a/BUILD/compile-alpha-cxx +++ b/BUILD/compile-alpha-cxx @@ -1,7 +1,7 @@ /bin/rm -f */.deps/*.P */*.o make -k clean /bin/rm -f */.deps/*.P */*.o -/bin/rm -f */.deps/*.P config.cache storage/innobase/config.cache storage/bdb/build_unix/config.cache mysql-*.tar.gz +/bin/rm -f */.deps/*.P config.cache storage/innobase/config.cache mysql-*.tar.gz path=`dirname $0` . "$path/autorun.sh" diff --git a/BUILD/compile-alpha-debug b/BUILD/compile-alpha-debug index 8beffa65cb5..b565a18272f 100755 --- a/BUILD/compile-alpha-debug +++ b/BUILD/compile-alpha-debug @@ -1,7 +1,7 @@ /bin/rm -f */.deps/*.P */*.o make -k clean /bin/rm -f */.deps/*.P */*.o -/bin/rm -f */.deps/*.P config.cache storage/innobase/config.cache storage/bdb/build_unix/config.cache mysql-*.tar.gz +/bin/rm -f */.deps/*.P config.cache storage/innobase/config.cache mysql-*.tar.gz path=`dirname $0` . "$path/autorun.sh" diff --git a/BUILD/compile-dist b/BUILD/compile-dist index 874500977b7..0504b308ceb 100755 --- a/BUILD/compile-dist +++ b/BUILD/compile-dist @@ -7,7 +7,6 @@ # package" that is used as the basis for all other binary builds. # test -f Makefile && make distclean -(cd storage/bdb/dist && sh s_all) (cd storage/innobase && aclocal && autoheader && \ libtoolize --automake --force --copy && \ automake --force --add-missing --copy && autoconf) diff --git a/BUILD/compile-ia64-debug-max b/BUILD/compile-ia64-debug-max index d5f931c8d51..d1017ad506b 100755 --- a/BUILD/compile-ia64-debug-max +++ b/BUILD/compile-ia64-debug-max @@ -1,5 +1,5 @@ gmake -k clean || true -/bin/rm -f */.deps/*.P config.cache storage/innobase/config.cache storage/bdb/build_unix/config.cache +/bin/rm -f */.deps/*.P config.cache storage/innobase/config.cache path=`dirname $0` . "$path/autorun.sh" |