Accept keyword argument introspect=False to Bus.get_object(),
[dbus-python-phuang.git] / configure.ac
blobb0f636ca28d773fb30d50f044a5c75848a959a70
1 -*- mode: m4 -*-
2 AC_PREREQ(2.52)
4 dnl The dbus-python version number (must actually be numeric at the moment)
5 m4_define(dbus_python_major_version, 0)
6 m4_define(dbus_python_minor_version, 79)
7 m4_define(dbus_python_micro_version, 93)
8 m4_define(dbus_python_version, dbus_python_major_version.dbus_python_minor_version.dbus_python_micro_version)
10 dnl versions of packages we require ...
11 dnl m4_define(glib_required_version, 2.8.0)
13 AC_INIT(dbus-python, dbus_python_version,
14         [http://bugzilla.gnome.org/enter_bug.cgi?product=dbus&component=python])
15 AC_CONFIG_AUX_DIR(autotools)
17 AC_DEFINE(DBUS_PYTHON_MAJOR_VERSION, dbus_python_major_version, [dbus-python major version])
18 AC_SUBST(DBUS_PYTHON_MAJOR_VERSION, dbus_python_major_version)
19 AC_DEFINE(DBUS_PYTHON_MINOR_VERSION, dbus_python_minor_version, [dbus-python minor version])
20 AC_SUBST(DBUS_PYTHON_MINOR_VERSION, dbus_python_minor_version)
21 AC_DEFINE(DBUS_PYTHON_MICRO_VERSION, dbus_python_micro_version, [dbus-python micro version])
22 AC_SUBST(DBUS_PYTHON_MICRO_VERSION, dbus_python_micro_version)
24 AC_CONFIG_SRCDIR([_dbus_bindings/module.c])
25 AM_CONFIG_HEADER(config.h)
27 AM_INIT_AUTOMAKE
29 dnl put the ACLOCAL flags in the makefile
30 ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
32 AC_CANONICAL_BUILD
33 AC_CANONICAL_HOST
35 AC_DISABLE_STATIC
37 dnl XXXX hack to kill off all the libtool tags ...
38 dnl it isn't like we are using C++ or Fortran.
39 dnl (copied from libglade/configure.in)
40 m4_define([_LT_AC_TAGCONFIG],[])
42 AC_PROG_LIBTOOL
44 AM_PATH_PYTHON(2.4.0)
46 AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers)])
48 PLATFORM=`$PYTHON -c "from distutils import util; print util.get_platform()"`
49 AC_SUBST(PLATFORM)
51 dnl Building documentation
52 AC_ARG_ENABLE(api-docs,
53 AC_HELP_STRING([--enable-api-docs], [Enable documentation building (requires epydoc 3 and docutils)]),, enable_api_docs=no)
54 AM_CHECK_PYMOD([docutils], [__version__], [:], [enable_api_docs=no])
55 if test "${enable_api_docs}" != no; then
56   AC_PATH_PROG([EPYDOC], [epydoc])
57   if test -z "$EPYDOC"; then
58     enable_api_docs=no
59   fi
62 AM_CONDITIONAL(ENABLE_API_DOCS, test x$enable_api_docs != xno)
64 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.0 dbus-glib-1 >= 0.70])
65 PKG_CHECK_MODULES(DBUS_GLIB, [dbus-1 >= 1.0 dbus-glib-1 >= 0.70])
67 dnl add required cflags ...
68 JH_ADD_CFLAG([-Wall])
69 JH_ADD_CFLAG([-Wextra])
70 JH_ADD_CFLAG([-Wno-missing-field-initializers])
71 JH_ADD_CFLAG([-Wdeclaration-after-statement])
72 JH_ADD_CFLAG([-std=c9x])
73 JH_ADD_CFLAG([-fno-strict-aliasing])
75 AC_CONFIG_FILES(
76   Makefile
77   dbus-python.pc
78   dbus/_version.py
79   test/tmp-session-bus.conf
80   test/TestSuitePythonService.service)
81 AC_OUTPUT