/[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 340 by capela, Fri Jan 14 10:40:47 2005 UTC revision 501 by capela, Wed Apr 27 22:44:49 2005 UTC
# Line 53  AC_CACHE_CHECK([for Qt library], Line 53  AC_CACHE_CHECK([for Qt library],
53    ac_qtlib, [    ac_qtlib, [
54    for X in qt-mt qt; do    for X in qt-mt qt; do
55      if test "x$ac_qtlib" = "x"; then      if test "x$ac_qtlib" = "x"; then
56        if test -f $QTDIR/lib/lib$X.so -o -f $QTDIR/lib/lib$X.a; then        if test -f $QTDIR/lib/lib$X.so -o -f $QTDIR/lib/lib$X.a \
57               -o -f $QTDIR/lib/lib$X.la -o -f $QTDIR/lib/lib$X.dylib; then
58          ac_qtlib=$X          ac_qtlib=$X
59        fi        fi
60      fi      fi
# Line 130  if test "x$ac_liblscp" = "xno"; then Line 131  if test "x$ac_liblscp" = "xno"; then
131  fi  fi
132  ac_libs="-llscp"  ac_libs="-llscp"
133    
134    AC_CACHE_CHECK([for instrument_name in lscp_channel_info_t],
135      ac_instrument_name, [
136      AC_TRY_COMPILE([#include "lscp/client.h"], [
137            lscp_channel_info_t info;
138            info.instrument_name = 0;
139        ], ac_instrument_name="yes", ac_instrument_name="no")
140    ])
141    if test "x$ac_instrument_name" = "xyes"; then
142       AC_DEFINE(CONFIG_INSTRUMENT_NAME, 1, [Define if instrument_name is available.])
143    fi
144    
145  dnl Check for optional libraries.  dnl Check for optional libraries.
146  if test "x$ac_libgig" = "xyes"; then  if test "x$ac_libgig" = "xyes"; then
147     AC_CHECK_LIB(gig, main, [ac_libgig="yes"], [ac_libgig="no"])     AC_CHECK_LIB(gig, main, [ac_libgig="yes"], [ac_libgig="no"])
# Line 160  AC_CHECK_FUNCS(system) Line 172  AC_CHECK_FUNCS(system)
172  dnl Finally produce a configure header file and the makefiles.  dnl Finally produce a configure header file and the makefiles.
173  AC_OUTPUT(Makefile qsampler.pro)  AC_OUTPUT(Makefile qsampler.pro)
174    
175  make clean > /dev/null 2>&1  dnl make clean > /dev/null 2>&1
176    
177  echo ""  echo ""
178  echo "Now type 'make', followed by 'make install' as root."  echo "Now type 'make', followed by 'make install' as root."

Legend:
Removed from v.340  
changed lines
  Added in v.501

  ViewVC Help
Powered by ViewVC