mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 12:03:31 +01:00
Release 1.1.8-2
- Merge changes of V_1_1_5-2F3 -> V_1_1_5-2F4
This commit is contained in:
parent
c42e2b04cd
commit
64f194bcf2
5 changed files with 15 additions and 1 deletions
4
CHANGES
4
CHANGES
|
|
@ -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
|
||||
|
|
|
|||
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
|||
1.1.8-0-dev
|
||||
1.1.8-2-dev
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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_
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue