mirror of
git://slackware.nl/current.git
synced 2025-01-18 22:27:20 +01:00
20 lines
539 B
Text
20 lines
539 B
Text
|
xserver_source="/tmp/x11-build/xorg-server-1.6.2"
|
||
|
|
||
|
if [ ! -d "$xserver_source" ]; then
|
||
|
echo "$xserver_source does not exist, and you need it."
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
CFLAGS="$SLKCFLAGS -I${xserver_source}/hw/xfree86/ramdac" \
|
||
|
CXXFLAGS="$SLKCFLAGS -I${xserver_source}/hw/xfree86/ramdac" \
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
||
|
--sysconfdir=/etc \
|
||
|
--localstatedir=/var \
|
||
|
--infodir=/usr/info \
|
||
|
--mandir=/usr/man \
|
||
|
--disable-static \
|
||
|
--with-xserver-source=${xserver_source} \
|
||
|
--build=$ARCH-slackware-linux
|