[svn-commits] tilghman: branch 1.6.2 r197375 - in /branches/1.6.2: ./ main/xml.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed May 27 18:49:28 CDT 2009


Author: tilghman
Date: Wed May 27 18:49:24 2009
New Revision: 197375

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=197375
Log:
Merged revisions 197374 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r197374 | tilghman | 2009-05-27 18:48:15 -0500 (Wed, 27 May 2009) | 2 lines
  
  Revert commit 192032.  This define is needed on Mac OS X.
........

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/main/xml.c

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.2/main/xml.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.2/main/xml.c?view=diff&rev=197375&r1=197374&r2=197375
==============================================================================
--- branches/1.6.2/main/xml.c (original)
+++ branches/1.6.2/main/xml.c Wed May 27 18:49:24 2009
@@ -27,6 +27,9 @@
 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
 
 #if defined(HAVE_LIBXML2)
+#ifndef _POSIX_C_SOURCE	/* Needed on Mac OS X */
+#define _POSIX_C_SOURCE 200112L
+#endif
 #include <libxml/parser.h>
 #include <libxml/tree.h>
 #include <libxml/xinclude.h>




More information about the svn-commits mailing list