[R] Help installing R commander in Fedora 13...

Allan Engelhardt allane at cybaea.com
Thu Jul 1 07:57:56 CEST 2010


On 30/06/10 22:14, Carlo Tambuatco wrote:
> [...]
>
> Also, references to /usr/lib/libfontconfig.so.1, : undefined symbol:
> FT_Select_Size. No idea what this is or how to fix it. But it is the
> reason that R_X11.so is not being loaded. There's obviously something
> missing that I need to compile and install Rcmdr.
>    

A quick 'nm -D' and 'ldd' on my system shows that FT_Select_Size is 
provided by the freetype library

$ nm -D /usr/lib64/libfontconfig.so | grep FT_Select_Size
                  U FT_Select_Size
$ ldd /usr/lib64/libfontconfig.so
     linux-vdso.so.1 =>   (0x00007fffb8cf2000)
     libfreetype.so.6 =>  /usr/lib64/freetype-freeworld/libfreetype.so.6 (0x00007ff9fcb08000)
     libexpat.so.1 =>  /lib64/libexpat.so.1 (0x00007ff9fc8df000)
     libc.so.6 =>  /lib64/libc.so.6 (0x00007ff9fc566000)
     /lib64/ld-linux-x86-64.so.2 (0x00007ff9fd005000)
$ nm -D /usr/lib64/freetype-freeworld/libfreetype.so.6 | grep FT_Select_Size
000000000000dc80 T FT_Select_Size


Looks like your freetype library may be the problem: try verifying (rpm 
-Vv freetype) and you probably should make sure you have freetype-devel 
installed.

Hope this helps.  If not, try R-SIG-Fedora : 
https://stat.ethz.ch/mailman/listinfo/r-sig-fedora


Allan



More information about the R-help mailing list