Hello,
The issue with CharacterVector is that the proxy classes :
"string_name_proxy" and "string_proxy" only have implicit conversion to
SEXP and char* :
operator char* (){
return get() ;
}
operator SEXP(){
return ::Rf_mkString(get()) ;
}
i.e. they don't have implicit
This is a FAQ. 5.4 of
http://cran.r-project.org/bin/macosx/RMacOSX-FAQ.html#How-to-install-packages
You need to manually install the library for each arch when there is a
configure file. This is an R problem, not an OSX problem.
Romain
Le 20/03/10 04:09, Dirk Eddelbuettel a écrit :
> Davor,
>