aboutsummaryrefslogtreecommitdiffstats
path: root/math
diff options
context:
space:
mode:
authordhn <dhn@FreeBSD.org>2010-10-27 04:22:39 +0800
committerdhn <dhn@FreeBSD.org>2010-10-27 04:22:39 +0800
commit6b1ef4bde72cb47c0801ae3fa7831c730ee19e8b (patch)
tree690adb65d3c2984bdd9affdc04f556420dfccdca /math
parent102eb69f81355668f1e35cfac959d8212bf51063 (diff)
downloadfreebsd-ports-gnome-6b1ef4bde72cb47c0801ae3fa7831c730ee19e8b.tar.gz
freebsd-ports-gnome-6b1ef4bde72cb47c0801ae3fa7831c730ee19e8b.tar.zst
freebsd-ports-gnome-6b1ef4bde72cb47c0801ae3fa7831c730ee19e8b.zip
- Update to 2010.10.25
Diffstat (limited to 'math')
-rw-r--r--math/fxt/Makefile2
-rw-r--r--math/fxt/distinfo6
-rw-r--r--math/fxt/files/patch-src__fxtalloca.h18
3 files changed, 22 insertions, 4 deletions
diff --git a/math/fxt/Makefile b/math/fxt/Makefile
index a54f83652867..650c3d82057b 100644
--- a/math/fxt/Makefile
+++ b/math/fxt/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= fxt
-PORTVERSION= 2010.06.15
+PORTVERSION= 2010.10.25
CATEGORIES= math
MASTER_SITES= http://www.jjj.de/fxt/
EXTRACT_SUFX= .tgz
diff --git a/math/fxt/distinfo b/math/fxt/distinfo
index 66158908b091..28e41ed98149 100644
--- a/math/fxt/distinfo
+++ b/math/fxt/distinfo
@@ -1,3 +1,3 @@
-MD5 (fxt-2010.06.15.tgz) = 79cc6c4632a617e50c6e6a56af1840af
-SHA256 (fxt-2010.06.15.tgz) = 28af9b338d5079ad0f9f74055cc5cc95f946db8eff411f41c04d9e45b3f3f970
-SIZE (fxt-2010.06.15.tgz) = 1220369
+MD5 (fxt-2010.10.25.tgz) = cc202619b81a7793f59ec17483daf65a
+SHA256 (fxt-2010.10.25.tgz) = 66dd959c3174d8cfb646777c5b456882a78b373c14498c5f5b7d771c3b894d55
+SIZE (fxt-2010.10.25.tgz) = 1300397
diff --git a/math/fxt/files/patch-src__fxtalloca.h b/math/fxt/files/patch-src__fxtalloca.h
new file mode 100644
index 000000000000..6b2480a3ccfc
--- /dev/null
+++ b/math/fxt/files/patch-src__fxtalloca.h
@@ -0,0 +1,18 @@
+--- ./src/fxtalloca.h.orig 2010-10-26 21:49:13.000000000 +0200
++++ ./src/fxtalloca.h 2010-10-26 21:49:58.000000000 +0200
+@@ -16,13 +16,13 @@
+ #if defined __GNUC__ // GNU compiler
+ #define ALLOCA(Type, v, n) Type v[n]
+ #else // __GNUC__
+-#include <alloca.h>
++#include <stdlib.h>
+ #define ALLOCA(Type, v, n) Type *v = (Type *)alloca((n)*sizeof(Type))
+ #endif // __GNUC__
+
+ #ifdef FORCE_ALLOCA_H
+ #undef ALLOCA
+-#include <alloca.h>
++#include <stdlib.h>
+ #define ALLOCA(Type, v, n) Type *v = (Type *)alloca((n)*sizeof(Type))
+ #endif
+