Release 1.1.8-2

- Merge changes of V_1_1_5-2F3 -> V_1_1_5-2F4
This commit is contained in:
Jan Lindemann 2004-11-28 12:26:49 +00:00 committed by Jan Lindemann
commit 64f194bcf2
5 changed files with 15 additions and 1 deletions

View file

@ -171,5 +171,9 @@ o devutil/jcs and make: now adding an EXTRAVERSION string to `uname -r`
-------
o merged changes of V_1_1_5-2 -> V_1_1_5-2F3
o msgfmt: bugfix, fmt_user was not correctly recognized, breaking up_format.c
o usrv: bugfix, "allclients" destination was ignored
o benno added "#include <errno.h>" to contr/YQueue/YQueue.h
1.1.8-2
-------
o merged changes of V_1_1_5-2F3 -> V_1_1_5-2F4

View file

@ -1 +1 @@
1.1.8-0-dev
1.1.8-2-dev

View file

@ -54,6 +54,7 @@ COMPILE_DEBUG_CODE = true
#USE_MEMWATCH = true
#USE_EFENCE = true
#USE_MPATROL = true
#USE_VALGRIND = true
USE_COMPILER_DEBUG_OPTS = true
#USE_TIMER = true
#LOG_THREAD_NAMES = true

View file

@ -202,6 +202,12 @@ ifeq ($(USE_MPATROL),true)
PROJECT_LDFLAGS += -lmpatrolmt -lbfd -liberty
endif
ifeq ($(USE_VALGRIND),true)
PROJECT_CFLAGS += -include /usr/include/valgrind/memcheck.h
PROJECT_CPPFLAGS += -include /usr/include/valgrind/memcheck.h
# PROJECT_LDFLAGS +=
endif
ifeq ($(USE_TIMER),true)
CFLAGS += -D_USE_TIMER_
CPPFLAGS += -D_USE_TIMER_

View file

@ -61,6 +61,9 @@ else
ifneq ($(USE_COMPILER_DEBUG_OPTS),true)
PROJECT_CFLAGS += -DNDEBUG
PROJECT_CPPFLAGS += -DNDEBUG
else
PROJECT_CFLAGS += -fno-inline
PROJECT_CPPFLAGS += -fno-inline
endif
endif