[Freeswitch-svn] [commit] r8707 - freeswitch/trunk/libs/xmlrpc-c/include/xmlrpc-c
Freeswitch SVN
mikej at freeswitch.org
Wed May 28 12:38:33 EDT 2008
Author: mikej
Date: Wed May 28 12:38:32 2008
New Revision: 8707
Modified:
freeswitch/trunk/libs/xmlrpc-c/include/xmlrpc-c/util_int.h
Log:
fix xmlrpc-c build on OS X 10.4 (FSBUILD-47)
Modified: freeswitch/trunk/libs/xmlrpc-c/include/xmlrpc-c/util_int.h
==============================================================================
--- freeswitch/trunk/libs/xmlrpc-c/include/xmlrpc-c/util_int.h (original)
+++ freeswitch/trunk/libs/xmlrpc-c/include/xmlrpc-c/util_int.h Wed May 28 12:38:32 2008
@@ -3,8 +3,12 @@
#include "util.h"
+#ifndef MIN
#define MIN(a,b) ((a) < (b) ? (a) : (b))
+#endif
+#ifndef MAX
#define MAX(a,b) ((a) > (b) ? (a) : (b))
+#endif
/* When we deallocate a pointer in a struct, we often replace it with
** this and throw in a few assertions here and there. */
More information about the Freeswitch-svn
mailing list