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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Molaro <lupus@oddwiz.org>2002-08-20 17:17:31 +0400
committerPaolo Molaro <lupus@oddwiz.org>2002-08-20 17:17:31 +0400
commit0cca56c00ac7a98dc87f04519728a2513666f0e2 (patch)
tree4cad07cdbffd80f3ff32303ead01daa57d796c0e /configure.in
parentb931f5eb8a8187f93f5b3fb1ef27bed132b2e5bf (diff)
Tue Aug 20 15:15:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
* configure.in: patch by noa@metamatrix.se (Daniel Resare) to error out if bison is missing. svn path=/trunk/mono/; revision=6806
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index b57c320d09a..b6afda02ddd 100644
--- a/configure.in
+++ b/configure.in
@@ -29,6 +29,12 @@ AC_PROG_CC
AM_PROG_CC_STDC
AC_PROG_INSTALL
+AC_CHECK_PROG(BISON, bison, ,no)
+if test "x$BISON" = "xno";
+then
+ AC_MSG_ERROR([You need to install bison])
+fi
+
dnl may require a specific autoconf version
dnl AC_PROG_CC_FOR_BUILD
dnl CC_FOR_BUILD not automatically detected