From 3ff11837d4160ce73f6da1430dbab9db10aee97a Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Mon, 22 Feb 2010 02:36:17 +0000 Subject: [PATCH] disable posix_memalign() on Mac - it requires 10.6 --- libtransmission/verify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtransmission/verify.c b/libtransmission/verify.c index 4f515d115..0b17b5d13 100644 --- a/libtransmission/verify.c +++ b/libtransmission/verify.c @@ -21,7 +21,7 @@ #endif #if defined(SYS_DARWIN) #define HAVE_GETPAGESIZE - #define HAVE_POSIX_MEMALIGN + //#define HAVE_POSIX_MEMALIGN requires Mac OS X 10.6 #define HAVE_VALLOC #endif