o) Grrr forgotten to add the additional patchfiles

This commit is contained in:
Lars Koeller 2003-03-27 13:19:24 +00:00
parent 0d128c9d5f
commit a502bdd6ab
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=77531
3 changed files with 55 additions and 0 deletions

19
math/grace/files/patch-ag Normal file
View File

@ -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);
}

19
math/grace/files/patch-ah Normal file
View File

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

17
math/grace/files/patch-ai Normal file
View File

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