mediacore-hid/configure.ac

22 lines
633 B
Plaintext
Executable File

AC_INIT([MediaCore HID Server], [4.2.2], [bugs@miqra.nl], [mediacore-hid], [http://www.miqra.nl/])
AC_PREREQ([2.59])
AM_INIT_AUTOMAKE([1.11 no-define foreign subdir-objects])
AC_CONFIG_HEADERS([config.hpp])
AC_PROG_CXX
AC_PROG_CC
PKG_CHECK_MODULES([DEPS], [dbus-c++-1 >= 0.9.0])
AC_CHECK_PROG(DBUSXX_CHECK,dbusxx-xml2cpp,yes)
if test x"$DBUSXX_CHECK" != x"yes" ; then
AC_MSG_ERROR([Please install libdbus-c++-bin before installing.])
fi
AC_PATH_PROG([DEBUILD], [dpkg-buildpackage], [notfound])
AC_PATH_PROG([DHMAKE], [dh_make], [notfound])
AX_BOOST_BASE([1.49.0])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT