defs-dev.mk, defs-dist.mk: Replace USE_XXX = true by USE_XXX ?= true

This commit is contained in:
Jan Lindemann 2007-10-08 21:24:15 +00:00 committed by Jan Lindemann
commit 6b7243638b
2 changed files with 55 additions and 55 deletions

View file

@ -133,37 +133,37 @@ LOGDIRMODE ?= $(DOCDIRMODE)
# for using the dbmalloc lib, before you will need to do: # for using the dbmalloc lib, before you will need to do:
# cd $(MODDIR)/contrib/dbmalloc; tar -xzf dbmalloc-ver.sion.tar.gz # cd $(MODDIR)/contrib/dbmalloc; tar -xzf dbmalloc-ver.sion.tar.gz
#USE_BTOOLS = true #USE_BTOOLS ?= true
#USE_DSPFS = true #USE_DSPFS ?= true
#USE_ENGINE_BENNO = true #USE_ENGINE_BENNO ?= true
#USE_ENGINE_JAN = true #USE_ENGINE_JAN ?= true
#USE_JACK = true #USE_JACK ?= true
#USE_JACKDUMMY = true #USE_JACKDUMMY ?= true
#USE_JACKJART = true #USE_JACKJART ?= true
#USE_JACKRTAI = true #USE_JACKRTAI ?= true
#USE_JACK = true #USE_JACK ?= true
#USE_DBMALLOC = true #USE_DBMALLOC ?= true
#USE_DMALLOC = true #USE_DMALLOC ?= true
#USE_EFENCE = true #USE_EFENCE ?= true
#USE_VALGRIND = true #USE_VALGRIND ?= true
#USE_MEMWATCH = true #USE_MEMWATCH ?= true
#USE_MPATROL = true #USE_MPATROL ?= true
#USE_PROFILER = true #USE_PROFILER ?= true
#USE_TRACING = true #USE_TRACING ?= true
#USE_TIMER = true #USE_TIMER ?= true
LOG_THREAD_NAMES = true LOG_THREAD_NAMES ?= true
#STRIP_SYMBOLS = true #STRIP_SYMBOLS ?= true
COMPILE_DEBUG_CODE = true COMPILE_DEBUG_CODE ?= true
COMPILE_DEBUG_LOG = true COMPILE_DEBUG_LOG ?= true
USE_COMPILER_DEBUG_OPTS = true USE_COMPILER_DEBUG_OPTS ?= true
#USE_COMPILER_OPTIMIZATION_OPTS = true #USE_COMPILER_OPTIMIZATION_OPTS ?= true
#USE_FUSE = true #USE_FUSE ?= true
#USE_SNDFILE = true #USE_SNDFILE ?= true
#USE_GLIB = true #USE_GLIB ?= true

View file

@ -134,36 +134,36 @@ LOGDIRMODE ?= $(DOCDIRMODE)
# for using the dbmalloc lib, before you will need to do: # for using the dbmalloc lib, before you will need to do:
# cd $(MODDIR)/contrib/dbmalloc; tar -xzf dbmalloc-ver.sion.tar.gz # cd $(MODDIR)/contrib/dbmalloc; tar -xzf dbmalloc-ver.sion.tar.gz
#USE_BTOOLS = true #USE_BTOOLS ?= true
#USE_DSPFS = true #USE_DSPFS ?= true
#USE_ENGINE_BENNO = true #USE_ENGINE_BENNO ?= true
#USE_ENGINE_JAN = true #USE_ENGINE_JAN ?= true
#USE_JACK = true #USE_JACK ?= true
#USE_JACKDUMMY = true #USE_JACKDUMMY ?= true
#USE_JACKJART = true #USE_JACKJART ?= true
#USE_JACKRTAI = true #USE_JACKRTAI ?= true
#USE_JACK = true #USE_JACK ?= true
#USE_DBMALLOC = true #USE_DBMALLOC ?= true
#USE_DMALLOC = true #USE_DMALLOC ?= true
#USE_EFENCE = true #USE_EFENCE ?= true
#USE_VALGRIND = true #USE_VALGRIND ?= true
#USE_MEMWATCH = true #USE_MEMWATCH ?= true
#USE_MPATROL = true #USE_MPATROL ?= true
#USE_PROFILER = true #USE_PROFILER ?= true
#USE_TRACING = true #USE_TRACING ?= true
#USE_TIMER = true #USE_TIMER ?= true
#LOG_THREAD_NAMES = true #LOG_THREAD_NAMES ?= true
#STRIP_SYMBOLS = true #STRIP_SYMBOLS ?= true
COMPILE_DEBUG_CODE = true COMPILE_DEBUG_CODE ?= true
#COMPILE_DEBUG_LOG = true #COMPILE_DEBUG_LOG ?= true
USE_COMPILER_DEBUG_OPTS = true USE_COMPILER_DEBUG_OPTS ?= true
#USE_COMPILER_OPTIMIZATION_OPTS = true #USE_COMPILER_OPTIMIZATION_OPTS ?= true
#USE_FUSE = true #USE_FUSE ?= true
#USE_SNDFILE = true #USE_SNDFILE ?= true
#USE_GLIB = true #USE_GLIB ?= true
USE_ASSERTIONS = false USE_ASSERTIONS ?= false