diff --git a/src/makefile.mingw b/src/makefile.mingw index 2df63ed..db6c22b 100644 --- a/src/makefile.mingw +++ b/src/makefile.mingw @@ -18,7 +18,7 @@ CXX ?= g++ USE_IPV6:=1 -USE_DEBUG:=no +USE_DEBUG:=0 DEPSDIR?=/usr/local BOOST_SUFFIX?=-mt @@ -48,7 +48,7 @@ LIBS= \ DEFS=-D_MT -DWIN32 -D_WINDOWS -DWIN32_LEAN_AND_MEAN -DBOOST_THREAD_USE_LIB -DBOOST_SPIRIT_THREADSAFE -ifneq (${USE_DEBUG}, no) +ifneq (${USE_DEBUG}, 0) DEBUGFLAGS=-g endif diff --git a/src/makefile.unix b/src/makefile.unix index e41e75b..919665c 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -5,6 +5,7 @@ # :=1 --> Enable IPv6 support # :=0 --> Disable IPv6 support USE_IPV6:=1 +USE_DEBUG:=0 LINK:=$(CXX) @@ -85,7 +86,7 @@ LIBS += \ HARDENING+=-D_FORTIFY_SOURCE=2 # -ifneq (${USE_DEBUG}, no) +ifneq (${USE_DEBUG}, 0) DEBUGFLAGS=-g endif