mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 06:40:33 -04:00
- Fix build on ia64 - Fix m_memalign for jemalloc - Set DYNAMIPS_ARCH on non-i386 properly Approved by: portmgr
11 lines
257 B
C
11 lines
257 B
C
--- utils.c.orig Wed Mar 8 22:53:21 2006
|
|
+++ utils.c Wed Mar 8 22:53:37 2006
|
|
@@ -187,7 +187,7 @@
|
|
{
|
|
void *p;
|
|
|
|
-#ifdef __linux__
|
|
+#if defined(__linux__) || HAS_POSIX_MEMALIGN
|
|
if (posix_memalign((void *)&p,boundary,size))
|
|
#else
|
|
#ifdef __CYGWIN__
|