Displaying 1 result from an estimated 1 matches for "want_aqua".
2003 Nov 30
2
R as OS X Framework
...that's not
really safe if more R versions are installed).
The second issue is a rather minor one which will be solved if RAqua
uses the framework. If you used --enable-aqua then configure overrides
the dylib location, which is bad for our framework:
configure.ac @ 1050:
if test "x${want_aqua}" = xyes; then
LIBR_LDFLAGS="-dynamiclib -install_name
/Applications/StartR.app/RAqua.app/Contents/Frameworks/libR.dylib"
else
LIBR_LDFLAGS="-dynamiclib -install_name
\$(Rexeclibdir)/libR.dylib"
fi
You'll need to remove the aqua part of it, oth...