Commit 56e415a5 authored by dlenev@mysql.com's avatar dlenev@mysql.com

Merge mysqldev@production.mysql.com:my/mysql-5.1-release

into  mysql.com:/home/dlenev/mysql-5.1-merges
parents 85c1e4d2 625ab8a0
......@@ -1608,18 +1608,20 @@ else
CXXFLAGS="$OPTIMIZE_CXXFLAGS -DDBUG_OFF $CXXFLAGS"
fi
if test "$with_debug" = "no"
then
AC_ARG_WITH([fast-mutexes],
AC_HELP_STRING([--with-fast-mutexes],
[Compile with fast mutexes (default is disabled)]),
[with_fast_mutexes=$withval], [with_fast_mutexes=no])
fi
AC_ARG_WITH([fast-mutexes],
AC_HELP_STRING([--with-fast-mutexes],
[Compile with fast mutexes (default is disabled)]),
[with_fast_mutexes=$withval], [with_fast_mutexes=no])
if test "$with_fast_mutexes" = "yes"
if test "$with_fast_mutexes" != "no"
then
AC_DEFINE([MY_PTHREAD_FASTMUTEX], [1],
[Define to 1 if you want to use fast mutexes])
if test "$with_debug" != "no"
then
AC_MSG_WARN(['--with-fast-mutexes' ignored when '--with-debug' is given])
else
AC_DEFINE([MY_PTHREAD_FASTMUTEX], [1],
[Define to 1 if you want to use fast mutexes])
fi
fi
# Force static compilation to avoid linking problems/get more speed
......
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