spice-gtk/autogen.sh
Marc-André Lureau 6195151f94 build-sys: modernize gettext
intltool and glib-gettext are somehow related, and upstream gettext
should now support everything needed for GNOME projects.

intltool support never really worked, and we removed some of its
commented usage a while ago when dropping spicy desktop/mime.

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
2017-07-12 17:25:37 +02:00

21 lines
424 B
Bash
Executable File

#!/bin/sh
set -e # exit on errors
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
(
cd "$srcdir"
git submodule update --init --recursive
gtkdocize
autoreconf -v --force --install
)
CONFIGURE_ARGS="--enable-maintainer-mode --enable-gtk-doc --with-gtk=3.0 --enable-vala"
if [ -z "$NOCONFIGURE" ]; then
echo "Running configure with $CONFIGURE_ARGS $@"
"$srcdir/configure" $CONFIGURE_ARGS "$@"
fi