forked from lotia/homebrew-versions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmysql51.rb
134 lines (114 loc) · 4.15 KB
/
mysql51.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
class Mysql51 < Formula
desc "Open source relational database management system"
homepage "https://dev.mysql.com/doc/refman/5.1/en/"
url "http://mysql.mirrors.pair.com/Downloads/MySQL-5.1/mysql-5.1.73.tar.gz"
sha256 "05ebe21305408b24407d14b77607a3e5ffa3c300e03f1359d3066f301989dcb5"
revision 1
bottle do
revision 1
sha256 "d03726056870c34cdff2174fe9f4379c445f09f03fdc73322f8a0834e1c0e43f" => :yosemite
sha256 "6b640d89f060eedfd5495afb7dee9f1a08101bcd03d578654133de6b7175730a" => :mavericks
sha256 "b8aed24d951594d08cb8759046d2eb7b6852b7b653dbce1b294be376fbca18ee" => :mountain_lion
end
option :universal
option "with-tests", "Keep tests when installing"
option "with-bench", "Keep benchmark app when installing"
option "with-embedded", "Build the embedded server"
option "without-server", "Only install client tools, not the server"
option "with-utf8-default", "Set the default character set to utf8"
deprecated_option "client-only" => "without-server"
keg_only "Conflicts with mysql, mariadb, percona-server, mysql-cluster, etc."
depends_on "readline"
depends_on "openssl" => :recommended
fails_with :clang
patch :DATA
def install
# Make universal for bindings to universal applications
ENV.universal_binary if build.universal?
# "without-readline" = "use detected readline instead of included readline"
args = %W[
--without-docs
--without-debug
--disable-dependency-tracking
--prefix=#{prefix}
--localstatedir=#{var}/mysql
--sysconfdir=#{etc}
--with-plugins=innobase,myisam
--with-extra-charsets=complex
--without-readline
--enable-assembler
--enable-thread-safe-client
--enable-local-infile
--enable-shared
--with-partition
]
args << "--without-server" if build.without? "server"
args << "--with-embedded-server" if build.with? "embedded"
args << "--with-charset=utf8" if build.with? "utf8-default"
if build.with? "openssl"
args << "--with-ssl=#{Formula["openssl"].opt_prefix}"
else
args << "with-ssl"
end
system "./configure", *args
system "make", "install"
ln_s libexec/"mysqld", bin
ln_s share/"mysql/mysql.server", bin
(prefix+"mysql-test").rmtree if build.without? "tests" # save 66MB!
(prefix+"sql-bench").rmtree if build.without? "bench"
end
def caveats; <<-EOS.undent
Set up databases with:
unset TMPDIR
mysql_install_db
EOS
end
plist_options :manual => "mysql.server start"
def 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>#{plist_name}</string>
<key>Program</key>
<string>#{opt_prefix}/bin/mysqld_safe</string>
<key>RunAtLoad</key>
<true/>
<key>WorkingDirectory</key>
<string>#{var}</string>
</dict>
</plist>
EOPLIST
end
test do
system bin/"mysql_config", "--libs", "--include"
end
end
__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
@@ -384,7 +384,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
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