Displaying 20 results from an estimated 3000 matches similar to: "R-devel Mac OSX build wierdness..."
2002 Jun 19
1
Anon CVS updates?
Is the anonymous CVS repository for R presently broken? There haven't been
many updates coming through and the repository files seem to differ
significantly from the rsync version of R-devel...
Byron Ellis (bellis@hsph.harvard.edu)
"Oook" - The Librarian
Please finger bellis@hsph.harvard.edu for PGP keys
2002 May 17
1
PCRE in development code?
So PCRE dropped into R-devel recently, I tried just dropping 3.9 (latest
version) into src/extra/pcre and compiling on Win32 but its dying during
the final link (undefined reference to 'pcre_free') is there some special
magic I'm missing or do I get to hunt this one down on my own?
Byron Ellis (bellis@hsph.harvard.edu)
"Oook" - The Librarian
Please finger
2003 Sep 14
2
Problem building methods package?
For the last, I dunno, week or so I've been unable to build R... I
finally took the time to investigate and the crash is in building
'methods':
all.R is unchanged
../../../library/methods/man/methods.Rd is unchanged
make[2]: `Makedeps' is up to date.
../../../../library/methods/libs/methods.so is unchanged
make[1]: Nothing to be done for `Rfiles'.
Any clues to where this
2001 May 13
1
Dynamic C Symbols and Embedding Suggestion
Hello, I've been playing around w/ the new dynamic C symbol stuff (thank
you for doing that!) in the, um, 5/11/01 R-devel package and, unless I've
missed something incredibly obvious, there doesn't appear to be a
mechanism for registering functions of an embedding executable. It seems
like this would be a Good Thing to have.
Since I'm doing most of my work in Windows at the
2001 Apr 29
4
Rgui crash (PR#926)
Full_Name: Byron Ellis
Version: 1.2.3
OS: Windows 2000 Server
Submission from: (NULL) (140.247.105.95)
In Rgui when attempting to resize the console the system locks for a second
(cursor locks up, etc) and then either returns to normal for a second before
crashing or just crashes when we start moving again (the former happens more
often when making things bigger, the latter when the console is
2001 Apr 07
2
silent extern error (PR#898)
Full_Name: Byron Ellis
Version: 1.2.2
OS: all
Submission from: (NULL) (140.247.105.95)
R_ext/Arith.h
#ifdef MAIN
#define extern
#endif
#ifdef __cplusplus
extern "C" {
#endif
these two should be reversed. Its never a problem because builds aren't done
against C++ compilers, but its still an error (just a low priority one).
also, you could change that to
#ifdef __cplusplus
extern
2002 Sep 24
1
Wierdness using Samba PDC with WinXP-Pro and Win2K-Pro clients
Hi All-
Please tell me if I'm posting to the wrong list. I looked for the list called
samba-ntdom (listed at http://us1.samba.org/samba/archives.html) because it
seemed a more appropriate forum, but it looks like that list has been
dissolved. Has the discussion for that list moved to some other list?
Anyway, here's the problem that I'm hoping someone can help me with:
I have
2015 Apr 08
10
Build-system cleanups
Hi everyone
Following are a number of build-system cleanup patches. Some of them are
prep-work for a possible upcoming automake/gnulib introduction.
Best regards,
Tiziano
2004 Jan 16
1
feature request: multi-language support
Could it be possible for packages to have manuals in multiple
languages?
I'm not saying all manuals should be in multiple languages, but
I think there should be a mechanism for package writers to add
manuals in multiple languages, if they think it useful.
--
Peter Kleiweg
2001 Dec 03
1
more inter-subnet browsing wierdness
We are seeing some strange inter-subnet browsing issues here, our setup is
as follows:
.129 subnet
[ samba box ]
|
|
[ router ]
^
_.1 subnet _/ \_ .9 subnet_
The .129 subnet contains only the samba server configured to the letter from
the browsing.txt file. The .1 subnet conists of win98 and winME boxes all
configured from DHCP to use the samba box for WINS lookups.
2002 Mar 14
4
KDE frontend (PR#1384)
Full_Name: Egon Willighagen
Version: 1.4.x
OS: Linux/Solaris
Submission from: (NULL) (131.174.179.30)
I would like to have an gui for KDE (like gnome).
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the
2007 Nov 01
3
Curry: proposed new functional programming, er, function.
Hi all (especially R-core) I suppose,
With the introduction of the new functional programming functions into
base I thought I'd ask for a Curry() function. I use a simple one that
looks this:
Curry = function(FUN,...) { .orig = list(...);function(...)
do.call(FUN,c(.orig,list(...))) }
This comes in really handy when using say, heatmap():
2005 Dec 23
2
cairo anyone?
Has anyone taken a shot at a Cairo graphics device yet? I half
expected to see one on either Paul's pages or Omegahat. :-)
---
Byron Ellis (ellis at stat.harvard.edu)
"Oook" -- The Librarian
2004 Aug 18
3
R as shared library
Hello folks,
I'm embarking on a project to embed R into the Apache web server, and
I'd like your help. Currently, I'm looking for a way for R code to call
back into a shared library from which the R shared library was loaded.
Essentially, apache starts and loads mod_R.so which runs an
initialization routine which calls Rf_initEmbeddedR() and the following
code:
/* override to
2004 Mar 22
3
Distributed computing
Dear all,
does anyone know if there exists an effort to bring some kind of
distributed computing to R? The most simple functionality I'm after is
to be able to explicitly perform a task on a computing server. Sorry if
this is a non-informed newbie question...
Best regards
Anders Sj?gren
PhD Student
Dept. of Mathematical Statistics
Chalmers University of Technology
Gothenburg, Sweden
2002 Jan 02
2
Help for installation (PR#1233)
Dear r-bugs,
I down loaded the R-1.4.0.tgz
But cannot unzip or install. I would be grateful if you
could give some help.
My system is Microsoft windows.
Best regards,
Sohan
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or
2007 Aug 16
1
methods and try()
Hi all, I'm having a problem with some sort of interaction with try()
and methods, I think.
The setup is as follows, I have an S4 class that holds an environment
and I would like to evaluate the right hand side of a function inside
that environment. No problem there.
However, if the formula involves a symbol that doesn't exist, which
may or may not happen, it fails as it should and
2005 Mar 25
1
S4 methods semantics questions
Some quick questions about S4 methods.
Does the typing of S4 methods mean that lazy evaluation is no longer
possible? It seems that you would need to evaluate the arguments to
determine their type at dispatch.
Second, what role, if any, do default arguments play in S4 methods? I
notice that you can put default arguments into generics but that the
dispatch is still done on the type of the
2009 Sep 11
2
[PATCH] Add echo_daemon command
echo_daemon is a simple echo which can be used to test connectivity between the
client and daemon.
---
daemon/Makefile.am | 1 +
daemon/echo_daemon.c | 66 +++++++++++++++++++++++++++++++++++++++++++++++++
daemon/m4/stddef_h.m4 | 45 +++++++++++++++++++++++++++++++++
po/POTFILES.in | 1 +
src/MAX_PROC_NR | 2 +-
src/generator.ml | 7 +++++
6 files changed,
2001 Dec 21
2
"at 0x78003b44 referenced memory at 0x00000000" (PR#1225)
Full_Name: John Abraham
Version: rw1031
OS: Windows 2000 Professional
Submission from: (NULL) (136.159.125.21)
A friend introduced me to "R", and it seems just what I need -- a good
statistical package with an open source
flavour so that, if it doesn't do what I need it to do, I can extend it.
I installed the latest windows binary, and when I try to run it I get a window