Commit 4ea2aacb authored by kent@mysql.com's avatar kent@mysql.com

mysql.spec.sh:

  For 5.x, always compile with --with-big-tables
  Copy the config.log file to location outside
  the build tree
parent 5035abf0
...@@ -249,7 +249,7 @@ sh -c "PATH=\"${MYSQL_BUILD_PATH:-$PATH}\" \ ...@@ -249,7 +249,7 @@ sh -c "PATH=\"${MYSQL_BUILD_PATH:-$PATH}\" \
--includedir=%{_includedir} \ --includedir=%{_includedir} \
--mandir=%{_mandir} \ --mandir=%{_mandir} \
--enable-thread-safe-client \ --enable-thread-safe-client \
--with-readline ; --with-readline ; \
# Add this for more debugging support # Add this for more debugging support
# --with-debug # --with-debug
" "
...@@ -302,9 +302,16 @@ BuildMySQL "--enable-shared \ ...@@ -302,9 +302,16 @@ BuildMySQL "--enable-shared \
--with-example-storage-engine \ --with-example-storage-engine \
--with-blackhole-storage-engine \ --with-blackhole-storage-engine \
--with-federated-storage-engine \ --with-federated-storage-engine \
--with-big-tables \
--with-comment=\"MySQL Community Edition - Experimental (GPL)\" \ --with-comment=\"MySQL Community Edition - Experimental (GPL)\" \
--with-server-suffix='-max'" --with-server-suffix='-max'"
# We might want to save the config log file
if test -n "$MYSQL_MAXCONFLOG_DEST"
then
cp -fp config.log "$MYSQL_MAXCONFLOG_DEST"
fi
make test-force || true make test-force || true
# Save mysqld-max # Save mysqld-max
...@@ -353,9 +360,16 @@ BuildMySQL "--disable-shared \ ...@@ -353,9 +360,16 @@ BuildMySQL "--disable-shared \
--with-comment=\"MySQL Community Edition - Standard (GPL)\" \ --with-comment=\"MySQL Community Edition - Standard (GPL)\" \
--with-server-suffix='%{server_suffix}' \ --with-server-suffix='%{server_suffix}' \
--with-archive-storage-engine \ --with-archive-storage-engine \
--with-innodb" --with-innodb \
--with-big-tables"
nm --numeric-sort sql/mysqld > sql/mysqld.sym nm --numeric-sort sql/mysqld > sql/mysqld.sym
# We might want to save the config log file
if test -n "$MYSQL_CONFLOG_DEST"
then
cp -fp config.log "$MYSQL_CONFLOG_DEST"
fi
make test-force || true make test-force || true
%install %install
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment