aboutsummaryrefslogtreecommitdiff
path: root/math/grace
diff options
context:
space:
mode:
authorLars Koeller <lkoeller@FreeBSD.org>2003-03-27 13:19:24 +0000
committerLars Koeller <lkoeller@FreeBSD.org>2003-03-27 13:19:24 +0000
commita502bdd6ab4f204511b4c9b6bb37a3568d725b96 (patch)
tree53575664ebe65b84ab76d97b4dce8b0e26c30fab /math/grace
parent0d128c9d5f5c6610faa7ce68f84eec9a04db8576 (diff)
downloadports-a502bdd6ab4f204511b4c9b6bb37a3568d725b96.tar.gz
ports-a502bdd6ab4f204511b4c9b6bb37a3568d725b96.zip
o) Grrr forgotten to add the additional patchfiles
Notes
Notes: svn path=/head/; revision=77531
Diffstat (limited to 'math/grace')
-rw-r--r--math/grace/files/patch-ag19
-rw-r--r--math/grace/files/patch-ah19
-rw-r--r--math/grace/files/patch-ai17
3 files changed, 55 insertions, 0 deletions
diff --git a/math/grace/files/patch-ag b/math/grace/files/patch-ag
new file mode 100644
index 000000000000..e5a312c8fa2a
--- /dev/null
+++ b/math/grace/files/patch-ag
@@ -0,0 +1,19 @@
+*** src/t1fonts.c.org Thu Mar 27 13:00:03 2003
+--- src/t1fonts.c Thu Mar 27 13:00:36 2003
+***************
+*** 89,95 ****
+ return (RETURN_FAILURE);
+ }
+
+! nfonts = T1_Get_no_fonts();
+ if (nfonts < 1) {
+ return (RETURN_FAILURE);
+ }
+--- 89,95 ----
+ return (RETURN_FAILURE);
+ }
+
+! nfonts = T1_GetNoFonts();
+ if (nfonts < 1) {
+ return (RETURN_FAILURE);
+ }
diff --git a/math/grace/files/patch-ah b/math/grace/files/patch-ah
new file mode 100644
index 000000000000..bd6088823295
--- /dev/null
+++ b/math/grace/files/patch-ah
@@ -0,0 +1,19 @@
+*** src/fontwin.c.org Thu Mar 27 13:04:56 2003
+--- src/fontwin.c Thu Mar 27 13:05:30 2003
+***************
+*** 320,326 ****
+ Widget font_table = (Widget) data;
+
+ FontID = value;
+! switch (CheckForFontID(FontID)) {
+ case 0:
+ T1_LoadFont(FontID);
+ break;
+--- 320,326 ----
+ Widget font_table = (Widget) data;
+
+ FontID = value;
+! switch (T1_CheckForFontID(FontID)) {
+ case 0:
+ T1_LoadFont(FontID);
+ break;
diff --git a/math/grace/files/patch-ai b/math/grace/files/patch-ai
new file mode 100644
index 000000000000..8275b463a1fd
--- /dev/null
+++ b/math/grace/files/patch-ai
@@ -0,0 +1,17 @@
+*** cmath.h.org Thu Mar 27 13:57:30 2003
+--- cmath.h Thu Mar 27 13:59:41 2003
+***************
+*** 170,174 ****
+--- 170,181 ----
+ #endif
+
+ #ifndef HAVE_ISNAN_DECL
++ #ifdef __FreeBSD__
++ # include <sys/param.h>
++ # if __FreeBSD_version < 500100
++ extern int isnan ( double x );
++ # endif
++ #endif
++ #else
+ extern int isnan ( double x );
+ #endif