2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-08-05 18:17:31 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Mysql < Formula
|
2011-03-24 17:29:28 +00:00
|
|
|
homepage 'http://dev.mysql.com/doc/refman/5.5/en/'
|
2012-03-10 18:20:13 +00:00
|
|
|
url 'http://downloads.mysql.com/archives/mysql-5.5/mysql-5.5.20.tar.gz'
|
|
|
|
md5 '375794ebf84b4c7b63f1676bc7416cd0'
|
2009-08-05 18:17:31 +00:00
|
|
|
|
2011-03-24 17:29:28 +00:00
|
|
|
depends_on 'cmake' => :build
|
2009-09-18 18:16:39 +00:00
|
|
|
depends_on 'readline'
|
2011-04-13 12:17:59 +00:00
|
|
|
depends_on 'pidof'
|
2009-08-05 18:17:31 +00:00
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2326
|
|
|
|
cause "https://github.com/mxcl/homebrew/issues/issue/144"
|
|
|
|
end
|
2011-03-21 21:24:22 +00:00
|
|
|
|
2011-04-02 22:32:32 +00:00
|
|
|
skip_clean :all # So "INSTALL PLUGIN" can work.
|
|
|
|
|
2009-08-13 04:48:44 +00:00
|
|
|
def options
|
|
|
|
[
|
2011-03-27 14:47:54 +00:00
|
|
|
['--with-tests', "Build with unit tests."],
|
|
|
|
['--with-embedded', "Build the embedded server."],
|
2011-07-10 12:47:40 +00:00
|
|
|
['--with-libedit', "Compile with EditLine wrapper instead of readline"],
|
2012-01-04 10:54:01 +00:00
|
|
|
['--with-archive-storage-engine', "Compile with the ARCHIVE storage engine enabled"],
|
|
|
|
['--with-blackhole-storage-engine', "Compile with the BLACKHOLE storage engine enabled"],
|
2011-04-01 21:40:20 +00:00
|
|
|
['--universal', "Make mysql a universal binary"],
|
|
|
|
['--enable-local-infile', "Build with local infile loading support"]
|
2009-08-13 04:48:44 +00:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2012-03-21 16:16:13 +00:00
|
|
|
# Remove optimization flags from `mysql_config --cflags`
|
|
|
|
# This facilitates easy compilation of gems using a brewed mysql
|
2012-04-20 08:45:42 +00:00
|
|
|
# CMake patch needed for CMake 2.8.8.
|
|
|
|
# Reported here: http://bugs.mysql.com/bug.php?id=65050
|
2012-03-21 16:16:13 +00:00
|
|
|
def patches; DATA; end
|
2009-09-02 09:31:27 +00:00
|
|
|
|
2009-08-05 18:17:31 +00:00
|
|
|
def install
|
2012-01-23 12:16:56 +00:00
|
|
|
# Make sure the var/mysql directory exists
|
2011-05-03 07:16:50 +00:00
|
|
|
(var+"mysql").mkpath
|
|
|
|
|
2011-04-01 21:24:29 +00:00
|
|
|
args = [".",
|
|
|
|
"-DCMAKE_INSTALL_PREFIX=#{prefix}",
|
|
|
|
"-DMYSQL_DATADIR=#{var}/mysql",
|
|
|
|
"-DINSTALL_MANDIR=#{man}",
|
2011-04-11 14:53:39 +00:00
|
|
|
"-DINSTALL_DOCDIR=#{doc}",
|
|
|
|
"-DINSTALL_INFODIR=#{info}",
|
|
|
|
# CMake prepends prefix, so use share.basename
|
|
|
|
"-DINSTALL_MYSQLSHAREDIR=#{share.basename}/#{name}",
|
2011-04-01 21:24:29 +00:00
|
|
|
"-DWITH_SSL=yes",
|
|
|
|
"-DDEFAULT_CHARSET=utf8",
|
|
|
|
"-DDEFAULT_COLLATION=utf8_general_ci",
|
|
|
|
"-DSYSCONFDIR=#{etc}"]
|
2009-08-05 18:17:31 +00:00
|
|
|
|
2011-03-27 14:47:54 +00:00
|
|
|
# To enable unit testing at build, we need to download the unit testing suite
|
2011-04-02 22:32:32 +00:00
|
|
|
if ARGV.include? '--with-tests'
|
|
|
|
args << "-DENABLE_DOWNLOADS=ON"
|
|
|
|
else
|
|
|
|
args << "-DWITH_UNIT_TESTS=OFF"
|
|
|
|
end
|
2011-03-27 14:47:54 +00:00
|
|
|
|
|
|
|
# Build the embedded server
|
|
|
|
args << "-DWITH_EMBEDDED_SERVER=ON" if ARGV.include? '--with-embedded'
|
2009-08-13 04:48:44 +00:00
|
|
|
|
2011-07-10 12:47:40 +00:00
|
|
|
# Compile with readline unless libedit is explicitly chosen
|
|
|
|
args << "-DWITH_READLINE=yes" unless ARGV.include? '--with-libedit'
|
|
|
|
|
2012-01-04 10:54:01 +00:00
|
|
|
# Compile with ARCHIVE engine enabled if chosen
|
|
|
|
args << "-DWITH_ARCHIVE_STORAGE_ENGINE=1" if ARGV.include? '--with-archive-storage-engine'
|
|
|
|
|
|
|
|
# Compile with BLACKHOLE engine enabled if chosen
|
|
|
|
args << "-DWITH_BLACKHOLE_STORAGE_ENGINE=1" if ARGV.include? '--with-blackhole-storage-engine'
|
|
|
|
|
2011-04-04 17:33:26 +00:00
|
|
|
# Make universal for binding to universal applications
|
2011-05-01 16:31:17 +00:00
|
|
|
args << "-DCMAKE_OSX_ARCHITECTURES='i386;x86_64'" if ARGV.build_universal?
|
2009-11-17 13:16:00 +00:00
|
|
|
|
2011-04-01 21:40:20 +00:00
|
|
|
# Build with local infile loading support
|
|
|
|
args << "-DENABLED_LOCAL_INFILE=1" if ARGV.include? '--enable-local-infile'
|
|
|
|
|
2011-03-24 17:29:28 +00:00
|
|
|
system "cmake", *args
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
2009-08-13 04:48:44 +00:00
|
|
|
|
2011-12-31 05:56:52 +00:00
|
|
|
plist_path.write startup_plist
|
|
|
|
plist_path.chmod 0644
|
2011-04-01 21:24:29 +00:00
|
|
|
|
|
|
|
# Don't create databases inside of the prefix!
|
|
|
|
# See: https://github.com/mxcl/homebrew/issues/4975
|
|
|
|
rm_rf prefix+'data'
|
2011-04-02 22:32:32 +00:00
|
|
|
|
|
|
|
# Link the setup script into bin
|
|
|
|
ln_s prefix+'scripts/mysql_install_db', bin+'mysql_install_db'
|
2011-04-13 12:17:59 +00:00
|
|
|
# Fix up the control script and link into bin
|
|
|
|
inreplace "#{prefix}/support-files/mysql.server" do |s|
|
|
|
|
s.gsub!(/^(PATH=".*)(")/, "\\1:#{HOMEBREW_PREFIX}/bin\\2")
|
|
|
|
end
|
2011-04-11 14:53:39 +00:00
|
|
|
ln_s "#{prefix}/support-files/mysql.server", bin
|
2009-09-02 09:31:27 +00:00
|
|
|
end
|
|
|
|
|
2010-02-27 17:26:27 +00:00
|
|
|
def caveats; <<-EOS.undent
|
2011-04-02 22:32:32 +00:00
|
|
|
Set up databases to run AS YOUR USER ACCOUNT with:
|
2011-04-04 23:56:47 +00:00
|
|
|
unset TMPDIR
|
|
|
|
mysql_install_db --verbose --user=`whoami` --basedir="$(brew --prefix mysql)" --datadir=#{var}/mysql --tmpdir=/tmp
|
2011-04-02 22:32:32 +00:00
|
|
|
|
2011-07-28 21:53:27 +00:00
|
|
|
To set up base tables in another folder, or use a different user to run
|
2011-04-02 22:32:32 +00:00
|
|
|
mysqld, view the help for mysqld_install_db:
|
2011-04-04 23:56:47 +00:00
|
|
|
mysql_install_db --help
|
|
|
|
|
2011-04-02 22:32:32 +00:00
|
|
|
and view the MySQL documentation:
|
|
|
|
* http://dev.mysql.com/doc/refman/5.5/en/mysql-install-db.html
|
|
|
|
* http://dev.mysql.com/doc/refman/5.5/en/default-privileges.html
|
|
|
|
|
|
|
|
To run as, for instance, user "mysql", you may need to `sudo`:
|
2011-04-04 23:56:47 +00:00
|
|
|
sudo mysql_install_db ...options...
|
2011-04-02 22:32:32 +00:00
|
|
|
|
|
|
|
Start mysqld manually with:
|
2011-04-11 14:53:39 +00:00
|
|
|
mysql.server start
|
2011-04-02 22:32:32 +00:00
|
|
|
|
2011-04-27 04:50:51 +00:00
|
|
|
Note: if this fails, you probably forgot to run the first two steps up above
|
|
|
|
|
2011-04-13 20:00:07 +00:00
|
|
|
A "/etc/my.cnf" from another install may interfere with a Homebrew-built
|
|
|
|
server starting up correctly.
|
|
|
|
|
2011-04-02 22:32:32 +00:00
|
|
|
To connect:
|
2011-04-04 23:56:47 +00:00
|
|
|
mysql -uroot
|
2011-04-02 22:32:32 +00:00
|
|
|
|
|
|
|
To launch on startup:
|
|
|
|
* if this is your first install:
|
2011-04-04 23:56:47 +00:00
|
|
|
mkdir -p ~/Library/LaunchAgents
|
2011-12-31 05:56:52 +00:00
|
|
|
cp #{plist_path} ~/Library/LaunchAgents/
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename}
|
2011-04-02 22:32:32 +00:00
|
|
|
|
2012-02-04 14:57:53 +00:00
|
|
|
* if this is an upgrade and you already have the #{plist_path.basename} loaded:
|
2011-12-31 05:56:52 +00:00
|
|
|
launchctl unload -w ~/Library/LaunchAgents/#{plist_path.basename}
|
|
|
|
cp #{plist_path} ~/Library/LaunchAgents/
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/#{plist_path.basename}
|
2011-04-02 22:32:32 +00:00
|
|
|
|
2011-04-04 23:56:47 +00:00
|
|
|
You may also need to edit the plist to use the correct "UserName".
|
2011-04-02 22:32:32 +00:00
|
|
|
|
2009-10-01 03:56:05 +00:00
|
|
|
EOS
|
2009-09-02 09:31:27 +00:00
|
|
|
end
|
|
|
|
|
2010-02-27 17:26:27 +00:00
|
|
|
def startup_plist; <<-EOPLIST.undent
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
|
|
<plist version="1.0">
|
|
|
|
<dict>
|
|
|
|
<key>KeepAlive</key>
|
|
|
|
<true/>
|
|
|
|
<key>Label</key>
|
2011-12-31 05:56:52 +00:00
|
|
|
<string>#{plist_name}</string>
|
2010-02-27 17:26:27 +00:00
|
|
|
<key>Program</key>
|
2011-12-31 22:13:31 +00:00
|
|
|
<string>#{HOMEBREW_PREFIX}/bin/mysqld_safe</string>
|
2010-02-27 17:26:27 +00:00
|
|
|
<key>RunAtLoad</key>
|
|
|
|
<true/>
|
|
|
|
<key>UserName</key>
|
|
|
|
<string>#{`whoami`.chomp}</string>
|
|
|
|
<key>WorkingDirectory</key>
|
2010-03-16 23:44:04 +00:00
|
|
|
<string>#{var}</string>
|
2010-02-27 17:26:27 +00:00
|
|
|
</dict>
|
|
|
|
</plist>
|
2009-09-02 09:31:27 +00:00
|
|
|
EOPLIST
|
2009-08-05 18:17:31 +00:00
|
|
|
end
|
|
|
|
end
|
2009-09-15 18:05:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
__END__
|
2009-10-08 22:39:43 +00:00
|
|
|
diff --git a/scripts/mysql_config.sh b/scripts/mysql_config.sh
|
2012-03-16 01:01:44 +00:00
|
|
|
index 9296075..70c18db 100644
|
2009-10-08 22:39:43 +00:00
|
|
|
--- a/scripts/mysql_config.sh
|
|
|
|
+++ b/scripts/mysql_config.sh
|
2012-03-16 01:01:44 +00:00
|
|
|
@@ -137,7 +137,9 @@ for remove in DDBUG_OFF DSAFE_MUTEX DUNIV_MUST_NOT_INLINE DFORCE_INIT_OF_VARS \
|
2009-10-08 22:39:43 +00:00
|
|
|
DEXTRA_DEBUG DHAVE_purify O 'O[0-9]' 'xO[0-9]' 'W[-A-Za-z]*' \
|
|
|
|
'mtune=[-A-Za-z0-9]*' 'mcpu=[-A-Za-z0-9]*' 'march=[-A-Za-z0-9]*' \
|
|
|
|
Xa xstrconst "xc99=none" AC99 \
|
|
|
|
- unroll2 ip mp restrict
|
|
|
|
+ unroll2 ip mp restrict \
|
2012-03-16 01:01:44 +00:00
|
|
|
+ mmmx 'msse[0-9.]*' 'mfpmath=sse' w pipe 'fomit-frame-pointer' 'mmacosx-version-min=10.[0-9]' \
|
|
|
|
+ aes Os
|
2009-10-08 22:39:43 +00:00
|
|
|
do
|
|
|
|
# The first option we might strip will always have a space before it because
|
|
|
|
# we set -I$pkgincludedir as the first option
|
2012-04-20 08:45:42 +00:00
|
|
|
diff --git a/configure.cmake b/configure.cmake
|
|
|
|
index c3cc787..6193481 100644
|
|
|
|
--- a/configure.cmake
|
|
|
|
+++ b/configure.cmake
|
|
|
|
@@ -149,7 +149,9 @@ IF(UNIX)
|
|
|
|
SET(CMAKE_REQUIRED_LIBRARIES
|
|
|
|
${LIBM} ${LIBNSL} ${LIBBIND} ${LIBCRYPT} ${LIBSOCKET} ${LIBDL} ${CMAKE_THREAD_LIBS_INIT} ${LIBRT})
|
|
|
|
|
|
|
|
- LIST(REMOVE_DUPLICATES CMAKE_REQUIRED_LIBRARIES)
|
|
|
|
+ IF(CMAKE_REQUIRED_LIBRARIES)
|
|
|
|
+ LIST(REMOVE_DUPLICATES CMAKE_REQUIRED_LIBRARIES)
|
|
|
|
+ ENDIF()
|
|
|
|
LINK_LIBRARIES(${CMAKE_THREAD_LIBS_INIT})
|
|
|
|
|
|
|
|
OPTION(WITH_LIBWRAP "Compile with tcp wrappers support" OFF)
|