Displaying 10 results from an estimated 10 matches for "r_inputhandlers".
2004 Jun 25
4
rgl installation problems
...GL -lGLU -lpng
/usr/lib/gcc-lib/i386-redhat-linux/3.2.2/../../../crt1.o(.text+0x18): In
functio
n `_start':
../sysdeps/i386/elf/start.S:77: undefined reference to `main'
x11lib.o(.text+0x84): In function `set_R_handler':
/tmp/R.INSTALL.8663/rgl/src/x11gui.h:33: undefined reference to
`R_InputHandlers
'
x11lib.o(.text+0x92):/tmp/R.INSTALL.8663/rgl/src/x11gui.h:33: undefined
referenc
e to `addInputHandler'
x11lib.o(.text+0xfb): In function `unset_R_handler':
/tmp/R.INSTALL.8663/rgl/src/x11lib.cpp:52: undefined reference to
`R_InputHandle
rs'
x11lib.o(.text+0x103):/tmp/R.INSTALL....
2004 Aug 08
2
R packages install problems linux - X not found (WhiteBoxEL 3)
...-lGL -lGLU -lpng
> /usr/lib/gcc-lib/i386-redhat-linux/3.2.3/../../../crt1.o(.text+0x18): In
> function `_start':
> : undefined reference to `main'
> x11lib.o(.text+0x84): In function `set_R_handler':
> /tmp/R.INSTALL.13414/rgl/src/x11gui.h:33: undefined reference to
> `R_InputHandlers'
> x11lib.o(.text+0x92):/tmp/R.INSTALL.13414/rgl/src/x11gui.h:33: undefined
> reference to `addInputHandler'
> x11lib.o(.text+0xfb): In function `unset_R_handler':
> /tmp/R.INSTALL.13414/rgl/src/x11lib.cpp:52: undefined reference to
> `R_InputHandlers'
> x11lib.o(....
2004 Aug 08
0
FW: R packages install problems linux - X not found (WhiteBoxEL 3)
...usr/lib -lstdc++ -lX11 -lXext -lGL -lGLU -lpng
/usr/lib/gcc-lib/i386-redhat-linux/3.2.3/../../../crt1.o(.text+0x18): In
function `_start':
: undefined reference to `main'
x11lib.o(.text+0x84): In function `set_R_handler':
/tmp/R.INSTALL.13414/rgl/src/x11gui.h:33: undefined reference to
`R_InputHandlers'
x11lib.o(.text+0x92):/tmp/R.INSTALL.13414/rgl/src/x11gui.h:33: undefined
reference to `addInputHandler'
x11lib.o(.text+0xfb): In function `unset_R_handler':
/tmp/R.INSTALL.13414/rgl/src/x11lib.cpp:52: undefined reference to
`R_InputHandlers'
x11lib.o(.text+0x103):/tmp/R.INSTALL.134...
2004 Aug 24
0
rgl installation problems
...t;> >packages in R (R-1.9.1) without problems, but when I try to install rgl
>> >(rgl_0.64-13.tar.gz). I get the following, and the package does not install.
>> >Any help would be greatly appreciated. I'm running R in redhat 9.
>>
>> The missing reference R_InputHandlers is declared in the
>> $RHOME/src/include/R_ext/eventloop.h file, and I believe is compiled
>> into the library R_X11 (with some extension). You don't seem to have
>> that in the list of libraries:
>>
>> >g++ -L/usr/local/lib -o rgl.so x11lib.o x11gui.o type...
2003 Oct 30
1
RAqua and AquaTclTk
While playing around with panther I discovered (with surprise) that
tcltk seems to work (even if not smoothly) with RAqua without first
calling tkStartGUI.
I switched back to 10.2.6 and it works as well.
I think this is due to the "last minute" fix in RAqua now using idle
timers because of too much cpu usage.
Some "mouse" trick is needed though. If you want to test it you
2005 Apr 20
3
Embedded R and x11
Hi,
I'm working on a frontend for R. I have R running in a separate thread in my
application using Rf_initEmbeddedR, and I'm using R_tryEval to run commands
in R (i.e. I don't run the mainloop).
Everything works fine, except the x11-device: I can open x11-windows and paint
to them alright from R. However, the x11-window does not respond to any
events. E.g. clicking the
2006 Apr 01
1
Sys.sleep() burns up CPU on Solaris 8
...c
--- src/unix/sys-std.c@@/main/3 Thu Jan 12 11:39:55 2006
+++ src/unix/sys-std.c Fri Mar 31 23:12:16 2006
@@ -294,13 +294,13 @@
else onintr();
}
- tv.tv_sec = 0;
- tv.tv_usec = usec;
+ tv.tv_sec = usec/1000000;
+ tv.tv_usec = usec % 1000000;
maxfd = setSelectMask(R_InputHandlers, &readMask);
if (ignore_stdin)
FD_CLR(fileno(stdin), &readMask);
if (R_SelectEx(maxfd+1, &readMask, NULL, NULL,
- (usec >= 0) ? &tv : NULL, intr))
+ (usec >= 0) ? &tv : NULL, intr) > 0)
return(&readMas...
2010 Jul 21
1
Plot window does not update in embedded code
Dear list,
I am trying to embed R into a C++ program. After some tinkering,
reading the documentation and browsing the source code I have this
more or less working. A very very condensed and very simplified
version of the code is included below.
The program can create plots. However, after the plot is initially
drawn it is no longer updated. When scaling or updating the plot the
window becomes
2004 Mar 13
0
64bit build on IBM
...nterrupts_pending
ld: 0711-317 ERROR: Undefined symbol: .Rf_onintr
ld: 0711-317 ERROR: Undefined symbol: .R_alloc
ld: 0711-317 ERROR: Undefined symbol: .Rf_findVar
ld: 0711-317 ERROR: Undefined symbol: .Rf_elt
ld: 0711-317 ERROR: Undefined symbol: .Rf_GetDevice
ld: 0711-317 ERROR: Undefined symbol: R_InputHandlers
ld: 0711-317 ERROR: Undefined symbol: .getInputHandler
ld: 0711-317 ERROR: Undefined symbol: .removeInputHandler
ld: 0711-317 ERROR: Undefined symbol: .Rf_devNumber
ld: 0711-317 ERROR: Undefined symbol: .Rf_KillDevice
ld: 0711-317 ERROR: Undefined symbol: .GEplayDisplayList
ld: 0711-317 ERROR: Unde...
2002 Jul 11
1
dyn.load tcl/tk (PR#1774)
..._nthcdr
Rf_PrintDefaults
Rf_protect
Rf_unprotect
SET_STRING_ELT
SET_TAG
SETCAR
SETCDR
Rf_begincontext
Rf_endcontext
Rf_str2type
Rf_errorcall
Rf_EncodeElement
vmaxget
vmaxset
R_alloc
Rprintf
Rf_elt
Rf_findVar
Rf_GetDevice
devNumber
GEplayDisplayList
addInputHandler
getInputHandler
removeInputHandler
R_InputHandlers
Rf_KillDevice
R_setX11Routines
gmake[5]: Entering directory `/soft/R/R-1.5.1/src/modules/X11'
mkdir -p -- /soft/R/R-1.5.1/modules
gmake[5]: Leaving directory `/soft/R/R-1.5.1/src/modules/X11'
gmake[4]: Leaving directory `/soft/R/R-1.5.1/src/modules/X11'
gmake[3]: Leaving directory `/sof...