INSTALL 907 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. Building MySQL with SphinxSE
  2. =============================
  3. Note: BUILD/autorun.sh step on Linux might malfunction with some
  4. versions of automake; autorun.sh will not fail but the build will.
  5. automake 1.9.6 is known to work.
  6. MySQL 5.0.x on Linux
  7. ---------------------
  8. tar zxvf mysql-5.0.91.tar.gz
  9. cp -R mysqlse mysql-5.0.91/sql/sphinx
  10. cd mysql-5.0.91
  11. patch -p1 -i sql/sphinx/sphinx.5.0.91.diff
  12. sh BUILD/autorun.sh
  13. ./configure --with-sphinx-storage-engine
  14. make
  15. MySQL 5.1.x on Linux
  16. ---------------------
  17. tar zxvf mysql-5.1.47.tar.gz
  18. cp -R -p mysqlse mysql-5.1.47/storage/sphinx
  19. cd mysql-5.1.47
  20. sh BUILD/autorun.sh
  21. ./configure --with-plugins=sphinx
  22. make
  23. MySQL 5.0.x on Windows
  24. -----------------------
  25. tar zxvf mysql-5.0.91.tar.gz
  26. cp -R mysqlse mysql-5.0.91/sql/sphinx
  27. cd mysql-5.0.91
  28. patch -p1 -i sql/sphinx/sphinx.5.0.91.diff
  29. win\configure.js WITH_SPHINX_STORAGE_ENGINE
  30. win\build-vs8
  31. --eof--