From: Jaroslav Kysela Date: Mon, 28 Jul 2003 12:02:25 +0000 (+0000) Subject: replaced AC_MSG_ERROR with AC_MSG_WARN to allow generation of configuration script... X-Git-Tag: v1.0.3~63 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=7b82f269347bc891a4ad69aa863264e2ae81a035;p=alsa-tools.git replaced AC_MSG_ERROR with AC_MSG_WARN to allow generation of configuration script on machines without fltk --- diff --git a/hdspmixer/configure.in b/hdspmixer/configure.in index aa8585a..7cd926f 100644 --- a/hdspmixer/configure.in +++ b/hdspmixer/configure.in @@ -51,7 +51,7 @@ fi AC_PATH_PROG(FLTK_CONFIG, fltk-config, no) if test "$FLTK_CONFIG" = "no"; then - AC_MSG_ERROR(no fltk-config is found) + AC_MSG_WARN(no fltk-config is found) fi LIBS="-s `fltk-config --ldflags` -lasound" CXXFLAGS="`fltk-config --cxxflags` -fno-exceptions $ALSA_CFLAGS"