Skip to content
Prev 145 / 919 Next

Failure to load X11 module in Fedora 13.

On 07/04/2010 02:30 PM, Carlo Tambuatco wrote:
So, I can't reproduce this at all on Fedora 13:
== i386 (KVM instance) ==
[spot at f13 ~]$ rpm -q R-core
R-core-2.11.1-1.fc13.i686

[spot at f13 ~]$ R

R version 2.11.1 (2010-05-31)
Copyright (C) 2010 The R Foundation for Statistical Computing
ISBN 3-900051-07-0

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

  Natural language support but running in an English locale

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
== x86_64 (my laptop) ==
[spot at pterodactyl ~]$ rpm -q R-core
R-core-2.11.1-1.fc13.x86_64
[spot at pterodactyl ~]$ R

R version 2.11.1 (2010-05-31)
Copyright (C) 2010 The R Foundation for Statistical Computing
ISBN 3-900051-07-0

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

  Natural language support but running in an English locale

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
I confirmed that FT_Select_size is a valid symbol in freetype (on both
arches):

[spot at f13 ~]$ eu-readelf -s /usr/lib/libfreetype.so.6 |grep FT_Select_Size
  223: 009b6930    128 FUNC    GLOBAL DEFAULT       11 FT_Select_Size

[spot at pterodactyl ~]$ eu-readelf -s /usr/lib64/libfreetype.so.6 |grep
FT_Select_Size
  224: 000000000000dc70    108 FUNC    GLOBAL DEFAULT       11
FT_Select_Size

Do you have any libraries in /usr/local/lib? Did you add any paths to
/etc/ld.so.conf ? I suspect you have an old copy of freetype floating
around somewhere. It looks like it is not uncommon for third party
applications (VMWare, VirtualBox) to shove an old freetype library onto
the system.

~spot