search for: tcl_error

Displaying 3 results from an estimated 3 matches for "tcl_error".

Did you mean: ml_error
2011 Aug 14
2
Problem installing R Commander plugin...
...tcltkimg.c -o tcltkimg.o tcltkimg.c:2:16: error: tk.h: No such file or directory tcltkimg.c:103: error: expected specifier-qualifier-list before ?Tcl_Interp? tcltkimg.c:114: error: expected specifier-qualifier-list before ?Tk_Window? tcltkimg.c: In function ?GetRplotImage?: tcltkimg.c:164: error: ?TCL_ERROR? undeclared (first use in this function) tcltkimg.c:164: error: (Each undeclared identifier is reported only once tcltkimg.c:164: error: for each function it appears in.) tcltkimg.c:168: error: ?TCL_OK? undeclared (first use in this function) tcltkimg.c: In function ?CreateRplot?: tcltkimg.c:193: e...
2012 May 14
0
phyloclim could not be installed in linux - problems on tkrplot dependence
...tcltkimg.c -o tcltkimg.o tcltkimg.c:2:16: error: tk.h: No such file or directory tcltkimg.c:103: error: expected specifier-qualifier-list before ‘Tcl_Interp’ tcltkimg.c:114: error: expected specifier-qualifier-list before ‘Tk_Window’ tcltkimg.c: In function ‘GetRplotImage’: tcltkimg.c:164: error: ‘TCL_ERROR’ undeclared (first use in this function) tcltkimg.c:164: error: (Each undeclared identifier is reported only once tcltkimg.c:164: error: for each function it appears in.) tcltkimg.c:168: error: ‘TCL_OK’ undeclared (first use in this function) tcltkimg.c: In function ‘CreateRplot’: tcltkimg.c:193: e...
2018 Jul 01
2
[PATCH nbdkit] Add Tcl plugin, for writing plugins in Tcl.
..."script") != 0) { + nbdkit_error ("the first parameter must be script=/path/to/script.tcl"); + return -1; + } + script = value; + + assert (interp); + + /* Load the Tcl file. */ + r = Tcl_EvalFile (interp, script); + if (r != TCL_OK) { + if (r == TCL_ERROR) + nbdkit_error ("could not load Tcl script: %s: line %d: %s", + script, Tcl_GetErrorLine (interp), + Tcl_GetStringResult (interp)); + else + nbdkit_error ("could not load Tcl script: %s: %s", + sc...