mirror of
https://github.com/MariaDB/server.git
synced 2026-05-05 22:55:32 +02:00
Logging to logging@openlogging.org accepted SCI_Transporter.hpp, SCI_Transporter.cpp: Major fix-up of SCI Transporter, fixed so that it works with single card, fixed wrap around, added lots of DBUG statements, merged with new transporter handling TransporterRegistry.cpp: Some fixes for wrap around needed plus DBUG handling TCP_Transporter.hpp, TCP_Transporter.cpp: Added DBUG statements SHM_Transporter.hpp, SHM_Transporter.cpp: Fixed SHM Transporter SHM_Buffer.hpp: Fixed SHM Buffer to handle wrap around properly IPCConfig.cpp: Fixed up config of SCI SocketServer.cpp: Added DBUG support for SocketServer threads ConfigInfo.cpp: Config changes for SCI TransporterDefinitions.hpp, mgmapi_config_parameters.h: SCI fixes Makefile.am, type_ndbapitools.mk.am, type_ndbapitest.mk.am: Added SCI library path to Makefiles configure.in: Fixed small bug with shared mem and sci together in configure acinclude.m4: Added possibility of providing SCI library path in confgure acinclude.m4: Added possibility of providing SCI library path in confgure configure.in: Fixed small bug with shared mem and sci together in configure ndb/config/type_ndbapitest.mk.am: Added SCI library path to Makefiles ndb/config/type_ndbapitools.mk.am: Added SCI library path to Makefiles ndb/src/cw/cpcd/Makefile.am: Added SCI library path to Makefiles ndb/src/kernel/Makefile.am: Added SCI library path to Makefiles ndb/src/kernel/blocks/backup/restore/Makefile.am: Added SCI library path to Makefiles ndb/src/mgmsrv/Makefile.am: Added SCI library path to Makefiles sql/Makefile.am: Added SCI library path to Makefiles ndb/src/common/transporter/Makefile.am: Added SCI library path to Makefiles ndb/include/mgmapi/mgmapi_config_parameters.h: SCI fixes ndb/include/transporter/TransporterDefinitions.hpp: SCI fixes ndb/src/mgmsrv/ConfigInfo.cpp: Config changes for SCI ndb/src/common/util/SocketServer.cpp: Added DBUG support for SocketServer threads ndb/src/common/mgmcommon/IPCConfig.cpp: Fixed up config of SCI ndb/src/common/transporter/SHM_Buffer.hpp: Fixed SHM Buffer to handle wrap around properly ndb/src/common/transporter/SHM_Transporter.cpp: Fixed SHM Transporter ndb/src/common/transporter/SHM_Transporter.hpp: Fixed SHM Transporter ndb/src/common/transporter/TCP_Transporter.cpp: Added DBUG statements ndb/src/common/transporter/TCP_Transporter.hpp: Added DBUG statements ndb/src/common/transporter/TransporterRegistry.cpp: Some fixes for wrap around needed plus DBUG handling ndb/src/common/transporter/SCI_Transporter.cpp: Major fix-up of SCI Transporter, fixed so that it works with single card, fixed wrap around, added lots of DBUG statements, merged with new transporter handling ndb/src/common/transporter/SCI_Transporter.hpp: Major fix-up of SCI Transporter, fixed so that it works with single card, fixed wrap around, added lots of DBUG statements, merged with new transporter handling BitKeeper/etc/logging_ok: Logging to logging@openlogging.org accepted
61 lines
2.2 KiB
Makefile
61 lines
2.2 KiB
Makefile
SUBDIRS = error blocks vm
|
|
|
|
include $(top_srcdir)/ndb/config/common.mk.am
|
|
|
|
ndbbin_PROGRAMS = ndbd
|
|
|
|
ndbd_SOURCES = main.cpp SimBlockList.cpp
|
|
|
|
include $(top_srcdir)/ndb/config/type_kernel.mk.am
|
|
|
|
INCLUDES += \
|
|
-Iblocks/cmvmi \
|
|
-Iblocks/dbacc \
|
|
-Iblocks/dbdict \
|
|
-Iblocks/dbdih \
|
|
-Iblocks/dblqh \
|
|
-Iblocks/dbtc \
|
|
-Iblocks/dbtup \
|
|
-Iblocks/ndbfs \
|
|
-Iblocks/ndbcntr \
|
|
-Iblocks/qmgr \
|
|
-Iblocks/trix \
|
|
-Iblocks/backup \
|
|
-Iblocks/dbutil \
|
|
-Iblocks/suma \
|
|
-Iblocks/grep \
|
|
-Iblocks/dbtux
|
|
|
|
LDADD += \
|
|
blocks/cmvmi/libcmvmi.a \
|
|
blocks/dbacc/libdbacc.a \
|
|
blocks/dbdict/libdbdict.a \
|
|
blocks/dbdih/libdbdih.a \
|
|
blocks/dblqh/libdblqh.a \
|
|
blocks/dbtc/libdbtc.a \
|
|
blocks/dbtup/libdbtup.a \
|
|
blocks/ndbfs/libndbfs.a \
|
|
blocks/ndbcntr/libndbcntr.a \
|
|
blocks/qmgr/libqmgr.a \
|
|
blocks/trix/libtrix.a \
|
|
blocks/backup/libbackup.a \
|
|
blocks/dbutil/libdbutil.a \
|
|
blocks/suma/libsuma.a \
|
|
blocks/grep/libgrep.a \
|
|
blocks/dbtux/libdbtux.a \
|
|
vm/libkernel.a \
|
|
error/liberror.a \
|
|
$(top_builddir)/ndb/src/common/transporter/libtransporter.la \
|
|
$(top_builddir)/ndb/src/common/debugger/libtrace.la \
|
|
$(top_builddir)/ndb/src/common/debugger/signaldata/libsignaldataprint.la \
|
|
$(top_builddir)/ndb/src/common/logger/liblogger.la \
|
|
$(top_builddir)/ndb/src/common/mgmcommon/libmgmsrvcommon.la \
|
|
$(top_builddir)/ndb/src/mgmapi/libmgmapi.la \
|
|
$(top_builddir)/ndb/src/common/portlib/libportlib.la \
|
|
$(top_builddir)/ndb/src/common/util/libgeneral.la \
|
|
$(top_builddir)/dbug/libdbug.a \
|
|
$(top_builddir)/mysys/libmysys.a \
|
|
$(top_builddir)/strings/libmystrings.a @NDB_SCI_LIBS@
|
|
|
|
# Don't update the files from bitkeeper
|
|
%::SCCS/s.%
|