Newer autoconf requires that arguments with internal whitespace be quoted, so we patch up configure here for when the makefiles run autoconf later. --- aumix/configure.in Thu Jan 31 21:45:25 2002 +++ aumix/configure.in Thu Jan 31 21:46:43 2002 @@ -34,7 +34,7 @@ dnl Additional configure options AC_ARG_WITH(ncurses, [ --without-ncurses compile with no ncurses or mouse support], - AC_MSG_RESULT([Compiling without ncurses support]), + AC_MSG_RESULT([Compiling without ncurses support]),[ dnl Checks for ncurses library. AC_CHECK_LIB(ncurses, initscr, initscr=on, initscr=off) if test $initscr = on; then @@ -95,7 +95,7 @@ AC_DEFINE(HAVE_SYSMOUSE) fi ) -) +]) AM_CONDITIONAL(CURSES, test "x$CURSLIB" != "x") AC_SUBST(CURSLIB)