Browse Source

update daemon makefiles

pull/16/head
R4SAS 7 years ago
parent
commit
784be2fbcc
  1. 4
      src/makefile.mingw
  2. 3
      src/makefile.unix

4
src/makefile.mingw

@ -18,7 +18,7 @@ @@ -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= \ @@ -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

3
src/makefile.unix

@ -5,6 +5,7 @@ @@ -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 += \ @@ -85,7 +86,7 @@ LIBS += \
HARDENING+=-D_FORTIFY_SOURCE=2
#
ifneq (${USE_DEBUG}, no)
ifneq (${USE_DEBUG}, 0)
DEBUGFLAGS=-g
endif

Loading…
Cancel
Save