1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-28 08:00:31 -04:00
ports/graphics/libecwj2/files/patch-Source-C-NCSUtil-malloc.c
Sergey A. Osokin 214b06a42c Add graphics/libecwj2 that implements support for the JPEG2000 and
ECW image formats.

Submitted by:	glebius
2010-08-03 10:26:57 +00:00

35 lines
661 B
C

--- Source/C/NCSUtil/malloc.c.orig 2009-04-05 22:40:20.000000000 +0400
+++ Source/C/NCSUtil/malloc.c 2009-04-05 22:44:30.000000000 +0400
@@ -70,6 +70,10 @@
#endif
+#ifdef FREEBSD
+#include <sys/sysctl.h>
+#endif
+
void NCSMallocInit(void)
{
#ifdef NOTDEF
@@ -430,7 +434,21 @@
return((INT32)nTotalRam);
#else /* PALM */
+
+#ifdef FREEBSD
+ int mib[2], physmem;
+ size_t len;
+
+ mib[0] = CTL_HW;
+ mib[1] = HW_PHYSMEM;
+ len = sizeof(physmem);
+ sysctl(mib, 2, &physmem, &len, NULL, 0);
+
+ return (physmem);
+
+#else /* FREEBSD */
#error - NCSPhysicalMemorySize()
+#endif /* FREEBSD */
#endif /* PALM */
#endif /* SOLARIS */
#endif /* IRIX */