Navigation Menu

Skip to content

Commit

Permalink
travis: force to enable fast mutexes for MySQL 5.6.25
Browse files Browse the repository at this point in the history
Because it seems that MySQL 5.6.25 package provided by Oracle enables
fast mutexes. (unexpectedly?)
  • Loading branch information
kou committed Jun 4, 2015
1 parent 6087b63 commit 2cab156
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tools/travis/before_script.sh
Expand Up @@ -31,6 +31,9 @@ else
if [ -d /opt/mysql/ ]; then
PATH=$(echo /opt/mysql/server-*/bin/):$PATH
fi
./configure \
--with-mysql-source=$PWD/vendor/mysql
configure_args=("--with-mysql-source=$PWD/vendor/mysql")
if [ "${MYSQL_VERSION}" = "mysql-5.6.25" ]; then
configure_args=("${configure_args[@]}" --enable-fast-mutexes)
fi
./configure "${configure_args[@]}"
fi

0 comments on commit 2cab156

Please sign in to comment.