aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.in5
2 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 38f810de15..ea04683fc6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-03-21 Dan Winship <danw@ximian.com>
+
+ * configure.in: Require bison, not yacc (for vcc.y)
+
2001-03-20 Miguel de Icaza <miguel@ximian.com>
* art/Makefile.am (images_DATA): Added all the new icons to the
diff --git a/configure.in b/configure.in
index 13fec8c78f..273ae16ea2 100644
--- a/configure.in
+++ b/configure.in
@@ -21,6 +21,11 @@ AC_PROG_CC
AC_PROG_CPP
AM_PROG_LEX
AC_PROG_YACC
+case $YACC in
+*yacc*)
+ AC_MSG_ERROR(You need bison to build Evolution)
+ ;;
+esac
AC_STDC_HEADERS
AC_ARG_PROGRAM
AC_PROG_INSTALL