core-deps-latest: Pull gtkmm-3 from the gtkmm-3-24 branch
[jhbuild.git] / configure.ac
blob78a76cf50170e7091d29062bdfaa762c66b7c4f8
1 AC_INIT([jhbuild],
2         [3.15.92],
3         [http://bugzilla.gnome.org/enter_bug.cgi?product=jhbuild],
4         [jhbuild])
6 AC_CONFIG_SRCDIR(jhbuild/main.py)
7 AC_PREFIX_DEFAULT([~/.local/])
8 AC_CONFIG_MACRO_DIR([m4])
9 AC_CONFIG_AUX_DIR([build-aux])
11 AM_INIT_AUTOMAKE([1.11 -Wno-portability foreign no-define tar-ustar no-dist-gzip dist-xz])
12 AM_MAINTAINER_MODE([enable])
14 # Check for programs
15 AC_PROG_CC
16 AM_PATH_PYTHON
17 PKG_PROG_PKG_CONFIG
19 # i18n
20 AM_GNU_GETTEXT([external])
21 AM_GNU_GETTEXT_VERSION([0.19])
23 GETTEXT_PACKAGE=AC_PACKAGE_TARNAME
24 AC_SUBST([GETTEXT_PACKAGE])
25 AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], "$GETTEXT_PACKAGE", [Gettext package])
27 # Documentation
28 AC_ARG_ENABLE(
29         doc_installation,
30         AS_HELP_STRING([--enable-doc-installation=@<:@no/yes@:>@], [install the documentation files]),
31         [enable_doc_installation=$enableval],
32         [enable_doc_installation=no])
33 AM_CONDITIONAL([DOC_INSTALLATION_ENABLED],[test "x$enable_doc_installation" = "xyes"])
35 # GUI
36 AC_ARG_ENABLE(
37         gui,
38         AS_HELP_STRING([--enable-gui=@<:@no/yes@:>@], [install the graphical user interface (default: no)]),
39         [enable_gui=$enableval],
40         [enable_gui=no])
41 AM_CONDITIONAL([GUI_ENABLED],[test "x$enable_gui" == "xyes"])
43 YELP_HELP_INIT
45 AC_CONFIG_FILES([
46         Makefile
47         doc/Makefile
48         po/Makefile.in
49         examples/Makefile
50         scripts/Makefile
51         triggers/Makefile
52         jhbuild.desktop.in
53         jhbuild/Makefile
54         jhbuild/buildbot/Makefile
55         jhbuild/buildbot/status/web/Makefile
56         jhbuild/buildbot/status/Makefile
57         jhbuild/commands/Makefile
58         jhbuild/frontends/Makefile
59         jhbuild/modtypes/Makefile
60         jhbuild/utils/Makefile
61         jhbuild/versioncontrol/Makefile
62         buildbot/Makefile
64 AC_OUTPUT