configure.ac: When building a non-release version, compile with -Werror
[dbus-python-phuang.git] / configure.ac
blob1681f2f45d53295e699050f5f76b23e3e52df199
1 -*- mode: m4 -*-
2 AC_PREREQ(2.52)
4 dnl If not 1, append datestamp to the version number and build with -Werror
5 m4_define(dbus_python_released, 0)
6 dnl The dbus-python version number (must actually be numeric at the moment)
7 m4_define(dbus_python_major_version, 0)
8 m4_define(dbus_python_minor_version, 79)
9 m4_define(dbus_python_micro_version, 93)
11 m4_define(dbus_python_maybe_datestamp,
12           m4_esyscmd([if test x]dbus_python_released[ != x1; then date +.%Y%m%d | tr -d '\n\r'; fi]))
14 m4_define(dbus_python_version, dbus_python_major_version.dbus_python_minor_version.dbus_python_micro_version[]dbus_python_maybe_datestamp)
16 dnl versions of packages we require ...
17 dnl m4_define(glib_required_version, 2.8.0)
19 AC_INIT(dbus-python, dbus_python_version,
20         [http://bugzilla.gnome.org/enter_bug.cgi?product=dbus&component=python])
22 AC_DEFINE(DBUS_PYTHON_MAJOR_VERSION, dbus_python_major_version, [dbus-python major version])
23 AC_SUBST(DBUS_PYTHON_MAJOR_VERSION, dbus_python_major_version)
24 AC_DEFINE(DBUS_PYTHON_MINOR_VERSION, dbus_python_minor_version, [dbus-python minor version])
25 AC_SUBST(DBUS_PYTHON_MINOR_VERSION, dbus_python_minor_version)
26 AC_DEFINE(DBUS_PYTHON_MICRO_VERSION, dbus_python_micro_version, [dbus-python micro version])
27 AC_SUBST(DBUS_PYTHON_MICRO_VERSION, dbus_python_micro_version)
29 AC_CONFIG_SRCDIR([_dbus_bindings/module.c])
30 AM_CONFIG_HEADER(config.h)
32 AM_INIT_AUTOMAKE
34 dnl put the ACLOCAL flags in the makefile
35 ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS"
37 AC_CANONICAL_BUILD
38 AC_CANONICAL_HOST
40 AC_DISABLE_STATIC
42 dnl XXXX hack to kill off all the libtool tags ...
43 dnl it isn't like we are using C++ or Fortran.
44 dnl (copied from libglade/configure.in)
45 m4_define([_LT_AC_TAGCONFIG],[])
47 AC_PROG_LIBTOOL
49 AM_PATH_PYTHON(2.4.0)
51 AM_CHECK_PYTHON_HEADERS(,[AC_MSG_ERROR(could not find Python headers)])
53 PLATFORM=`$PYTHON -c "from distutils import util; print util.get_platform()"`
54 AC_SUBST(PLATFORM)
56 dnl Building documentation
57 AC_ARG_ENABLE(api-docs,
58 AC_HELP_STRING([--enable-api-docs], [Enable documentation building (requires epydoc 3 and docutils)]),, enable_api_docs=no)
59 AM_CHECK_PYMOD([docutils], [__version__], [:], [enable_api_docs=no])
60 if test "${enable_api_docs}" != no; then
61   AC_PATH_PROG([EPYDOC], [epydoc])
62   if test -z "$EPYDOC"; then
63     enable_api_docs=no
64   fi
67 AM_CONDITIONAL([ENABLE_API_DOCS], [test x$enable_api_docs != xno])
69 AC_CHECK_PROGS([RST2HTML], [rst2html rst2html.py], [])
70 AC_SUBST([RST2HTML])
71 AM_CONDITIONAL([ENABLE_DOCS], [test x$RST2HTML != x])
73 PKG_CHECK_MODULES(DBUS, [dbus-1 >= 1.0 dbus-glib-1 >= 0.70])
74 PKG_CHECK_MODULES(DBUS_GLIB, [dbus-1 >= 1.0 dbus-glib-1 >= 0.70])
76 dnl add required cflags ...
77 JH_ADD_CFLAG([-Wall])
78 JH_ADD_CFLAG([-Wextra])
79 JH_ADD_CFLAG([-Wno-missing-field-initializers])
80 JH_ADD_CFLAG([-Wdeclaration-after-statement])
81 JH_ADD_CFLAG([-std=c9x])
82 JH_ADD_CFLAG([-fno-strict-aliasing])
83 [if test x]dbus_python_released[ != x1; then]
84   JH_ADD_CFLAG([-Werror])
85 [fi]
87 AC_CONFIG_FILES(
88   Makefile
89   dbus-python.pc
90   dbus/_version.py
91   doc/tutorial.txt
92   test/tmp-session-bus.conf
93   test/TestSuitePythonService.service)
94 AC_OUTPUT