We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a365ec2 commit 77f032eCopy full SHA for 77f032e
2 files changed
libvisual-plugins/ChangeLog
@@ -1,3 +1,8 @@
1
+2006-03-08 Chong Kai Xiong <descender@phreaker.net>
2
+
3
+ * configure.ac: Make configure die if neither Bison nor Yacc
4
+ could be found.
5
6
2006-03-08 Chong Kai Xiong <descender@phreaker.net>
7
8
* plugins/actor/pseudotoad_flower/Makefile.am: Add missing \,
libvisual-plugins/configure.ac
@@ -69,7 +69,10 @@ AC_PROG_LIBTOOL
69
70
dnl Lex/Yacc
71
AM_PROG_LEX
72
-AC_PROG_YACC
+AC_CHECK_PROGS([YACC], ['bison -y' byacc yacc])
73
+if test -z "$YACC"; then
74
+ AC_MSG_ERROR([Bison or Yacc not found])
75
+fi
76
77
dnl Internationalization
78
GETTEXT_PACKAGE=libvisual-plugins-lv_plugins_version_suffix
0 commit comments