The older port of xfractint didn't work on my box (amd64, truecolor) so I looked for a more up to date version and hacked it into working order. The new version seems to work well, except that the maintainer dropped most of the .map files. I've never been an expert on this program so I don't really know how to use the extra .map files, maybe someone else wants do something about it. I didn't work hard on getting it to build with nasm either since the new port with amd64 support is not on the tree yet but for i386 it's certainly possible it shouldn't be difficult. PR: ports/116067 Submitted by: "Pedro F. Giffuni" <giffunip@tutopia.com>
21 lines
493 B
C
21 lines
493 B
C
--- soi.c.orig Mon Apr 8 19:33:28 2002
|
|
+++ soi.c Mon Sep 3 16:01:06 2007
|
|
@@ -13,7 +13,9 @@
|
|
*/
|
|
#include <time.h>
|
|
#include <string.h>
|
|
+#ifndef BIG_ANSI_C
|
|
#include <malloc.h>
|
|
+#endif
|
|
#include "port.h"
|
|
#include "prototyp.h"
|
|
|
|
@@ -21,7 +23,7 @@
|
|
#define FABS(x) fabsl(x)
|
|
/* the following needs to be changed back to frexpl once the portability
|
|
issue has been addressed JCO */
|
|
-#ifndef XFRACT
|
|
+#ifndef __FreeBSD__
|
|
#define FREXP(x,y) frexpl(x,y)
|
|
#else
|
|
#define FREXP(x,y) frexp(x,y)
|