Merge pcg5ppc.xiphis.org:/Network/Servers/anubis.xiphis.org/home/antony/work/p2-bug30296.1
into pcg5ppc.xiphis.org:/Network/Servers/anubis.xiphis.org/home/antony/work/p2-bug30296.1-merge-5.1
This commit is contained in:
commit
be9e52135f
@ -360,6 +360,17 @@ AC_DEFUN([__MYSQL_EMIT_CHECK_PLUGIN],[
|
|||||||
AC_MSG_ERROR([cannot disable mandatory plugin])
|
AC_MSG_ERROR([cannot disable mandatory plugin])
|
||||||
fi
|
fi
|
||||||
[mysql_plugin_]$2=yes
|
[mysql_plugin_]$2=yes
|
||||||
|
],[
|
||||||
|
case "$with_mysqld_ldflags " in
|
||||||
|
*"-all-static "*)
|
||||||
|
# No need to build shared plugins when mysqld is linked with
|
||||||
|
# -all-static as it won't be able to load them.
|
||||||
|
if test "X[$mysql_plugin_]$2" != Xyes -a \
|
||||||
|
"X[$with_plugin_]$2" != Xyes; then
|
||||||
|
[with_plugin_]$2=no
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
])
|
])
|
||||||
if test "X[$with_plugin_]$2" = Xno; then
|
if test "X[$with_plugin_]$2" = Xno; then
|
||||||
AC_MSG_RESULT([no])
|
AC_MSG_RESULT([no])
|
||||||
|
11
configure.in
11
configure.in
@ -1745,7 +1745,18 @@ then
|
|||||||
LDFLAGS="$LDFLAGS -rdynamic"
|
LDFLAGS="$LDFLAGS -rdynamic"
|
||||||
AC_MSG_RESULT("-rdynamic")
|
AC_MSG_RESULT("-rdynamic")
|
||||||
else
|
else
|
||||||
|
case "$SYSTEM_TYPE$with_mysqld_ldflags " in
|
||||||
|
*freebsd*"-all-static "*|*dragonfly*"-all-static "*)
|
||||||
AC_MSG_RESULT("none")
|
AC_MSG_RESULT("none")
|
||||||
|
;;
|
||||||
|
*freebsd*|*dragonfly*)
|
||||||
|
MYSQLD_EXTRA_LDFLAGS="$MYSQLD_EXTRA_LDFLAGS -export-dynamic"
|
||||||
|
AC_MSG_RESULT("-export-dynamic")
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
AC_MSG_RESULT("none")
|
||||||
|
;;
|
||||||
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl Checks for typedefs, structures, and compiler characteristics.
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
||||||
|
@ -6492,7 +6492,7 @@ bool_pri:
|
|||||||
{ $$= (*$2)(0)->create($1,$3); }
|
{ $$= (*$2)(0)->create($1,$3); }
|
||||||
| bool_pri comp_op all_or_any '(' subselect ')' %prec EQ
|
| bool_pri comp_op all_or_any '(' subselect ')' %prec EQ
|
||||||
{ $$= all_any_subquery_creator($1, $2, $3, $5); }
|
{ $$= all_any_subquery_creator($1, $2, $3, $5); }
|
||||||
| predicate ;
|
| predicate
|
||||||
;
|
;
|
||||||
|
|
||||||
predicate:
|
predicate:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user