summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyle K <kylek389@gmail.com>2011-02-04 20:14:46 -0600
committerKamil Kaminski <kamilkss@gmail.com>2011-02-04 20:14:46 -0600
commitc41a653209858546cdb8ca0feb9f8b85971ac1e1 (patch)
tree5508509a21e8d80135675ac1796397b6a2c6df9c
parent58de8cf17972a9f0bd97c41b761c9e16dedea527 (diff)
downloadX.org-script-c41a653209858546cdb8ca0feb9f8b85971ac1e1.tar.gz
X.org-script-c41a653209858546cdb8ca0feb9f8b85971ac1e1.tar.bz2
X.org-script-c41a653209858546cdb8ca0feb9f8b85971ac1e1.zip
fix a typo, add makedepend
-rwxr-xr-xxorg8
1 files changed, 6 insertions, 2 deletions
diff --git a/xorg b/xorg
index 5559dde..462213a 100755
--- a/xorg
+++ b/xorg
@@ -19,11 +19,14 @@ export CXXFLAGS="-march=native -mtune=native -O2 -fomit-frame-pointer"
export ACLOCAL="aclocal -I /opt/gfx-test/share/aclocal"
export PKG_CONFIG_PATH="/opt/gfx-test/lib/pkgconfig:/opt/gfx-test/share/pkgconfig"
export PREFIX="/opt/gfx-test"
+
+PATH=$PATH:$PREFIX/bin
MAKE="make -j2"
# list of repositories
REPOS="\
-git://anongit.freedesktop.org/git/mesa/cairo \
+git://anongit.freedesktop.org/git/xorg/util/makedepend \
+git://anongit.freedesktop.org/git/cairo \
git://anongit.freedesktop.org/git/mesa/drm \
git://anongit.freedesktop.org/git/mesa/mesa \
git://anongit.freedesktop.org/git/nouveau/xf86-video-nouveau \
@@ -84,6 +87,7 @@ git://anongit.freedesktop.org/git/mesa/demos"
# list of modules that will get compiled generically, without any extra flags
modules="\
+makedepend \
bigreqsproto \
compositeproto \
damageproto \
@@ -261,7 +265,7 @@ build()
./autogen.sh --prefix=$PREFIX --with-dri-driverdir=$PREFIX/lib/dri \
--enable-glx-tls --enable-xcb --enable-gles2 \
--with-dri-drivers=swrast,nouveau --enable-gallium-nouveau \
- --disable-gallium-intel --disable-gallium-radeon \
+ --disable-gallium-radeon \
--disable-gallium-svga #--disable-asm --enable-debug
if [ $? -ne 0 ]; then
echo "failed to configure Mesa."