1### @configure_input@
2###
3### ${R_HOME}/etc/Renviron
4###
5### Record R system environment variables.
6
7## As from R 4.0.0 the C code reading this follows the POSIX rules
8## for parameter substitution in shells, section 2.6.2 of
9## https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18
10## In earlier versions ${FOO-bar} was interpreted the same as ${FOO:-bar}
11
12R_PLATFORM=${R_PLATFORM-'@R_PLATFORM@'}
13## Default printer paper size: first record if user set R_PAPERSIZE
14R_PAPERSIZE_USER=${R_PAPERSIZE}
15R_PAPERSIZE=${R_PAPERSIZE-'@R_PAPERSIZE@'}
16## Default print command
17R_PRINTCMD=${R_PRINTCMD-'@R_PRINTCMD@'}
18# for Rd2pdf, reference manual
19R_RD4PDF=${R_RD4PDF-'@R_RD4PDF@'}
20## used for options("texi2dvi")
21R_TEXI2DVICMD=${R_TEXI2DVICMD-${TEXI2DVI-'@TEXI2DVICMD@'}}
22## used by untar(support_old_tars = TRUE) and installing grDevices
23R_GZIPCMD=${R_GZIPCMD-'@R_GZIPCMD@'}
24## Default zip/unzip commands
25R_UNZIPCMD=${R_UNZIPCMD-'@R_UNZIPCMD@'}
26R_ZIPCMD=${R_ZIPCMD-'@R_ZIPCMD@'}
27R_BZIPCMD=${R_BZIPCMD-'@R_BZIPCMD@'}
28## Default browser
29R_BROWSER=${R_BROWSER-'@R_BROWSER@'}
30## Default editor
31EDITOR=${EDITOR-${VISUAL-vi}}
32## Default pager
33PAGER=${PAGER-'@PAGER@'}
34## Default PDF viewer
35R_PDFVIEWER=${R_PDFVIEWER-'@R_PDFVIEWER@'}
36## Used by libtool
37LN_S='@LN_S@'
38MAKE=${MAKE-'@MAKE@'}
39## Prefer a POSIX-compliant sed on e.g. Solaris
40SED=${SED-'@SED@'}
41## Prefer a tar that can automagically read compressed archives
42TAR=${TAR-'@TAR@'}
43
44## System and compiler types.
45R_SYSTEM_ABI='@R_SYSTEM_ABI@'
46
47## Strip shared objects and static libraries.
48R_STRIP_SHARED_LIB=${R_STRIP_SHARED_LIB-'@STRIP_SHARED_LIB@'}
49R_STRIP_STATIC_LIB=${R_STRIP_STATIC_LIB-'@STRIP_STATIC_LIB@'}
50
51@BUILD_AQUA_FALSE@R_LIBS_USER=${R_LIBS_USER-'~/R/@R_PLATFORM@-library/@MAJ_MIN_VERSION@'}
52@BUILD_AQUA_TRUE@R_LIBS_USER=${R_LIBS_USER-'~/Library/R/@MAC_CPU@/@MAJ_MIN_VERSION@/library'}
53
54### Local Variables: ***
55### mode: sh ***
56### sh-indentation: 2 ***
57### End: ***
58