renatofilho@870: # -*- Autoconf -*- renatofilho@870: # Process this file with autoconf to produce a configure script. renatofilho@870: renatofilho@870: AC_PREREQ(2.50) renatofilho@870: renatofilho@908: AC_INIT([gmyth-dbus],[0.7]) renatofilho@870: renatofilho@870: AC_CONFIG_MACRO_DIR([m4]) renatofilho@870: AC_CONFIG_HEADER(config.h) renatofilho@870: renatofilho@870: dnl AM_MAINTAINER_MODE provides the option to enable maintainer mode renatofilho@870: AM_MAINTAINER_MODE renatofilho@870: dnl make aclocal work in maintainer mode renatofilho@870: AC_SUBST(ACLOCAL_AMFLAGS, "-I m4") renatofilho@870: renatofilho@870: AM_INIT_AUTOMAKE($PACKAGE, $VERSION) renatofilho@870: renatofilho@870: # Checks for programs. renatofilho@870: # check for tools renatofilho@870: # Make sure CFLAGS is defined to stop AC_PROC_CC adding -g renatofilho@870: CFLAGS="$CFLAGS -Wall" renatofilho@870: AC_PROG_CC renatofilho@870: AC_PROG_LIBTOOL renatofilho@870: renatofilho@870: # Checks for libraries. renatofilho@870: renatofilho@870: # Checks for header files. renatofilho@870: AC_HEADER_STDC renatofilho@870: renatofilho@870: #Test if --disable-debug given renatofilho@870: AC_ARG_ENABLE(debug, renatofilho@870: AC_HELP_STRING([--disable-debug], [enable debugging mode])) renatofilho@870: if test x"$enable_debug" != xno; then renatofilho@870: CFLAGS="$CFLAGS -g -DMYTH_STREAM_USE_DEBUG" renatofilho@870: else renatofilho@870: CFLAGS="$CFLAGS -O2 -DG_DISABLE_CHECKS" renatofilho@870: fi renatofilho@870: renatofilho@870: renatofilho@870: AS_AC_EXPAND(DATADIR, $datadir) renatofilho@870: renatofilho@870: DBUS_SERVICES_DIR="$DATADIR/dbus-1/services" renatofilho@870: AC_SUBST(DBUS_SERVICES_DIR) renatofilho@870: AC_DEFINE_UNQUOTED(DBUS_SERVICES_DIR, "$DBUS_SERVICES_DIR", [Where services dir for DBUS is]) renatofilho@870: renatofilho@870: renatofilho@870: # Checks required packages #################################################### renatofilho@870: ############################################################################### renatofilho@870: renatofilho@870: AC_PATH_PROG(DBUSBINDINGTOOL, dbus-binding-tool, no) renatofilho@870: if test "x$DBUSBINDINGTOOL" = "xno"; then renatofilho@870: AC_MSG_ERROR([dbus-binding-tool not found in your PATH. Please correct this]) renatofilho@870: fi renatofilho@870: AC_SUBST(DBUS_BINDING_TOOL) renatofilho@870: renatofilho@870: AC_CHECK_PROG(HAVE_PKGCONFIG, pkg-config, yes, no) renatofilho@870: if test "x$HAVE_PKGCONFIG" = "xno"; then renatofilho@870: AC_MSG_ERROR(you need to have pkgconfig installed !) renatofilho@870: fi renatofilho@870: renatofilho@870: PKG_CHECK_MODULES(DBUS, dbus-glib-1, HAVE_DBUS=yes, HAVE_DBUS=no) renatofilho@870: if test "x$HAVE_DBUS" = "xno"; then renatofilho@870: AC_MSG_ERROR(you need dbus-glib-1-dev installed) renatofilho@870: fi renatofilho@870: AC_SUBST(DBUS_CFLAGS) renatofilho@870: AC_SUBST(DBUS_LIBS) renatofilho@870: renatofilho@908: PKG_CHECK_MODULES(GMYTH, gmyth >= 0.7, HAVE_GMYTH=yes, HAVE_GMYTH=no) renatofilho@870: if test "x$HAVE_GMYTH" = "xno"; then melunko@913: AC_MSG_ERROR(you need libgmyth-dev >= 0.7 installed) renatofilho@870: fi renatofilho@870: AC_SUBST(GMYTH_CFLAGS) renatofilho@870: AC_SUBST(GMYTH_LIBS) renatofilho@870: renatofilho@870: AC_SUBST(CFLAGS) renatofilho@870: AC_SUBST(LDFLAGS) renatofilho@870: AC_SUBST(LIBS) renatofilho@870: renatofilho@870: AC_OUTPUT([ renatofilho@870: Makefile renatofilho@870: src/Makefile renatofilho@870: data/Makefile renatofilho@870: data/br.org.indt.GMyth.service renatofilho@870: ]) renatofilho@870: renatofilho@870: if test "x$enable_debug" != "xno"; then renatofilho@870: AC_MSG_NOTICE([Debug: Enabled]) renatofilho@870: else renatofilho@870: AC_MSG_NOTICE([Debug: Disabled]) renatofilho@870: fi