diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2003-12-09 02:22:27 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2003-12-09 02:22:27 +0000 |
commit | f6ffc475db4b318936097fd155aa0c542b4a30a9 (patch) | |
tree | e5ba1c3037b3a44f66fb84eade80c7da72c4dad6 /math/scilab/files | |
parent | 5ed6c8fe600af2880384830bd2a1819cd95ef1a0 (diff) | |
download | ports-f6ffc475db4b318936097fd155aa0c542b4a30a9.tar.gz ports-f6ffc475db4b318936097fd155aa0c542b4a30a9.zip |
Notes
Diffstat (limited to 'math/scilab/files')
-rw-r--r-- | math/scilab/files/patch-bb | 2 | ||||
-rw-r--r-- | math/scilab/files/patch-bc | 11 | ||||
-rw-r--r-- | math/scilab/files/patch-bd | 11 | ||||
-rw-r--r-- | math/scilab/files/patch-be | 18 | ||||
-rw-r--r-- | math/scilab/files/patch-bf | 12 |
5 files changed, 53 insertions, 1 deletions
diff --git a/math/scilab/files/patch-bb b/math/scilab/files/patch-bb index 20335daa69db..2594f6c04c29 100644 --- a/math/scilab/files/patch-bb +++ b/math/scilab/files/patch-bb @@ -5,7 +5,7 @@ if TK_GetVar("isscipadinterp")=='0' then TK_EvalStr("interp create scipad") - TK_EvalStr("load {libtk8.3.so} Tk scipad") -+ TK_EvalStr("load {libtk83.so} Tk scipad") ++ TK_EvalStr("load {libtk84.so} Tk scipad") TK_EvalStr("scipad eval {wm withdraw .}") TK_EvalStr("scipad alias ScilabEval ScilabEval") end diff --git a/math/scilab/files/patch-bc b/math/scilab/files/patch-bc new file mode 100644 index 000000000000..41c5fec836e4 --- /dev/null +++ b/math/scilab/files/patch-bc @@ -0,0 +1,11 @@ +--- Makefile.incl.orig Sun Oct 19 19:20:40 2003 ++++ Makefile.incl Sun Oct 19 19:20:51 2003 +@@ -75,7 +75,7 @@ + ##################### + TK_INC_PATH = -I/usr/include + TCL_INC_PATH = -I/usr/include +-TCLTK_LIBS = -L/usr/lib -ltk8.3 -L/usr/lib -ltcl8.3 -ldl ++TCLTK_LIBS = -L/usr/lib -ltk8.4 -L/usr/lib -ltcl8.4 -ldl + + ##################### + # for WIN32 version diff --git a/math/scilab/files/patch-bd b/math/scilab/files/patch-bd new file mode 100644 index 000000000000..81508b35956c --- /dev/null +++ b/math/scilab/files/patch-bd @@ -0,0 +1,11 @@ +--- examples/callsci/callsciC++/config/Makefile.incl.orig Sun Oct 19 19:25:21 2003 ++++ examples/callsci/callsciC++/config/Makefile.incl Sun Oct 19 19:25:33 2003 +@@ -75,7 +75,7 @@ + ##################### + TK_INC_PATH = -I/usr/include + TCL_INC_PATH = -I/usr/include +-TCLTK_LIBS = -L/usr/lib -ltk8.3 -L/usr/lib -ltcl8.3 -ldl ++TCLTK_LIBS = -L/usr/lib -ltk8.4 -L/usr/lib -ltcl8.4 -ldl + + ##################### + # for WIN32 version diff --git a/math/scilab/files/patch-be b/math/scilab/files/patch-be new file mode 100644 index 000000000000..bca9365cd5e7 --- /dev/null +++ b/math/scilab/files/patch-be @@ -0,0 +1,18 @@ +--- routines/graphics/Math.h.orig Sun Nov 23 20:22:11 2003 ++++ routines/graphics/Math.h Sun Nov 23 20:22:10 2003 +@@ -88,11 +88,15 @@ + #if defined(THINK_C)|| defined(WIN32) + #define M_PI 3.14159265358979323846 + #else ++#if defined(HAVE_LIMITS_H) ++#include <limits.h> ++#else + #if defined(HAVE_VALUES_H) + #include <values.h> + #else + #ifndef M_PI + #define M_PI 3.14159265358979323846 ++#endif + #endif + #endif + #endif diff --git a/math/scilab/files/patch-bf b/math/scilab/files/patch-bf new file mode 100644 index 000000000000..435f7e778621 --- /dev/null +++ b/math/scilab/files/patch-bf @@ -0,0 +1,12 @@ +--- macros/util/help.sci.orig Sun Nov 23 21:13:37 2003 ++++ macros/util/help.sci Sun Nov 23 21:11:24 2003 +@@ -184,7 +184,8 @@ + if MSDOS then + tcltk_help(path,key); + else +- unix(SCI+'/tcl/browsehelpexe ' +path+ '&'); ++ tcltk_help(path,key); ++// unix(SCI+'/tcl/browsehelpexe ' +path+ '&'); + end + else + write(%io(2),mgetl(path)) |