[Joseph Oswald]

The src/MacOSX/configure script generated by autoconf is broken (it has bad syntax after the egrep test). Applying a fix from the src/Unix fixes this.
This commit is contained in:
asvitkine 2011-03-11 16:44:46 +00:00
parent b20f89e811
commit ae1ef406fe

View File

@ -114,11 +114,11 @@ if [[ "x$WANT_MON" = "xyes" ]]; then
AC_SUBST(MONSRCS)
CXXFLAGS="$CXXFLAGS -I$mon_srcdir -I$mon_srcdir/disass"
AC_CHECK_LIB(ncurses, tgetent, ,
AC_CHECK_LIB(termcap, tgetent, ,
AC_CHECK_LIB(termlib, tgetent, ,
AC_CHECK_LIB(terminfo, tgetent, ,
AC_CHECK_LIB(Hcurses, tgetent, ,
AC_CHECK_LIB(curses, tgetent))))))
[AC_CHECK_LIB(termcap, tgetent, ,
[AC_CHECK_LIB(termlib, tgetent, ,
[AC_CHECK_LIB(terminfo, tgetent, ,
[AC_CHECK_LIB(Hcurses, tgetent, ,
[AC_CHECK_LIB(curses, tgetent)])])])])])
AC_CHECK_LIB(readline, readline)
else
AC_MSG_RESULT(no)