On Tuesday 29 May 2007 6:30 pm, Dan Nicholson wrote:
> On 5/29/07, Baho Utot <[EMAIL PROTECTED]> wrote:
> > On Monday 28 May 2007 6:54 pm, Ken Moffat wrote:
> > > On Mon, May 28, 2007 at 11:56:08PM +0200, Tijnema wrote:
> > > > Yes, it is listed at the libs, but the libs aren't a dependency of
> > > > Xorg Utilities or Xorg Protocol Headers. This should be changed in
> > > > the book, but it's stable, so errata?
> > >
> > >  The problem was in compiling libXfont, so I guess the OP was doing
> > > the libs.  Sometimes, people post information that can be
> > > misinterpreted, or even become confused about what they were trying
> > > to do.  I know I've certainly been in that situation myself.
> >
> > Yes it was indeed with the libraries as I was indeed mistaken.  Maybe
> > when compiling the libs the order is important.  I tried compiling
> > libXfont first and that is when the errors occured.  I will try compiling
> > all the others first and then libXfont last.
>
> The order is very important. It even says so in the note in the
> introduction.
>
> http://www.linuxfromscratch.org/blfs/view/svn/x/xorg7.html

Ok, Thanks.

I am using the script from the "Introduction to Xorg-7.1" page, with a little 
bit of modification.

#!/bin/sh
export XORG_PREFIX="/usr"
export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc \
    --mandir=$XORG_PREFIX/share/man --localstatedir=/var"
rm xorg-compile.log
for package in $(cat package.list)
do
  echo "Building: $package"
  packagedir=$(echo $package | sed 's/.tar.bz2//')
  tar -xf $package && 
  cd $packagedir && 
  ./configure $XORG_CONFIG && 
  make &&
  make install &&
  cd .. &&
  rm -rf $packagedir
  #rm -f $package
done 2>&1 | tee -a xorg-compile.log #log the entire loop

My package.list file was generated by ls > package.list so that is why things 
were built out of order.  I missed the note on the intro page about the 
dependencies :)  

I'll try ln -s lib-7.1.wget package.list, then I will expect better results!
Hope I am not disappointed. :)
-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to