forked from Lainports/freebsd-ports
a Athlon
- Fix man pages so they say ${PREFIX}/etc instead of /etc
- Fix core dump of fftw-wisdom in >=5.x [1] by removing a dirty work around
to use a 16-byte aligned maloc by really using freebsd's 16-byte
aligned maloc
Reported by: phk
12 lines
294 B
C
12 lines
294 B
C
--- kernel/alloc.c.orig Sat Mar 15 15:29:43 2003
|
|
+++ kernel/alloc.c Thu Dec 9 03:31:56 2004
|
|
@@ -79,6 +79,9 @@
|
|
# undef real_free
|
|
# define real_free our_free16
|
|
|
|
+
|
|
+# elif defined(__FreeBSD__)
|
|
+ p = malloc(n);
|
|
# elif defined(HAVE_MEMALIGN)
|
|
p = memalign(MIN_ALIGNMENT, n);
|
|
|