mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Fixed compiler warnings
client/readline.cc: Initialize not used variable (to kill wrong compiler warning) mysql-test/suite/handler/aria.result: Updated test result mysql-test/suite/handler/handler.inc: Changed index to ensure rows are in a fixed order mysql-test/suite/handler/heap.result: Updated test result mysql-test/suite/handler/innodb.result: Updated test result mysql-test/suite/handler/myisam.result: Updated test result plugin/handler_socket/handlersocket/Makefile.am: Use CXX flags to compile sql/filesort.cc: Initialize variable that may be used sql/log.cc: Initialize not used variable (to kill wrong compiler warning) sql/opt_range_mrr.cc: Fixed cast to avoid compiler warning storage/xtradb/fil/fil0fil.c: Added cast to avoid compiler warning
This commit is contained in:
@ -1,11 +1,7 @@
|
||||
CXXFLAGS += -fimplicit-templates
|
||||
pkgplugindir = $(PLUGIN_DIR)
|
||||
noinst_HEADERS = database.hpp hstcpsvr.hpp hstcpsvr_worker.hpp mysql_incl.hpp
|
||||
pkgplugin_LTLIBRARIES = handlersocket.la
|
||||
handlersocket_la_LDFLAGS = -module ../libhsclient/libhsclient.la
|
||||
handlersocket_la_CFLAGS = $(MYSQL_INC) $(MYSQL_CFLAGS) $(AM_CFLAGS) \
|
||||
-I$(srcdir)/../libhsclient
|
||||
handlersocket_la_CXXFLAGS = $(MYSQL_INC) $(MYSQL_CFLAGS) $(AM_CFLAGS) \
|
||||
-I$(srcdir)/../libhsclient
|
||||
handlersocket_la_CXXFLAGS = $(MYSQL_INC) $(MYSQL_CFLAGS) $(AM_CXXFLAGS) -fimplicit-templates -I$(srcdir)/../libhsclient
|
||||
handlersocket_la_SOURCES = database.cpp handlersocket.cpp \
|
||||
hstcpsvr_worker.cpp hstcpsvr.cpp
|
||||
|
Reference in New Issue
Block a user