Update MMManager to list applications provided by DBus.
[mmediamanager.git] / configure.ac
blob20d9c1d95d3273e22737dde46b2cc20c6bd49036
1 # Copyright © 2008 Cosimo Cecchi <cosimoc@gnome.org>
3 # This program is free software; you can redistribute it and/or modify it
4 # under the terms of the GNU General Public License as published by the
5 # Free Software Foundation; either version 2 of the License, or (at your
6 # option) any later version.
8 # This program is distributed in the hope that it will be useful, but
9 # WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # General Public License for more details.
13 # You should have received a copy of the GNU General Public License along
14 # with this program; if not, write to the Free Software Foundation, Inc.,
15 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
17 dnl Process this file with autoconf to produce a configure script.
19 AC_INIT(mmediamanager, 0.1.0)
21 AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
22 AM_CONFIG_HEADER(config.h)
23 AM_MAINTAINER_MODE
25 AC_ISC_POSIX
26 AC_PROG_CC
27 AM_PROG_CC_STDC
28 AC_HEADER_STDC
30 AC_PATH_PROG([GLIB_MKENUMS],[glib-mkenums])
31 AC_PATH_PROG([DBUS_BINDING_TOOL],[dbus-binding-tool],[no])
33 if test "$DBUS_BINDING_TOOL" = "no"; then
34         AC_MSG_ERROR([dbus-binding-tool not found])
37 dnl ***************************************************************************
38 dnl Internationalization
39 dnl ***************************************************************************
40 GETTEXT_PACKAGE=mmediamanager
41 AC_SUBST(GETTEXT_PACKAGE)
42 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [GETTEXT package name])
43 AM_GLIB_GNU_GETTEXT
44 IT_PROG_INTLTOOL([0.35.0])
46 AM_PROG_LIBTOOL
48 PKG_CHECK_MODULES(MMEDIAMANAGER, [glib-2.0
49                                   gthread-2.0
50                                   gio-unix-2.0 
51                                   gobject-2.0 
52                                   gmodule-2.0
53                                   dbus-glib-1
55 AC_SUBST(MMEDIAMANAGER_CFLAGS)
56 AC_SUBST(MMEDIAMANAGER_LIBS)
58 ########
59 # DBus
60 ########
62 PKG_CHECK_MODULES(DBUS, [dbus-glib-1
63                          gthread-2.0
65 AC_SUBST(DBUS_CFLAGS)
66 AC_SUBST(DBUS_LIBS)
68 ##################################################
69 # Check for gtk-doc.
70 ##################################################
71 AC_ARG_WITH(html-dir, [  --with-html-dir=PATH path to installed docs ])
72 if test "x$with_html_dir" = "x" ; then
73   HTML_DIR='${datadir}/gtk-doc/html'
74 else
75   HTML_DIR=$with_html_dir
77 AC_SUBST(HTML_DIR)
79 gtk_doc_min_version=1.0
80 AC_MSG_CHECKING([gtk-doc version >= $gtk_doc_min_version])
81 if pkg-config --atleast-version=$gtk_doc_min_version gtk-doc; then
82   AC_MSG_RESULT(yes)
83   GTKDOC=true
84 else
85   AC_MSG_RESULT(no)
86   GTKDOC=false
88 dnl Let people disable the gtk-doc stuff.
89 AC_ARG_ENABLE(gtk-doc,
90               [  --enable-gtk-doc  Use gtk-doc to build documentation [default=auto]],
91               enable_gtk_doc="$enableval", enable_gtk_doc=auto)
92 if test x$enable_gtk_doc = xauto ; then
93   if test x$GTKDOC = xtrue ; then
94     enable_gtk_doc=yes
95   else
96     enable_gtk_doc=no
97   fi
99 AM_CONDITIONAL(ENABLE_GTK_DOC, test x$enable_gtk_doc = xyes)
102 AC_OUTPUT([
103 Makefile
104 src/libmmanager.pc
105 src/Makefile
106 test/Makefile
107 test/clients/Makefile
108 po/Makefile.in