summaryrefslogtreecommitdiff
path: root/math
diff options
context:
space:
mode:
authorLars Koeller <lkoeller@FreeBSD.org>2004-05-24 18:59:13 +0000
committerLars Koeller <lkoeller@FreeBSD.org>2004-05-24 18:59:13 +0000
commit7d376c7864301b761d116ecd708a0e0e8830f28c (patch)
tree87c5ece4e4001a7d957b256b49d5fd86ca34c0e1 /math
parentSNMPTT (SNMP Trap Translator) is an SNMP trap handler written in Perl (diff)
o) Unbreak compilation error on FreeBSD 5.2 (remove patch-ai)
Notes
Notes: svn path=/head/; revision=109887
Diffstat (limited to 'math')
-rw-r--r--math/grace/Makefile2
-rw-r--r--math/grace/files/patch-ai15
2 files changed, 1 insertions, 16 deletions
diff --git a/math/grace/Makefile b/math/grace/Makefile
index 0c6f7dfddbce..b8497b0cc4f5 100644
--- a/math/grace/Makefile
+++ b/math/grace/Makefile
@@ -7,7 +7,7 @@
PORTNAME= grace
PORTVERSION= 5.1.14
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= math print
#
# You never know when and why it is moved to ../src/old/ :-)
diff --git a/math/grace/files/patch-ai b/math/grace/files/patch-ai
deleted file mode 100644
index e564e1627c66..000000000000
--- a/math/grace/files/patch-ai
+++ /dev/null
@@ -1,15 +0,0 @@
---- cmath.h.orig Fri Dec 12 21:33:45 2003
-+++ cmath.h Thu Jan 22 22:22:45 2004
-@@ -175,5 +175,12 @@
- #endif
-
- #if !defined(HAVE_ISNAN_DECL) && !defined(HAVE_ISNAN_MACRO)
-+#ifdef __FreeBSD__
-+# include <sys/param.h>
-+# if __FreeBSD_version < 500100
-+extern int isnan ( double x );
-+# endif
-+#endif
-+#else
- extern int isnan ( double x );
- #endif