mirror of
https://github.com/MariaDB/server.git
synced 2025-01-24 15:54:37 +01:00
8f145e4cbd
ndb/config/win-lib.am: removed TLS stuff (which I don't know what it is) ndb/include/kernel/signaldata/UtilLock.hpp: Made stuff public ndb/include/ndb_global.h.in: better defines for strcasecmp ndb/src/common/transporter/Transporter.cpp: Use NDB_INVALID_SOCKET ndb/src/common/util/SocketClient.cpp: Use NDB_INVALID_SOCKET ndb/src/kernel/vm/Callback.hpp: Move callback into SimulatedBlock as it for some mysterious reason otherwise got sizeof()=0 on windows ndb/src/kernel/vm/Configuration.cpp: Removed extra (bug) semi-colon ndb/src/kernel/vm/Mutex.cpp: Move callback into SimulatedBlock as it for some mysterious reason otherwise got sizeof()=0 on windows ndb/src/kernel/vm/Mutex.hpp: Move callback into SimulatedBlock as it for some mysterious reason otherwise got sizeof()=0 on windows ndb/src/kernel/vm/SectionReader.cpp: Use correct struct-type ndb/src/kernel/vm/SectionReader.hpp: Use correct struct-type ndb/src/kernel/vm/SimulatedBlock.cpp: Move callback into SimulatedBlock as it for some mysterious reason otherwise got sizeof()=0 on windows ndb/src/kernel/vm/SimulatedBlock.hpp: Move callback into SimulatedBlock as it for some mysterious reason otherwise got sizeof()=0 on windows ndb/src/mgmclient/Makefile.am: Add mgm client to windoze ndb/test/src/Makefile.am: Fix lib
35 lines
1.3 KiB
Makefile
35 lines
1.3 KiB
Makefile
|
|
noinst_LIBRARIES = libNDBT.a
|
|
|
|
libNDBT_a_SOURCES = \
|
|
NDBT_ReturnCodes.cpp \
|
|
NDBT_Error.cpp NDBT_Tables.cpp NDBT_ResultRow.cpp \
|
|
NDBT_Test.cpp HugoCalculator.cpp \
|
|
HugoOperations.cpp HugoTransactions.cpp \
|
|
HugoAsynchTransactions.cpp UtilTransactions.cpp \
|
|
NdbRestarter.cpp NdbRestarts.cpp NDBT_Output.cpp \
|
|
NdbBackup.cpp NdbConfig.cpp NdbGrep.cpp NDBT_Table.cpp \
|
|
NdbSchemaCon.cpp NdbSchemaOp.cpp getarg.c \
|
|
CpcClient.cpp
|
|
|
|
INCLUDES_LOC = -I$(top_srcdir)/ndb/src/common/mgmcommon -I$(top_srcdir)/ndb/include/mgmcommon -I$(top_srcdir)/ndb/include/kernel -I$(top_srcdir)/ndb/src/mgmapi
|
|
|
|
include $(top_srcdir)/ndb/config/common.mk.am
|
|
include $(top_srcdir)/ndb/config/type_ndbapitest.mk.am
|
|
|
|
# Don't update the files from bitkeeper
|
|
%::SCCS/s.%
|
|
|
|
windoze-dsp: libNDBT.dsp
|
|
|
|
libNDBT.dsp: Makefile \
|
|
$(top_srcdir)/ndb/config/win-lib.am \
|
|
$(top_srcdir)/ndb/config/win-name \
|
|
$(top_srcdir)/ndb/config/win-includes \
|
|
$(top_srcdir)/ndb/config/win-sources \
|
|
$(top_srcdir)/ndb/config/win-libraries
|
|
cat $(top_srcdir)/ndb/config/win-lib.am > $@
|
|
@$(top_srcdir)/ndb/config/win-name $@ $(noinst_LIBRARIES)
|
|
@$(top_srcdir)/ndb/config/win-includes $@ $(INCLUDES)
|
|
@$(top_srcdir)/ndb/config/win-sources $@ $(libNDBT_a_SOURCES)
|
|
@$(top_srcdir)/ndb/config/win-libraries $@ LIB
|