dect
/
asterisk
Archived
13
0
Fork 0

Relax check for XOPEN_VERSION.

It's not clear that we actually require XOPEN_VERSION to be 600 or greater
at this time, so skip the check for now.



git-svn-id: http://svn.digium.com/svn/asterisk/trunk@212672 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
kpfleming 2009-08-17 20:40:24 +00:00
parent ff93d9c264
commit 99b05e8bf4
1 changed files with 3 additions and 0 deletions

View File

@ -28,9 +28,12 @@
#if _POSIX_VERSION < 200112L
#error System does not support POSIX version 200112.
#endif
/* It is not clear if we need this version check at this time.
#if _XOPEN_VERSION < 600
#error System does not support XOPEN version 600.
#endif
*/
#if !defined(NO_MALLOC_DEBUG) && !defined(STANDALONE) && defined(MALLOC_DEBUG)
#include "asterisk/astmm.h"