1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Switch memory debugging off for now if compiled with dmeventd,

functions are not thread-safe in debug mode.
This commit is contained in:
Milan Broz 2010-01-22 13:20:32 +00:00
parent 676b511245
commit 81d19574f7

View File

@ -78,7 +78,10 @@ CFLAGS += @COPTIMISE_FLAG@
ifeq ("@DEBUG@", "yes")
CFLAGS += -g -fno-omit-frame-pointer
DEFS += -DDEBUG
DEFS += -DDEBUG_MEM
# memory debugging is not thread-safe yet
ifneq ("@DMEVENTD@", "yes")
DEFS += -DDEBUG_MEM
endif
endif
ifeq ("@INTL@", "yes")