Commit c43749cb authored by vasil's avatar vasil

branches/zip:

Remove unnecessary quotes and simplify plug.in.
parent 900f489a
......@@ -124,27 +124,31 @@ MYSQL_PLUGIN_ACTIONS(innobase, [
])
])
# Check for x86 PAUSE instruction
AC_MSG_CHECKING("for x86 PAUSE instruction")
AC_MSG_CHECKING(for x86 PAUSE instruction)
# We have to actually try running the test program, because of a bug
# in Solaris on x86_64, where it wrongly reports that PAUSE is not
# supported when trying to run an application. See
# http://bugs.opensolaris.org/bugdatabase/printableBug.do?bug_id=6478684
# We use ib_ prefix to avoid collisoins if this code is added to
# mysql's configure.in.
AC_TRY_RUN([
AC_TRY_RUN(
[
int main() {
__asm__ __volatile__ ("pause");
return(0);
}
],
[ib_x86_pause_exists=yes],
[ib_x86_pause_exists=no],
[ib_x86_pause_exists=no] # Cross-compile, assume no PAUSE instruction
[
AC_DEFINE([IB_HAVE_PAUSE_INSTRUCTION], [1], [Does x86 PAUSE instruction exist])
AC_MSG_RESULT(yes)
],
[
AC_MSG_RESULT(no)
],
[
AC_MSG_RESULT(no)
]
)
if test "$ib_x86_pause_exists" = "yes"
then
AC_DEFINE([IB_HAVE_PAUSE_INSTRUCTION], [1], [Does x86 PAUSE instruction exist])
fi
])
# vim: set ft=config:
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