[asterisk-commits] kpfleming: trunk r212672 - /trunk/include/asterisk.h
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Aug 17 15:40:27 CDT 2009
Author: kpfleming
Date: Mon Aug 17 15:40:24 2009
New Revision: 212672
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=212672
Log:
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.
Modified:
trunk/include/asterisk.h
Modified: trunk/include/asterisk.h
URL: http://svn.asterisk.org/svn-view/asterisk/trunk/include/asterisk.h?view=diff&rev=212672&r1=212671&r2=212672
==============================================================================
--- trunk/include/asterisk.h (original)
+++ trunk/include/asterisk.h Mon Aug 17 15:40:24 2009
@@ -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"
More information about the asterisk-commits
mailing list