Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ AC_PROG_CXX
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_YACC
AS_IF([test x"$YACC" == x"yacc"], [AC_MSG_ERROR([Please install bison or byacc before configuring.])])
AS_IF([test x"$YACC" = x"yacc"], [AC_MSG_ERROR([Please install bison or byacc before configuring.])])
AC_PROG_LEX(noyywrap)
AS_IF([test x"$LEX" == x":"], [AC_MSG_ERROR([Please install flex before configuring.])])
AS_IF([test x"$LEX" = x":"], [AC_MSG_ERROR([Please install flex before configuring.])])

# Checks for header files.
AC_CHECK_HEADERS([arpa/inet.h \
Expand Down