mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
Fixed compiler warnings
sql/debug_sync.cc: Initalize variable storage/sphinx/Makefile.am: Ensure we compile with the -Wno-unused-parameter flag
This commit is contained in:
parent
1e5061fe3b
commit
863a493b4f
2 changed files with 4 additions and 3 deletions
|
@ -1719,6 +1719,7 @@ static void debug_sync_execute(THD *thd, st_debug_sync_action *action)
|
|||
if (action->execute)
|
||||
{
|
||||
const char *old_proc_info;
|
||||
LINT_INIT(old_proc_info);
|
||||
|
||||
action->execute--;
|
||||
|
||||
|
|
|
@ -35,17 +35,17 @@ pkgplugin_LTLIBRARIES = @plugin_sphinx_shared_target@ sphinx.la
|
|||
|
||||
ha_sphinx_la_LDFLAGS = -module -rpath $(MYSQLLIBdir) \
|
||||
-L$(top_builddir)/libservices -lmysqlservices
|
||||
ha_sphinx_la_CXXFLAGS= $(AM_CFLAGS) -DMYSQL_DYNAMIC_PLUGIN
|
||||
ha_sphinx_la_CXXFLAGS= $(AM_CXXFLAGS) -DMYSQL_DYNAMIC_PLUGIN
|
||||
ha_sphinx_la_CFLAGS = $(AM_CFLAGS) -DMYSQL_DYNAMIC_PLUGIN
|
||||
ha_sphinx_la_SOURCES = ha_sphinx.cc
|
||||
|
||||
sphinx_la_LDFLAGS = -module
|
||||
sphinx_la_CXXFLAGS = $(AM_CFLAGS)
|
||||
sphinx_la_CXXFLAGS = $(AM_CXXFLAGS)
|
||||
sphinx_la_CFLAGS = $(AM_CFLAGS)
|
||||
sphinx_la_SOURCES = snippets_udf.cc
|
||||
|
||||
noinst_LTLIBRARIES = @plugin_sphinx_static_target@
|
||||
libsphinx_la_CXXFLAGS = $(AM_CFLAGS)
|
||||
libsphinx_la_CXXFLAGS = $(AM_CXXFLAGS)
|
||||
libsphinx_la_CFLAGS = $(AM_CFLAGS)
|
||||
libsphinx_la_SOURCES= ha_sphinx.cc
|
||||
|
||||
|
|
Loading…
Reference in a new issue