diff options
author | Michael Widenius <monty@askmonty.org> | 2010-12-01 22:23:59 +0200 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2010-12-01 22:23:59 +0200 |
commit | 863a493b4f521eb7a5002e2dea6c0148ed1ada0b (patch) | |
tree | 517124ee30f986b655eb96d7ae0bddc4450c4d17 /storage/sphinx | |
parent | 1e5061fe3be981d6f685a2865fd1e2bcd3fcc23a (diff) | |
download | mariadb-git-863a493b4f521eb7a5002e2dea6c0148ed1ada0b.tar.gz |
Fixed compiler warnings
sql/debug_sync.cc:
Initalize variable
storage/sphinx/Makefile.am:
Ensure we compile with the -Wno-unused-parameter flag
Diffstat (limited to 'storage/sphinx')
-rw-r--r-- | storage/sphinx/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/storage/sphinx/Makefile.am b/storage/sphinx/Makefile.am index 6f9c7bc1ae2..ce4324ae5cb 100644 --- a/storage/sphinx/Makefile.am +++ b/storage/sphinx/Makefile.am @@ -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 |