2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-08-05 18:17:31 +00:00
|
|
|
|
|
|
|
class Mysql <Formula
|
2010-02-14 00:38:50 +00:00
|
|
|
homepage 'http://dev.mysql.com/doc/refman/5.1/en/'
|
2010-05-22 01:07:59 +00:00
|
|
|
url 'http://mysql.llarian.net/Downloads/MySQL-5.1/mysql-5.1.47.tar.gz'
|
|
|
|
md5 '02b9964b3966832f3d6bc87524bfd73f'
|
2009-08-05 18:17:31 +00:00
|
|
|
|
2009-09-18 18:16:39 +00:00
|
|
|
depends_on 'readline'
|
2009-08-05 18:17:31 +00:00
|
|
|
|
2009-08-13 04:48:44 +00:00
|
|
|
def options
|
|
|
|
[
|
|
|
|
['--with-tests', "Keep tests when installing."],
|
|
|
|
['--with-bench', "Keep benchmark app when installing."],
|
|
|
|
['--client-only', "Only install client tools, not the server."],
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2009-09-02 09:31:27 +00:00
|
|
|
def patches
|
2009-09-16 16:08:32 +00:00
|
|
|
DATA
|
2009-09-02 09:31:27 +00:00
|
|
|
end
|
|
|
|
|
2009-08-05 18:17:31 +00:00
|
|
|
def install
|
2010-02-13 13:36:07 +00:00
|
|
|
ENV.gcc_4_2 # http://github.com/mxcl/homebrew/issues/#issue/144
|
|
|
|
|
2009-10-02 17:35:00 +00:00
|
|
|
# See: http://dev.mysql.com/doc/refman/5.1/en/configure-options.html
|
|
|
|
# These flags may not apply to gcc 4+
|
2009-08-05 18:17:31 +00:00
|
|
|
ENV['CXXFLAGS'] = ENV['CXXFLAGS'].gsub "-fomit-frame-pointer", ""
|
|
|
|
ENV['CXXFLAGS'] += " -fno-omit-frame-pointer -felide-constructors"
|
|
|
|
|
2009-08-13 04:48:44 +00:00
|
|
|
configure_args = [
|
|
|
|
"--without-docs",
|
|
|
|
"--without-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2009-10-02 17:35:00 +00:00
|
|
|
"--localstatedir=#{var}/mysql",
|
2010-01-18 19:23:50 +00:00
|
|
|
"--sysconfdir=#{etc}",
|
2009-08-13 04:48:44 +00:00
|
|
|
"--with-plugins=innobase,myisam",
|
|
|
|
"--with-extra-charsets=complex",
|
|
|
|
"--with-ssl",
|
2010-05-19 09:00:54 +00:00
|
|
|
"--with-readline",
|
2009-08-13 04:48:44 +00:00
|
|
|
"--enable-assembler",
|
|
|
|
"--enable-thread-safe-client",
|
|
|
|
"--enable-local-infile",
|
|
|
|
"--enable-shared"]
|
|
|
|
|
2009-09-02 09:31:27 +00:00
|
|
|
configure_args << "--without-server" if ARGV.include? '--client-only'
|
2009-08-13 04:48:44 +00:00
|
|
|
|
|
|
|
system "./configure", *configure_args
|
2009-08-05 18:17:31 +00:00
|
|
|
system "make install"
|
2009-08-13 04:48:44 +00:00
|
|
|
|
2010-03-06 01:59:25 +00:00
|
|
|
ln_s "#{libexec}/mysqld", "#{bin}/mysqld"
|
2009-11-17 13:16:00 +00:00
|
|
|
|
2009-10-02 17:35:00 +00:00
|
|
|
(prefix+'mysql-test').rmtree unless ARGV.include? '--with-tests' # save 66MB!
|
2009-08-13 04:48:44 +00:00
|
|
|
(prefix+'sql-bench').rmtree unless ARGV.include? '--with-bench'
|
|
|
|
|
2009-09-02 09:31:27 +00:00
|
|
|
(prefix+'com.mysql.mysqld.plist').write startup_plist
|
|
|
|
end
|
|
|
|
|
2010-02-27 17:26:27 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
Set up databases with:
|
|
|
|
mysql_install_db
|
2009-10-01 03:56:05 +00:00
|
|
|
|
2010-02-17 13:13:36 +00:00
|
|
|
If this is your first install, automatically load on login with:
|
|
|
|
cp #{prefix}/com.mysql.mysqld.plist ~/Library/LaunchAgents
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/com.mysql.mysqld.plist
|
|
|
|
|
|
|
|
If this is an upgrade and you already have the com.mysql.mysqld.plist loaded:
|
|
|
|
launchctl unload -w ~/Library/LaunchAgents/com.mysql.mysqld.plist
|
|
|
|
cp #{prefix}/com.mysql.mysqld.plist ~/Library/LaunchAgents
|
|
|
|
launchctl load -w ~/Library/LaunchAgents/com.mysql.mysqld.plist
|
|
|
|
|
|
|
|
Note on upgrading:
|
|
|
|
We overwrite any existing com.mysql.mysqld.plist in ~/Library/LaunchAgents
|
2010-04-30 12:03:41 +00:00
|
|
|
if we are upgrading because previous versions of this brew created the
|
2010-02-17 13:13:36 +00:00
|
|
|
plist with a version specific program argument.
|
|
|
|
|
2010-02-27 17:26:27 +00:00
|
|
|
Or start manually with:
|
|
|
|
#{prefix}/share/mysql/mysql.server start
|
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>
|
|
|
|
<string>com.mysql.mysqld</string>
|
|
|
|
<key>Program</key>
|
|
|
|
<string>#{bin}/mysqld_safe</string>
|
|
|
|
<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__
|
|
|
|
--- old/scripts/mysqld_safe.sh 2009-09-02 04:10:39.000000000 -0400
|
|
|
|
+++ new/scripts/mysqld_safe.sh 2009-09-02 04:52:55.000000000 -0400
|
|
|
|
@@ -383,7 +383,7 @@
|
|
|
|
fi
|
|
|
|
|
|
|
|
USER_OPTION=""
|
|
|
|
-if test -w / -o "$USER" = "root"
|
|
|
|
+if test -w /sbin -o "$USER" = "root"
|
|
|
|
then
|
|
|
|
if test "$user" != "root" -o $SET_USER = 1
|
|
|
|
then
|
2009-10-08 22:39:43 +00:00
|
|
|
diff --git a/scripts/mysql_config.sh b/scripts/mysql_config.sh
|
|
|
|
index efc8254..8964b70 100644
|
|
|
|
--- a/scripts/mysql_config.sh
|
|
|
|
+++ b/scripts/mysql_config.sh
|
|
|
|
@@ -132,7 +132,8 @@ for remove in DDBUG_OFF DSAFEMALLOC USAFEMALLOC DSAFE_MUTEX \
|
|
|
|
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 \
|
|
|
|
+ mmmx 'msse[0-9.]*' 'mfpmath=sse' w pipe 'fomit-frame-pointer' 'mmacosx-version-min=10.[0-9]'
|
|
|
|
do
|
|
|
|
# The first option we might strip will always have a space before it because
|
|
|
|
# we set -I$pkgincludedir as the first option
|