search for: 51c51

Displaying 4 results from an estimated 4 matches for "51c51".

Did you mean: 5151
2006 May 12
1
X11 and vfonts modules on AIX 5.2
...he symbol was not found. Error in text.default(4, 2, "\\#J2438\\#J2421\\#J2451\\#J2473", vfont = Vf) : Hershey fonts cannot be loaded A diff on the R-2.0.1 and R-2.2.1 vfonts module makefiles, diff ~/src/R-2.0.1/src/modules/vfonts/Makefile ~/src/R-2.2.1/src/modules/vfonts/Makefile 51c51 < $(SHLIB_LINK) -o $@ $(vfonts_la_LDFLAGS) $(vfonts_la_OBJECTS) $(vfonts_la_LIBADD) $(LIBS) --- > $(SHLIB_LINK) -o $@ $(vfonts_la_LDFLAGS) $(vfonts_la_OBJECTS) $(vfonts_la_LIBADD) ... I added $(LIBS) at the end of the R-2.2.1 vfonts makefile, and the above error went away the...
1997 Jun 16
0
R-alpha: image(): minor bug in R code and helpfile (fixes)
...g(y) && missing(z) && is.matrix(x)) { < z <- x < x <- seq(0,1,len=nrow(z)) < y <- seq(0,1,len=ncol(z)) < } Second, the examples in the help file don't actually work(!) without the following changes: 51c51 < image(z=volcano, x, y, --- > image(volcano, x, y, 53c53 < contour(z=volcano, x, y, levels=seq(90, 200, by=5), --- > contour(volcano, x, y, zc=seq(90, 200, by=5), (By the way, there is currently no help for contour().) A more general question: what are the ethics/legalities of a...
2006 Apr 30
0
[LLVMdev] Building LLVM under Mingw. Part I: tools-only
BTW: I've also had to make this change when building tools. (I'm building right now and noticed that it doesn't come up anymore, maybe someone checked it in in the last week or so) On Sat, 29 Apr 2006, Anton Korobeynikov wrote: > Hello, Jeff. > > You wrote Saturday, April 29, 2006, 10:45:02 PM: > > JC> Yes, I know mingw doesn't support dbghelp. I can still rant
2006 Apr 29
2
[LLVMdev] Building LLVM under Mingw. Part I: tools-only
Hello, Jeff. You wrote Saturday, April 29, 2006, 10:45:02 PM: JC> Yes, I know mingw doesn't support dbghelp. I can still rant about it :) ;) Well. Maybe this library will be included in some next versions of mingw's win32api package. Anyway, we can make such library just "on-fly" from the corresponding .dll. JC> This is what's already there. What changed? Maybe