Skip to content

Commit 77f032e

Browse files
descenderhartwork
authored andcommitted
* configure.ac: Make fix for configure.ac from HEAD.
1 parent a365ec2 commit 77f032e

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

libvisual-plugins/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2006-03-08 Chong Kai Xiong <[email protected]>
2+
3+
* configure.ac: Make configure die if neither Bison nor Yacc
4+
could be found.
5+
16
2006-03-08 Chong Kai Xiong <[email protected]>
27

38
* plugins/actor/pseudotoad_flower/Makefile.am: Add missing \,

libvisual-plugins/configure.ac

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,10 @@ AC_PROG_LIBTOOL
6969

7070
dnl Lex/Yacc
7171
AM_PROG_LEX
72-
AC_PROG_YACC
72+
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
7376

7477
dnl Internationalization
7578
GETTEXT_PACKAGE=libvisual-plugins-lv_plugins_version_suffix

0 commit comments

Comments
 (0)