Re: flex and bison in autoconf

2013-11-29 Thread Andrejs Cainikovs
Hi, > AC_PROG_YACC > #if test x"$YACC" != x"yes"; then > # AC_MSG_ERROR([Please install bison before installing.]) > #fi > AC_PROG_LEX > if test "x$LEX" != xflex; then > AC_MSG_ERROR([Please install flex before installing.]) > fi ... > > The problem is, while running ./configure built from th

autoconf and gobject-introspection

2013-11-29 Thread Roelof Wobben
Hello, I wonder if I can check if gobject-introspecion is installed without using the macros provided by gobject-introspection itself. I want to see : checking for gobject-introspection no instead of ./configure: line 15707: syntax error near unexpected token `1.32.0' ./configure: line 1

passing flags to make check targets

2013-11-29 Thread dave
Hello; My TESTS= targets can accept flags and data and I would like to pass things like files "-f test.dat" to them, How do I do that? Thanks, Dave ___ Autoconf mailing list Autoconf@gnu.org https://lists.gnu.org/mailman/listinfo/autoconf

Re: passing flags to make check targets

2013-11-29 Thread Rhys Ulerich
> My TESTS= targets can accept flags and data and I would like to pass things > like files "-f test.dat" to them, > > How do I do that? I am unsure if it is the party line answer, but I've generally written a script invoking the binary and added that script to TESTS and dist_check_SCRIPTS. For e