From fd67c97854d404eaeb249b4764bf17a381edd365 Mon Sep 17 00:00:00 2001 From: pbd Date: Tue, 13 Nov 2001 21:13:32 +0000 Subject: [PATCH] patch from kai to fix disable-fltk-client argument git-svn-id: svn+ssh://jackaudio.org/trunk/jack@15 0c269be4-1314-0410-8aa9-9f06e86f4224 --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 4825e2a..ec4375d 100644 --- a/configure.in +++ b/configure.in @@ -41,7 +41,7 @@ XTRA="" AC_ARG_ENABLE(fltk-client, [ --enable-fltk-client build the FLTK test client.]) -if test "x$enable_fltk_client" != "no" ; then +if test "x$enable_fltk_client" != "xno" ; then AC_CHECK_LIB(fltk,main, [ XTRA="$XTRA jack_fltk_client" ], [ AC_MSG_ERROR([*** you can't build the FLTK client without the FLTK library])],