forked from mono/dbus-sharp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure.ac
59 lines (45 loc) · 1.08 KB
/
configure.ac
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
AC_INIT(src/DBus.cs)
AC_PREREQ(2.13)
API_VERSION=1.0
#VERSION=$API_VERSION.0
VERSION=0.7.0
AC_SUBST(API_VERSION)
AC_SUBST(VERSION)
AM_INIT_AUTOMAKE(dbus-sharp, $VERSION)
AM_MAINTAINER_MODE
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)
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
AC_OUTPUT([
Makefile
dbus-sharp-1.0.pc
src/AssemblyInfo.cs
src/Makefile
tools/Makefile
examples/Makefile
])