dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 296429 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.8

........
  r296429 | tilghman | 2010-11-27 03:58:57 -0600 (Sat, 27 Nov 2010) | 5 lines
  
  Also don't build DEBUG_FD_LEAKS when STANDALONE2 is defined.
  
  (closes issue #18385)
   Reported by: cmaj
........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@296430 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
tilghman 2010-11-27 10:00:35 +00:00
parent 9cbeb6626c
commit faf6a479bf
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
#include "asterisk/autoconfig.h"
#if !defined(NO_MALLOC_DEBUG) && !defined(STANDALONE) && defined(MALLOC_DEBUG)
#if !defined(NO_MALLOC_DEBUG) && !defined(STANDALONE) && !defined(STANDALONE2) && defined(MALLOC_DEBUG)
#include "asterisk/astmm.h"
#endif
@ -43,7 +43,7 @@
#define setpriority __PLEASE_USE_ast_set_priority_INSTEAD_OF_setpriority__
#define sched_setscheduler __PLEASE_USE_ast_set_priority_INSTEAD_OF_sched_setscheduler__
#if defined(DEBUG_FD_LEAKS) && !defined(STANDALONE) && !defined(STANDALONE_AEL)
#if defined(DEBUG_FD_LEAKS) && !defined(STANDALONE) && !defined(STANDALONE2) && !defined(STANDALONE_AEL)
/* These includes are all about ordering */
#include <stdio.h>
#include <sys/types.h>