/[svn]/qsampler/trunk/configure.in
ViewVC logotype

Diff of /qsampler/trunk/configure.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 750 by capela, Wed Jun 15 17:55:55 2005 UTC revision 751 by capela, Fri Aug 19 17:10:16 2005 UTC
# Line 142  if test "x$ac_instrument_name" = "xyes"; Line 142  if test "x$ac_instrument_name" = "xyes";
142     AC_DEFINE(CONFIG_INSTRUMENT_NAME, 1, [Define if instrument_name is available.])     AC_DEFINE(CONFIG_INSTRUMENT_NAME, 1, [Define if instrument_name is available.])
143  fi  fi
144    
145    AC_CACHE_CHECK([for mute/solo in lscp_channel_info_t],
146      ac_mute_solo, [
147      AC_TRY_COMPILE([#include "lscp/client.h"], [
148            lscp_channel_info_t info;
149            info.mute = 0;
150            info.solo = 0;
151        ], ac_mute_solo="yes", ac_mute_solo="no")
152    ])
153    if test "x$ac_mute_solo" = "xyes"; then
154       AC_CHECK_LIB(lscp, lscp_set_channel_mute, [ac_mute_solo="yes"], [ac_mute_solo="no"])
155    fi
156    if test "x$ac_mute_solo" = "xyes"; then
157       AC_CHECK_LIB(lscp, lscp_set_channel_solo, [ac_mute_solo="yes"], [ac_mute_solo="no"])
158    fi
159    if test "x$ac_mute_solo" = "xyes"; then
160       AC_DEFINE(CONFIG_MUTE_SOLO, 1, [Define if mute/solo is available.])
161    fi
162    
163  dnl Check for optional libraries.  dnl Check for optional libraries.
164  if test "x$ac_libgig" = "xyes"; then  if test "x$ac_libgig" = "xyes"; then
165     AC_CHECK_LIB(gig, main, [ac_libgig="yes"], [ac_libgig="no"])     AC_CHECK_LIB(gig, main, [ac_libgig="yes"], [ac_libgig="no"])

Legend:
Removed from v.750  
changed lines
  Added in v.751

  ViewVC Help
Powered by ViewVC