1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
m4_define([api_version], [2.0])
m4_define([lib_version], [0.8.1])
AC_PREREQ(2.13)
AC_INIT([dbus-sharp], lib_version)
AC_CONFIG_SRCDIR([src/DBus.cs])
AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE
AC_SUBST([API_VERSION], [api_version])
AC_SUBST([VERSION], [lib_version])
AC_PROG_INSTALL
AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
if test "x$PKG_CONFIG" = "xno"; then
AC_MSG_ERROR([You need to install pkg-config])
fi
AC_SUBST(PKG_CONFIG)
MONO_REQ_VERSION=1.1.13
PKG_CHECK_MODULES(MONO, mono >= $MONO_REQ_VERSION)
AC_PATH_PROG(GMCS, gmcs, no)
if test "x$GMCS" = "xno"; then
AC_MSG_ERROR([You need to install gmcs])
fi
AC_SUBST(GMCS)
AC_PATH_PROG(GACUTIL, gacutil, no)
if test "x$GACUTIL" = "xno"; then
AC_MSG_ERROR([You need to install gacutil])
fi
AC_SUBST(GACUTIL)
AC_PATH_PROG(XBUILD, xbuild, no)
if test "x$GACUTIL" = "xno"; then
AC_MSG_ERROR([You need to install xbuild])
fi
AC_SUBST(XBUILD)
required_assemblies="Mono.Posix"
for asm in $required_assemblies; do
AC_MSG_CHECKING([for $asm.dll])
if test -n "`$GACUTIL /l $asm.dll | grep ^$asm.dll`"; then
AC_MSG_RESULT([not found])
AC_MSG_ERROR([missing required assembly in the GAC: $asm.dll])
else
AC_MSG_RESULT([found])
fi
done
NUNIT_REQUIRED=2.4.7
AC_ARG_ENABLE(tests, AC_HELP_STRING([--enable-tests], [Enable NUnit tests]),
enable_tests=$enableval, enable_tests="no")
if test "x$enable_tests" = "xno"; then
do_tests=no
AM_CONDITIONAL(ENABLE_TESTS, false)
else
PKG_CHECK_MODULES(NUNIT, nunit >= $NUNIT_REQUIRED,
do_tests="yes", do_tests="no")
AC_SUBST(NUNIT_LIBS)
AM_CONDITIONAL(ENABLE_TESTS, test "x$do_tests" = "xyes")
if test "x$do_tests" = "xno"; then
PKG_CHECK_MODULES(NUNIT, mono-nunit >= 2.4,
do_tests="yes", do_tests="no")
AC_SUBST(NUNIT_LIBS)
AM_CONDITIONAL(ENABLE_TESTS, test "x$do_tests" = "xyes")
if test "x$do_tests" = "xno"; then
AC_MSG_WARN([Could not find nunit: tests will not be available])
fi
fi
fi
AC_OUTPUT([
Makefile
dbus-sharp-2.0.pc
src/AssemblyInfo.cs
src/Makefile
tools/Makefile
examples/Makefile
tests/Makefile
])
|