mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
linking problem fix
This commit is contained in:
@ -23,7 +23,7 @@ DEFS= -DMYSQL_INSTANCE_MANAGER
|
|||||||
# default_options.h, generated from default_options.h.in)
|
# default_options.h, generated from default_options.h.in)
|
||||||
# See automake/autoconf docs for details
|
# See automake/autoconf docs for details
|
||||||
|
|
||||||
noinst_LIBRARIES= liboptions.a libnet.a
|
noinst_LIBRARIES= liboptions.a libnet.a libalarm.a
|
||||||
|
|
||||||
liboptions_a_CPPFLAGS= $(CPPFLAGS) \
|
liboptions_a_CPPFLAGS= $(CPPFLAGS) \
|
||||||
-DDEFAULT_PID_FILE_NAME="$(localstatedir)/mysqlmanager.pid" \
|
-DDEFAULT_PID_FILE_NAME="$(localstatedir)/mysqlmanager.pid" \
|
||||||
@ -45,7 +45,14 @@ liboptions_a_SOURCES= options.h options.cc priv.h priv.cc
|
|||||||
nodist_libnet_a_SOURCES= password.c pack.c sql_state.c net_serv.cc
|
nodist_libnet_a_SOURCES= password.c pack.c sql_state.c net_serv.cc
|
||||||
nodist_libnet_a_CPPFLAGS= $(CPPFLAGS) -DMYSQL_SERVER
|
nodist_libnet_a_CPPFLAGS= $(CPPFLAGS) -DMYSQL_SERVER
|
||||||
|
|
||||||
CLEANFILES= net_serv.cc password.c pack.c sql_state.c
|
nodist_libalarm_a_SOURCES= thr_alarm.c
|
||||||
|
nodist_libalarm_a_CPPFLAGS= $(CPPFLAGS) -DMYSQL_SERVER
|
||||||
|
libalarm_a_LIBADD= $(top_builddir)/mysys/mf_qsort2.o \
|
||||||
|
$(top_builddir)/mysys/queues.o \
|
||||||
|
$(top_builddir)/mysys/my_new.o
|
||||||
|
|
||||||
|
|
||||||
|
CLEANFILES= net_serv.cc password.c pack.c sql_state.c thr_alarm.c
|
||||||
|
|
||||||
net_serv.cc: Makefile
|
net_serv.cc: Makefile
|
||||||
rm -f $(srcdir)/net_serv.cc
|
rm -f $(srcdir)/net_serv.cc
|
||||||
@ -63,32 +70,35 @@ sql_state.c: Makefile
|
|||||||
rm -f $(srcdir)/sql_state.c
|
rm -f $(srcdir)/sql_state.c
|
||||||
@LN_CP_F@ $(top_srcdir)/sql/sql_state.c $(srcdir)/sql_state.c
|
@LN_CP_F@ $(top_srcdir)/sql/sql_state.c $(srcdir)/sql_state.c
|
||||||
|
|
||||||
|
thr_alarm.c: Makefile
|
||||||
|
rm -f $(srcdir)/thr_alarm.c
|
||||||
|
@LN_CP_F@ $(top_srcdir)/mysys/thr_alarm.c $(srcdir)/thr_alarm.c
|
||||||
|
|
||||||
bin_PROGRAMS= mysqlmanager
|
bin_PROGRAMS= mysqlmanager
|
||||||
|
|
||||||
mysqlmanager_SOURCES= mysqlmanager.cc manager.h manager.cc log.h log.cc \
|
mysqlmanager_SOURCES= command.cc command.h mysqlmanager.cc \
|
||||||
|
manager.h manager.cc log.h log.cc \
|
||||||
thread_registry.h thread_registry.cc \
|
thread_registry.h thread_registry.cc \
|
||||||
listener.h listener.cc \
|
listener.h listener.cc protocol.h protocol.cc \
|
||||||
mysql_connection.h mysql_connection.cc \
|
mysql_connection.h mysql_connection.cc \
|
||||||
protocol.h protocol.cc \
|
|
||||||
user_map.h user_map.cc \
|
user_map.h user_map.cc \
|
||||||
messages.h messages.cc \
|
messages.h messages.cc \
|
||||||
$(top_srcdir)/sql/sql_string.cc \
|
$(top_srcdir)/sql/sql_string.cc \
|
||||||
command.h command.cc \
|
|
||||||
commands.h commands.cc \
|
commands.h commands.cc \
|
||||||
factory.h factory.cc \
|
factory.h factory.cc \
|
||||||
instance.h instance.cc \
|
instance.h instance.cc \
|
||||||
instance_map.h instance_map.cc\
|
instance_map.h instance_map.cc\
|
||||||
instance_options.h instance_options.cc \
|
instance_options.h instance_options.cc \
|
||||||
buffer.h buffer.cc parse.cc parse.h \
|
buffer.h buffer.cc parse.cc parse.h \
|
||||||
guardian.cc guardian.h mysql_manager_error.h
|
guardian.cc guardian.h common_structures.h \
|
||||||
|
mysql_manager_error.h
|
||||||
|
|
||||||
mysqlmanager_LDADD= liboptions.a \
|
mysqlmanager_LDADD= liboptions.a \
|
||||||
libnet.a \
|
libnet.a \
|
||||||
|
libalarm.a \
|
||||||
$(top_builddir)/vio/libvio.a \
|
$(top_builddir)/vio/libvio.a \
|
||||||
$(top_builddir)/mysys/libmysys.a \
|
$(top_builddir)/libmysql_r/libmysqlclient_r.la \
|
||||||
$(top_builddir)/strings/libmystrings.a \
|
$(top_builddir)/dbug/libdbug.a -lz
|
||||||
$(top_builddir)/dbug/libdbug.a \
|
|
||||||
$(top_builddir)/libmysql/libmysqlclient.la
|
|
||||||
|
|
||||||
|
|
||||||
tags:
|
tags:
|
||||||
|
@ -141,13 +141,13 @@ Instance_map::~Instance_map()
|
|||||||
|
|
||||||
int Instance_map::lock()
|
int Instance_map::lock()
|
||||||
{
|
{
|
||||||
pthread_mutex_lock(&LOCK_instance_map);
|
return pthread_mutex_lock(&LOCK_instance_map);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int Instance_map::unlock()
|
int Instance_map::unlock()
|
||||||
{
|
{
|
||||||
pthread_mutex_unlock(&LOCK_instance_map);
|
return pthread_mutex_unlock(&LOCK_instance_map);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user