1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

- Update to 2010.10.25

This commit is contained in:
Dennis Herrmann 2010-10-26 20:22:39 +00:00
parent 280f42698d
commit 49e35d11ee
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=263628
3 changed files with 22 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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