[asterisk-commits] tilghman: branch tilghman/malloc_hold-1.6.2 r259662 - /team/tilghman/malloc_h...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Apr 28 02:42:37 CDT 2010
Author: tilghman
Date: Wed Apr 28 02:42:33 2010
New Revision: 259662
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=259662
Log:
Solaris has the same exception as Darwin and the BSDs
Modified:
team/tilghman/malloc_hold-1.6.2/main/astmm.c
Modified: team/tilghman/malloc_hold-1.6.2/main/astmm.c
URL: http://svnview.digium.com/svn/asterisk/team/tilghman/malloc_hold-1.6.2/main/astmm.c?view=diff&rev=259662&r1=259661&r2=259662
==============================================================================
--- team/tilghman/malloc_hold-1.6.2/main/astmm.c (original)
+++ team/tilghman/malloc_hold-1.6.2/main/astmm.c Wed Apr 28 02:42:33 2010
@@ -34,7 +34,7 @@
#include <time.h>
#include <sys/mman.h>
#include <signal.h>
-#if !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(__Darwin__)
+#if !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(__Darwin__) && !defined(SOLARIS)
#include <malloc.h>
#endif
#include <errno.h>
More information about the asterisk-commits
mailing list