Commit aabbacba authored by monty@mysql.com's avatar monty@mysql.com

New patch to ensure that InnoDB gets values for CFLAGS and CXXFLAGS

parent ccc41712
...@@ -2659,6 +2659,7 @@ AM_CONDITIONAL(HAVE_NETWARE, test "$netware_dir" = "netware") ...@@ -2659,6 +2659,7 @@ AM_CONDITIONAL(HAVE_NETWARE, test "$netware_dir" = "netware")
# Ensure that table handlers gets all modifications to CFLAGS/CXXFLAGS # Ensure that table handlers gets all modifications to CFLAGS/CXXFLAGS
export CC CXX CFLAGS CXXFLAGS LD LDFLAGS AR export CC CXX CFLAGS CXXFLAGS LD LDFLAGS AR
ac_configure_args="$ac_configure_args CFLAGS='$CFLAGS' CXXFLAGS='$CXXFLAGS'"
if test "$with_server" = "yes" -o "$THREAD_SAFE_CLIENT" != "no" if test "$with_server" = "yes" -o "$THREAD_SAFE_CLIENT" != "no"
then then
......
...@@ -403,12 +403,12 @@ class handler :public Sql_alloc ...@@ -403,12 +403,12 @@ class handler :public Sql_alloc
{ {
return (HA_DDL_SUPPORT); return (HA_DDL_SUPPORT);
} }
virtual int add_index(TABLE *table, KEY *key_info, uint num_of_keys) virtual int add_index(TABLE *table_arg, KEY *key_info, uint num_of_keys)
{ {
my_error(ER_NOT_SUPPORTED_YET, MYF(0), "online add index"); my_error(ER_NOT_SUPPORTED_YET, MYF(0), "online add index");
return (HA_DDL_NOT_IMPLEMENTED); return (HA_DDL_NOT_IMPLEMENTED);
} }
virtual int drop_index(TABLE *table, uint *key_num, uint num_of_keys) virtual int drop_index(TABLE *table_arg, uint *key_num, uint num_of_keys)
{ {
my_error(ER_NOT_SUPPORTED_YET, MYF(0), "online drop index"); my_error(ER_NOT_SUPPORTED_YET, MYF(0), "online drop index");
return (HA_DDL_NOT_IMPLEMENTED); return (HA_DDL_NOT_IMPLEMENTED);
......
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