Changeset 66cf27f for configure.in
- Timestamp:
- 08/16/09 16:24:59 (12 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- 4b6495c3
- Parents:
- 83be9fc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
configure.in
r83be9fc r66cf27f 36 36 AC_PROG_CXX 37 37 AC_PROG_INSTALL 38 AC_PROG_YACC 38 dnl AC_PROG_YACC 39 AC_CHECK_PROGS(YACC, 'bison -y' byacc yacc) 39 40 AM_PROG_LEX 40 41 … … 323 324 reportopt "Building man pages/documentation" $libtrace_doxygen 324 325 326 echo 327 ac_cv_errcount=0; 328 if test -z "$YACC"; then 329 AC_MSG_WARN(bison or yacc not found. Please install bison before continuing) 330 ac_cv_errcount=$((ac_cv_errcount + 1)) 331 fi 332 333 if test -z "$LEXLIB"; then 334 AC_MSG_WARN(flex or lex not found. Please install flex before continuing) 335 ac_cv_errcount=$((ac_cv_errcount + 1)) 336 fi 337 338 if test $ac_cv_errcount -gt 0; then 339 AC_MSG_ERROR(Critical packages are missing and compilation will fail. Please install the packages listed above and rerun ./configure) 340 fi 341
Note: See TracChangeset
for help on using the changeset viewer.