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

Diff of /qsampler/trunk/configure.ac

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

revision 870 by capela, Thu Jun 1 08:41:42 2006 UTC revision 1033 by capela, Mon Jan 15 11:27:22 2007 UTC
# Line 1  Line 1 
1  # Process this file with autoconf to produce a configure script.  # Process this file with autoconf to produce a configure script.
2  AC_INIT(Qsampler, 0.1.3, rncbc@rncbc.org, qsampler)  AC_INIT(Qsampler, 0.1.3.23, rncbc@rncbc.org, qsampler)
3  AC_CONFIG_SRCDIR(src/qsamplerMainForm.ui.h)  AC_CONFIG_SRCDIR(src/qsamplerMainForm.ui.h)
4  AC_CONFIG_HEADERS(config.h)  AC_CONFIG_HEADERS(config.h)
5  AC_CONFIG_FILES(Makefile qsampler.pro qsampler.spec)  AC_CONFIG_FILES(Makefile qsampler.pro qsampler.spec)
# Line 193  if test "x$ac_mute_solo" = "xyes"; then Line 193  if test "x$ac_mute_solo" = "xyes"; then
193     AC_DEFINE(CONFIG_MUTE_SOLO, 1, [Define if mute/solo is available.])     AC_DEFINE(CONFIG_MUTE_SOLO, 1, [Define if mute/solo is available.])
194  fi  fi
195    
196    AC_CHECK_LIB(lscp, lscp_map_midi_instrument, [ac_midi_instrument="yes"], [ac_midi_instrument="no"])
197    if test "x$ac_midi_instrument" = "xyes"; then
198      AC_DEFINE(CONFIG_MIDI_INSTRUMENT, 1, [Define if MIDI instrument mapping is available.])
199    fi
200    
201    AC_CHECK_LIB(lscp, lscp_create_fxsend, [ac_fxsend="yes"], [ac_fxsend="no"])
202    if test "x$ac_fxsend" = "xyes"; then
203      AC_DEFINE(CONFIG_FXSEND, 1, [Define if FX sends is available.])
204      AC_CACHE_CHECK([for FX send level in lscp_fxsend_info_t],
205        ac_fxsend_level, [
206        AC_TRY_COMPILE([#include "lscp/client.h"], [
207              lscp_fxsend_info_t info;
208              info.level = 0.0f;
209          ], ac_fxsend_level="yes", ac_fxsend_level="no")
210      ])
211      if test "x$ac_fxsend_level" = "xyes"; then
212              AC_DEFINE(CONFIG_FXSEND_LEVEL, 1, [Define if FX send level is available.])
213      fi
214    fi
215    
216    AC_CACHE_CHECK([for audio_routing array type],
217      ac_audio_routing, [
218      AC_TRY_COMPILE([#include "lscp/client.h"], [
219            lscp_channel_info_t info;
220            char ch = info.audio_routing[0][0];
221        ], ac_audio_routing="no", ac_audio_routing="yes")
222    ])
223    if test "x$ac_audio_routing" = "xyes"; then
224       AC_DEFINE(CONFIG_AUDIO_ROUTING, 1, [Define if audio_routing is an integer array.])
225    fi
226    
227  # Check for optional libraries.  # Check for optional libraries.
228  if test "x$ac_libgig" = "xyes"; then  if test "x$ac_libgig" = "xyes"; then
229     AC_CHECK_LIB(gig, main, [ac_libgig="yes"], [ac_libgig="no"])     AC_CHECK_LIB(gig, main, [ac_libgig="yes"], [ac_libgig="no"])
# Line 202  if test "x$ac_libgig" = "xyes"; then Line 233  if test "x$ac_libgig" = "xyes"; then
233     fi     fi
234  fi  fi
235    
236    # Check for round math function.
237    AC_CHECK_LIB(m, lroundf, [ac_round="yes"], [ac_round="no"])
238    if test "x$ac_round" = "xyes"; then
239       AC_DEFINE(CONFIG_ROUND, 1, [Define if round is available.])
240    fi
241    
242  AC_SUBST(ac_libs)  AC_SUBST(ac_libs)
243  AC_SUBST(ac_incpath)  AC_SUBST(ac_incpath)
244    

Legend:
Removed from v.870  
changed lines
  Added in v.1033

  ViewVC Help
Powered by ViewVC