Changeset 301 for trunk/configure.in

Show
Ignore:
Timestamp:
03/20/2008 10:40:39 (9 months ago)
Author:
indeyets
Message:

forced configure to check for bison, as yacc does not work for us

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/configure.in

    r226 r301  
    11# Process this file with autoconf to produce a configure script. 
    2 AC_INIT(syck, 0.60) 
     2AC_INIT(syck, 0.61) 
    33AC_CONFIG_AUX_DIR(config) 
    44AC_PREREQ(2.50) 
    55 
    6 AM_INIT_AUTOMAKE(syck, 0.60) 
     6AM_INIT_AUTOMAKE(syck, 0.61) 
    77AM_CONFIG_HEADER(config.h) 
    88 
     
    1414AC_PROG_MAKE_SET 
    1515AC_PROG_AWK 
    16 AC_PROG_YACC 
    1716AM_PROG_LEX 
     17 
     18AC_CHECK_PROGS(YACC, 'bison -y') 
     19if test "$YACC" != "bison -y"; then 
     20  AC_MSG_ERROR([bison not found]) 
     21fi 
    1822 
    1923# Checks for libraries.