/[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 1702 by schoenebeck, Sun Feb 17 13:53:00 2008 UTC revision 1803 by schoenebeck, Sun Dec 7 13:58:16 2008 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.2.1.9, rncbc@rncbc.org, qsampler)  AC_INIT(Qsampler, 0.2.1.20, rncbc@rncbc.org, qsampler)
3    
4  AC_CONFIG_SRCDIR(src/qsamplerMainForm.ui)  AC_CONFIG_SRCDIR(src/qsamplerMainForm.ui)
5  AC_CONFIG_HEADERS(config.h)  AC_CONFIG_HEADERS(config.h)
# Line 243  AC_CACHE_CHECK([for CHANNEL_MIDI LSCP ev Line 243  AC_CACHE_CHECK([for CHANNEL_MIDI LSCP ev
243      ], ac_lscp_channel_midi_event="yes", ac_lscp_channel_midi_event="no")      ], ac_lscp_channel_midi_event="yes", ac_lscp_channel_midi_event="no")
244  ])  ])
245  if test "x$ac_lscp_channel_midi_event" = "xyes"; then  if test "x$ac_lscp_channel_midi_event" = "xyes"; then
246     AC_DEFINE(CONFIG_LSCP_CHANNEL_MIDI, 1, [Define if LSCP CHANNEL_MIDI event support is available.])     AC_DEFINE(CONFIG_EVENT_CHANNEL_MIDI, 1, [Define if LSCP CHANNEL_MIDI event support is available.])
247  fi  fi
248    
249  AC_CACHE_CHECK([for DEVICE_MIDI LSCP event support in liblscp],  AC_CACHE_CHECK([for DEVICE_MIDI LSCP event support in liblscp],
# Line 257  AC_CACHE_CHECK([for DEVICE_MIDI LSCP eve Line 257  AC_CACHE_CHECK([for DEVICE_MIDI LSCP eve
257      ], ac_lscp_device_midi_event="yes", ac_lscp_device_midi_event="no")      ], ac_lscp_device_midi_event="yes", ac_lscp_device_midi_event="no")
258  ])  ])
259  if test "x$ac_lscp_device_midi_event" = "xyes"; then  if test "x$ac_lscp_device_midi_event" = "xyes"; then
260     AC_DEFINE(CONFIG_LSCP_DEVICE_MIDI, 1, [Define if LSCP DEVICE_MIDI event support is available.])     AC_DEFINE(CONFIG_EVENT_DEVICE_MIDI, 1, [Define if LSCP DEVICE_MIDI event support is available.])
261    fi
262    
263    AC_CHECK_LIB(lscp, lscp_get_voices, [ac_max_voices="yes"], [ac_max_voices="no"])
264    if test "x$ac_max_voices" = "xyes"; then
265      AC_DEFINE(CONFIG_MAX_VOICES, 1, [Define if max. voices / streams is available.])
266  fi  fi
267    
268  # Check for optional libraries.  # Check for optional libraries.
# Line 343  echo "  libgig supports fast information Line 348  echo "  libgig supports fast information
348  fi  fi
349  echo "  LSCP channel MIDI event support  . . . . . . . . .: $ac_lscp_channel_midi_event"  echo "  LSCP channel MIDI event support  . . . . . . . . .: $ac_lscp_channel_midi_event"
350  echo "  LSCP device MIDI event support . . . . . . . . . .: $ac_lscp_device_midi_event"  echo "  LSCP device MIDI event support . . . . . . . . . .: $ac_lscp_device_midi_event"
351    echo "  LSCP runtime max. voices / disk streams support  .: $ac_max_voices"
352  echo  echo
353  echo "  Install prefix . . . . . . . . . . . . . . . . . .: $ac_prefix"  echo "  Install prefix . . . . . . . . . . . . . . . . . .: $ac_prefix"
354  echo  echo

Legend:
Removed from v.1702  
changed lines
  Added in v.1803

  ViewVC Help
Powered by ViewVC