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:
authorBen Maurer <benm@mono-cvs.ximian.com>2005-05-09 03:27:19 +0400
committerBen Maurer <benm@mono-cvs.ximian.com>2005-05-09 03:27:19 +0400
commit5d59b93bd0d874adbb8cce2a652caf356a429476 (patch)
tree234ec570716003c8f7c3c4c7b55b861a576efaba /configure.in
parent0b2a7653b72e724d7e9aa72aa84169b244ee126a (diff)
In .:
2005-05-08 Ben Maurer <bmaurer@ximian.com> * configure.in: - Check for mono and put it in RUNTIME - Don't check for monoresgen, as we don't ship that any more the correct name is `resgen' In asn1view: 2005-05-08 Ben Maurer <bmaurer@ximian.com> * gtk/Makefile.am, gtk/script.in: use @RUNTIME@ rather than @bin_dir@/mono. This is a problem for people who have mono-tools and mono in a different prefix (say you install mono from rpm but want to hack on monodoc). In gnunit: 2005-05-08 Ben Maurer <bmaurer@ximian.com> * src/Makefile.am, script*.in: use @RUNTIME@ rather than @bin_dir@/mono. This is a problem for people who have mono-tools and mono in a different prefix (say you install mono from rpm but want to hack on monodoc). In docbrowser: 2005-05-08 Ben Maurer <bmaurer@ximian.com> * Makefile.am: use $(RUNTIME) rather than `mono' svn path=/trunk/mono-tools/; revision=44228
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in16
1 files changed, 11 insertions, 5 deletions
diff --git a/configure.in b/configure.in
index e14d4f95..7c9c3df6 100644
--- a/configure.in
+++ b/configure.in
@@ -7,6 +7,7 @@ AC_PROG_INSTALL
dnl C# compiler
AC_PATH_PROG(MCS, mcs, no)
+AC_PATH_PROG(RUNTIME, mono, no)
CS="C#"
if test "x$MCS" = "xno" ; then
@@ -14,14 +15,19 @@ if test "x$MCS" = "xno" ; then
AC_MSG_ERROR([No $CS compiler found])
fi
-dnl monoresgen
-AC_PATH_PROG(MONORESGEN, monoresgen, no)
-if test "x$MONORESGEN" = "xno" ; then
- AC_MSG_ERROR([monoresgen not found in $PATH])
+if test "x$RUNTIME" = xno" ; then
+ AC_MSG_ERROR([No runtime found])
+fi
+
+dnl resgen
+AC_PATH_PROG(RESGEN, resgen, no)
+if test "x$RESGEN" = "xno" ; then
+ AC_MSG_ERROR([resgen not found in $PATH])
fi
AC_SUBST(MCS)
-AC_SUBST(MONORESGEN)
+AC_SUBST(RUNTIME)
+AC_SUBST(RESGEN)
PKG_CHECK_MODULES(NUNIT, mono-nunit)
AC_SUBST(NUNIT_LIBS)