/[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 1691 by schoenebeck, Thu Feb 14 22:31:26 2008 UTC revision 1698 by schoenebeck, Sat Feb 16 19:41:05 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.6, rncbc@rncbc.org, qsampler)  AC_INIT(Qsampler, 0.2.1.7, 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 246  if test "x$ac_lscp_channel_midi_event" = Line 246  if test "x$ac_lscp_channel_midi_event" =
246     AC_DEFINE(CONFIG_LSCP_CHANNEL_MIDI, 1, [Define if LSCP CHANNEL_MIDI event support is available.])     AC_DEFINE(CONFIG_LSCP_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],
250      ac_lscp_device_midi_event, [
251      AC_TRY_COMPILE([
252            #include "lscp/client.h"
253            #include "lscp/event.h"
254            ], [
255            lscp_event_t ev;
256            ev = LSCP_EVENT_DEVICE_MIDI;
257        ], ac_lscp_device_midi_event="yes", ac_lscp_device_midi_event="no")
258    ])
259    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.])
261    fi
262    
263  # Check for optional libraries.  # Check for optional libraries.
264  if test "x$ac_libgig" = "xyes"; then  if test "x$ac_libgig" = "xyes"; then
265     AC_CHECK_LIB(gig, main, [ac_libgig="yes"], [ac_libgig="no"])     AC_CHECK_LIB(gig, main, [ac_libgig="yes"], [ac_libgig="no"])
# Line 328  if test "x$ac_libgig" = "xyes"; then Line 342  if test "x$ac_libgig" = "xyes"; then
342  echo "  libgig supports fast information retrieval . . . .: $have_libgig_setautoload"  echo "  libgig supports fast information retrieval . . . .: $have_libgig_setautoload"
343  fi  fi
344  echo "  LSCP channel MIDI event support  . . . . . . . . .: $ac_lscp_channel_midi_event"  echo "  LSCP channel MIDI event support  . . . . . . . . .: $ac_lscp_channel_midi_event"
345    echo "  LSCP device MIDI event support . . . . . . . . . .: $ac_lscp_device_midi_event"
346  echo  echo
347  echo "  Install prefix . . . . . . . . . . . . . . . . . .: $ac_prefix"  echo "  Install prefix . . . . . . . . . . . . . . . . . .: $ac_prefix"
348  echo  echo

Legend:
Removed from v.1691  
changed lines
  Added in v.1698

  ViewVC Help
Powered by ViewVC