wiki:Xorg7Libraries

Version 5 (modified by Sean, 16 years ago) ( diff )

libXfont buggy ...maybe

Xorg 7

Libraries

  • Automated Build Script
    bash -e
    for package in $(cat ../lib.wget)
    do
      packagedir=$(echo $package | sed 's/.tar.bz2//')
      tar -xf $package
      cd $packagedir
      ./configure $XORG_CONFIG
      make
      make install
      ldconfig
      cd ..
      rm -rf $packagedir
      rm -f $package
    done 2>&1 | tee -a ../xorg-compile.log
    

libAppleWM and libWindowsWM are dependent on applewmproto and windowswmproto, respectively. Also, the other library packages are dependent on one another and have to be installed in a certain order.

-- FYI I ran into a problem further along when installing fonts. I got a ton of lines like this:

t ncenBI08.bdf | gzip > ncenBI08.pcf.gz /bin/sh: t: command not found

Google got me to installing bdftopcf-1.0.1. But it wouldn't compile.

/usr/X11/lib/libXfont.so: undefined reference to `ft_isdigit'

More googling suggested you need libXfont-1.3.0.tar.bz2 The current wget list uses libXfont-1.2.8.tar.bz2

After going back and installing libXfont-1.3.0, bdftopcf-1.0.1 compiled fine, and then I was able to install all the fonts without any hassle. --

Up
Top

Note: See TracWiki for help on using the wiki.