Re: [R-pkg-devel] Any new developments on "apparent S3 method" issue?

2017-05-04 Thread Uwe Ligges
On 03.05.2017 18:39, Lenth, Russell V wrote: Package developers list: I recently added an 'as.mcmc.list' method for objects in one of my packages. Now, in doing an --as-cran check, I get this message: * checking S3 generic/method consistency ... NOTE Found the following apparent S3 methods e

Re: [R-pkg-devel] Any new developments on "apparent S3 method" issue?

2017-05-04 Thread Lenth, Russell V
OK thanks -- this gives me a new perspective. I see this result: > tools::nonS3methods("coda") [1] "as.mcmc.list" which indicates more about the mechanisms in place for this kind of situation. So now it seems that if package 'pkg_B' simply imports and exports a function 'looks.like.S3.m

[R-pkg-devel] Package building - compiling multiple dll files from within src directory

2017-05-04 Thread Mark
Hi, I am creating an R package with multiple c files within src directory. If possible, I would like to create separate dll files for each c file. Also I would like those dll files to have the same name as the input c files. i.e: mod01.c -o mod01.dll mod02.c -o mod02.dll mod03.c -o mod03.dll ..