Force-disable Xlib in cairo builds

On some host environments, this can incorrectly be detected as available
during a cross build, so let's force-disable it.
This commit is contained in:
Kevin Lange 2013-07-21 18:22:35 -07:00
parent caf16396c1
commit 2f8a38b062
2 changed files with 2 additions and 2 deletions

@ -86,7 +86,7 @@ pushd build
mkdir cairo-native
fi
pushd cairo-native
$DIR/tarballs/cairo-1.12.2/configure --host=$TARGET --prefix=$VIRTPREFIX --enable-ps=no --enable-pdf=no --enable-interpreter=no || bail
$DIR/tarballs/cairo-1.12.2/configure --host=$TARGET --prefix=$VIRTPREFIX --enable-ps=no --enable-pdf=no --enable-interpreter=no --enable-xlib=no || bail
cp $DIR/patches/cairo-Makefile test/Makefile
cp $DIR/patches/cairo-Makefile perf/Makefile
echo -e "\n\n#define CAIRO_NO_MUTEX 1" >> config.h

@ -102,7 +102,7 @@ pushd build
mkdir cairo
fi
pushd cairo
$DIR/tarballs/cairo-1.12.2/configure --host=$TARGET --prefix=$PREFIX/$TARGET --enable-ps=no --enable-pdf=no --enable-interpreter=no || bail
$DIR/tarballs/cairo-1.12.2/configure --host=$TARGET --prefix=$PREFIX/$TARGET --enable-ps=no --enable-pdf=no --enable-interpreter=no --enable-xlib=no || bail
cp $DIR/patches/cairo-Makefile test/Makefile
cp $DIR/patches/cairo-Makefile perf/Makefile
echo -e "\n\n#define CAIRO_NO_MUTEX 1" >> config.h