6

我正在通过 Vulcan 从 Heroku 上的源代码构建 R,并尝试调试缺少 png() 支持。根据以下输出,我认为问题与发现 libXmu 或等效项有关。如何向编译器传递一个文件夹以查找 libXmu?(我可以卷曲一个就好了)。

checking X11/Intrinsic.h usability... yes
checking X11/Intrinsic.h presence... yes
checking for X11/Intrinsic.h... yes
checking for XtToolkitInitialize in -lXt... yes
using X11 ... yes
checking for KeySym... yes
checking X11/Xmu/Atoms.h usability... no
checking X11/Xmu/Atoms.h presence... no
checking for X11/Xmu/Atoms.h... no

功能显示缺少 png 和 x11:

> capabilities()
    jpeg      png     tiff    tcltk      X11     aqua http/ftp  sockets 
   FALSE    FALSE    FALSE    FALSE    FALSE    FALSE     TRUE     TRUE 
  libxml     fifo   cledit    iconv      NLS  profmem    cairo 
    TRUE     TRUE     TRUE     TRUE     TRUE    FALSE    FALSE 

我的厨房水槽拨打电话:

./configure --prefix=$prefix --enable-R-shlib --with-x --with-libpng --with-jpeglib && make && make install
4

1 回答 1

2

确保您已安装X11cairo支持,我遇到了同样的问题并通过安装X11, Xt, Xmu库和安装来修复cairo

你可以参考

http://r.789695.n4.nabble.com/How-to-get-R-to-compile-with-PNG-support-td3457938.html

于 2013-05-27T04:30:23.867 回答