On Thu, 2006-01-12 at 11:10 +0100, Luca Dionisi wrote: > I'm using this command to build xorg > ./build-from-tarballs.sh -n -m /usr/src/mesa/Mesa-6.4.1 /usr > > To make Mesalib I tried > make linux-dri-x86 > and > make linux > but none works.
How important is DRI to you? I should note that being an nVidia user,
I'm not actually concerned about DRI, since the nVidia drivers don't use
it. All I need is the general OpenGL support.
In any case, for Mesa, my commands are fairly simple:
make DESTDIR=/usr linux-x86
make DESTDIR=/usr install
And for xserver (assuming the other prereqs are met):
./configure \
--prefix=/usr \
--enable-composite \
--enable-xevie \
--disable-dri \
--with-mesa-source=$MESA_BUILD_DIR \
--disable-xprint
make
make install
Note that $MESA_BUILD_DIR points to wherever the source tree from the
Mesa install is unpacked to.
I'm not sure how necessary all the settings above are - in particular,
the --disable-dri option might not be needed. I had it there from when I
was playing with the release candidates, in which GL support was
somewhat broken. In any case, those commands work for me.
Simon.
signature.asc
Description: This is a digitally signed message part
-- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
