summaryrefslogtreecommitdiff
path: root/ndb
diff options
context:
space:
mode:
authorunknown <joreland@mysql.com>2004-05-12 20:58:35 +0200
committerunknown <joreland@mysql.com>2004-05-12 20:58:35 +0200
commitae94c9a1d8df90021395eb39c1dc476e663b9593 (patch)
treec0cfef30cddd4ab9063c89e08753296a8175cc5f /ndb
parentb36bf32dc9ec9e433e6c191c4aa78e6f4ae4936b (diff)
downloadmariadb-git-ae94c9a1d8df90021395eb39c1dc476e663b9593.tar.gz
Only compile SHM if configured to
Diffstat (limited to 'ndb')
-rw-r--r--ndb/src/common/transporter/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/src/common/transporter/Makefile b/ndb/src/common/transporter/Makefile
index 5fb869e27eb..372bf640566 100644
--- a/ndb/src/common/transporter/Makefile
+++ b/ndb/src/common/transporter/Makefile
@@ -10,7 +10,6 @@ DIRS := basictest perftest
SOURCES = \
Transporter.cpp \
SendBuffer.cpp \
- SHM_Transporter.cpp \
TCP_Transporter.cpp \
TransporterRegistry.cpp \
Packer.cpp
@@ -22,6 +21,7 @@ CCFLAGS_LOC += -I$(call fixpath,$(NDB_TOP)/include/kernel) \
ifeq ($(NDB_SHM), Y)
+SOURCES += SHM_Transporter.cpp
ifeq ($(NDB_OS), WIN32)
SOURCES += SHM_Transporter.win32.cpp
else