From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7500 invoked by alias); 22 Jan 2010 13:20:34 -0000 Received: (qmail 7485 invoked by uid 9664); 22 Jan 2010 13:20:33 -0000 Date: Fri, 22 Jan 2010 13:20:00 -0000 Message-ID: <20100122132033.7483.qmail@sourceware.org> From: mbroz@sourceware.org To: lvm-devel@redhat.com, lvm2-cvs@sourceware.org Subject: LVM2 make.tmpl.in Mailing-List: contact lvm2-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: lvm2-cvs-owner@sourceware.org X-SW-Source: 2010-01/txt/msg00136.txt.bz2 CVSROOT: /cvs/lvm2 Module name: LVM2 Changes by: mbroz@sourceware.org 2010-01-22 13:20:33 Modified files: . : make.tmpl.in Log message: Switch memory debugging off for now if compiled with dmeventd, functions are not thread-safe in debug mode. Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/make.tmpl.in.diff?cvsroot=lvm2&r1=1.74&r2=1.75 --- LVM2/make.tmpl.in 2010/01/19 01:10:46 1.74 +++ LVM2/make.tmpl.in 2010/01/22 13:20:32 1.75 @@ -78,7 +78,10 @@ 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")