Browse Source

patch from kai to fix disable-fltk-client argument

git-svn-id: svn+ssh://jackaudio.org/trunk/jack@15 0c269be4-1314-0410-8aa9-9f06e86f4224
tags/0.109.0
pbd 24 years ago
parent
commit
fd67c97854
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      configure.in

+ 1
- 1
configure.in View File

@@ -41,7 +41,7 @@ XTRA=""
AC_ARG_ENABLE(fltk-client, AC_ARG_ENABLE(fltk-client,
[ --enable-fltk-client build the FLTK test 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, AC_CHECK_LIB(fltk,main,
[ XTRA="$XTRA jack_fltk_client" ], [ XTRA="$XTRA jack_fltk_client" ],
[ AC_MSG_ERROR([*** you can't build the FLTK client without the FLTK library])], [ AC_MSG_ERROR([*** you can't build the FLTK client without the FLTK library])],


Loading…
Cancel
Save