forked from AuroraMiddleware/gtk
98b4428543
Enabling one backend (Broadway, in commit 1882ff9b
) implicitly disabled
all the others, which was probably not intentional. Bring the Autotools
build into line with Meson.
Signed-off-by: Simon McVittie <smcv@debian.org>
24 lines
520 B
Bash
Executable File
24 lines
520 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
mkdir -p _ccache
|
|
export CCACHE_BASEDIR="$(pwd)"
|
|
export CCACHE_DIR="${CCACHE_BASEDIR}/_ccache"
|
|
|
|
mkdir _build
|
|
cd _build
|
|
../autogen.sh \
|
|
--enable-cloudproviders \
|
|
--enable-broadway-backend \
|
|
--enable-wayland-backend \
|
|
--enable-x11-backend \
|
|
--enable-xinerama \
|
|
--enable-gtk-doc
|
|
make -j8
|
|
|
|
if [ -n "${DO_DISTCHECK-}" ]; then
|
|
make -j8 check SKIP_GDKTARGET="echo Not actually running tests for now"
|
|
make -j8 distcheck SKIP_GDKTARGET="echo Not actually running tests for now"
|
|
fi
|