Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2008-01-23 00:57:49 +0300
committerMiguel de Icaza <miguel@gnome.org>2008-01-23 00:57:49 +0300
commit3a663b15788c2b55587fa04db0c4b478e138aed7 (patch)
tree6bde6357308f28648fbe4582b4dc54bdfbcc0e2c /configure.in
parent63156ea0686651a4ee0c536cebc6d78b4b9955ea (diff)
Add check
svn path=/trunk/mono-tools/; revision=93586
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in10
1 files changed, 9 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 5fd514e9..e7927c43 100644
--- a/configure.in
+++ b/configure.in
@@ -36,7 +36,6 @@ AC_SUBST(NUNIT_LIBS)
PKG_CHECK_MODULES(MONODOC, monodoc)
AC_SUBST(MONODOC_LIBS)
-
PKG_CHECK_MODULES(GTK_SHARP, gtk-sharp-2.0 glade-sharp-2.0 gnome-sharp-2.0 gconf-sharp-2.0)
#PKG_CHECK_MODULES(GTK_SHARP, gtk-sharp glade-sharp gconf-sharp)
AC_SUBST(GTK_SHARP_LIBS)
@@ -67,6 +66,15 @@ if test "x$enable_gtkhtml$enable_gecko" = "xnono" ; then
AC_MSG_ERROR([no HTML display found. You need either gtkhtml or gecko])
fi
+dnl
+dnl I hate PKG_CONFIG_MODULES, that is for the weak
+dnl
+if pkg-config --modversion cecil>/dev/null; then
+AC_MSG_RESULT("Found cecil.pc")
+else
+AC_MSG_ERROR([You are missing Cecil (cecil.pc for packageconfig) required for gui-compare])
+fi
+
dnl Intl
GETTEXT_PACKAGE=mono-tools
AC_SUBST(GETTEXT_PACKAGE)