diff options
author | thek@adventure.(none) <> | 2008-05-09 09:43:02 +0200 |
---|---|---|
committer | thek@adventure.(none) <> | 2008-05-09 09:43:02 +0200 |
commit | 19a22f87e9088e2c7dbe27eb1d18f195004a4680 (patch) | |
tree | 09591f37c2d93fb66dd1f852e60e38e672485ccf /libmysqld | |
parent | ee6373ab7cedc4846f3ac06dd4174a1edf8d5281 (diff) | |
download | mariadb-git-19a22f87e9088e2c7dbe27eb1d18f195004a4680.tar.gz |
Bug#35997 Event scheduler seems to let the server crash, if it is embedded.
The event scheduler was not designed to work in embedded mode. This
patch disables and excludes the event scheduler when the server is
compiled for embedded build.
Diffstat (limited to 'libmysqld')
-rw-r--r-- | libmysqld/Makefile.am | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libmysqld/Makefile.am b/libmysqld/Makefile.am index c2f342367dd..504980cbd07 100644 --- a/libmysqld/Makefile.am +++ b/libmysqld/Makefile.am @@ -73,12 +73,10 @@ sqlsources = derror.cc field.cc field_conv.cc strfunc.cc filesort.cc \ spatial.cc gstream.cc sql_help.cc tztime.cc sql_cursor.cc \ sp_head.cc sp_pcontext.cc sp.cc sp_cache.cc sp_rcontext.cc \ parse_file.cc sql_view.cc sql_trigger.cc my_decimal.cc \ - event_scheduler.cc events.cc event_data_objects.cc \ - event_queue.cc event_db_repository.cc \ rpl_filter.cc sql_partition.cc sql_builtin.cc sql_plugin.cc \ sql_tablespace.cc \ rpl_injector.cc my_user.c partition_info.cc \ - sql_servers.cc + sql_servers.cc event_parse_data.cc libmysqld_int_a_SOURCES= $(libmysqld_sources) nodist_libmysqld_int_a_SOURCES= $(libmysqlsources) $(sqlsources) |