/[svn]/qsampler/branches/qsampler_0_0/configure.in
ViewVC logotype

Diff of /qsampler/branches/qsampler_0_0/configure.in

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

qsampler/trunk/configure.in revision 255 by capela, Tue Sep 28 16:17:43 2004 UTC qsampler/branches/qsampler_0_0/configure.in revision 422, Fri Mar 4 00:23:07 2005 UTC
# Line 22  if test "x$ac_debug" = "xdebug"; then Line 22  if test "x$ac_debug" = "xdebug"; then
22     AC_DEFINE(CONFIG_DEBUG, 1, [Define if debugging is enabled.])     AC_DEFINE(CONFIG_DEBUG, 1, [Define if debugging is enabled.])
23  fi  fi
24    
25    dnl Enable libgig availability.
26    AC_ARG_ENABLE(libgig,
27      [  --disable-libgig        disable libgig interface (default=no)],
28      [ac_libgig="no"],
29      [ac_libgig="yes"])
30    
31  dnl Checks for programs.  dnl Checks for programs.
32  AC_PROG_CC  AC_PROG_CC
33  AC_PROG_CPP  AC_PROG_CPP
# Line 111  AC_CHECK_LIB(X11, main) Line 117  AC_CHECK_LIB(X11, main)
117  AC_CHECK_LIB(Xext, main)  AC_CHECK_LIB(Xext, main)
118  AC_CHECK_LIB($ac_qtlib, main)  AC_CHECK_LIB($ac_qtlib, main)
119    
120    dnl Check for round math function.
121    AC_CHECK_LIB(m, round, [ac_round="yes"], [ac_round="no"])
122    if test "x$ac_round" = "xyes"; then
123       AC_DEFINE(CONFIG_ROUND, 1, [Define if round is available.])
124    fi
125    
126    dnl Check for mandatory libraries.
127  AC_CHECK_LIB(lscp, main, [ac_liblscp="yes"], [ac_liblscp="no"])  AC_CHECK_LIB(lscp, main, [ac_liblscp="yes"], [ac_liblscp="no"])
128  if test "x$ac_liblscp" = "xno"; then  if test "x$ac_liblscp" = "xno"; then
129     AC_MSG_ERROR([LSCP library not found.])     AC_MSG_ERROR([LSCP library not found.])
130  fi  fi
131    ac_libs="-llscp"
132    
133  AC_CHECK_LIB(gig, main, [ac_libgig="yes"], [ac_libgig="no"])  AC_CACHE_CHECK([for instrument_name in lscp_channel_info_t],
134  if test "x$ac_libgig" = "xyes"; then    ac_instrument_name, [
135     AC_DEFINE(CONFIG_LIBGIG, 1, [Define if libgig is available.])    AC_TRY_COMPILE([#include "lscp/client.h"], [
136            lscp_channel_info_t info;
137            info.instrument_name = 0;
138        ], ac_instrument_name="yes", ac_instrument_name="no")
139    ])
140    if test "x$ac_instrument_name" = "xyes"; then
141       AC_DEFINE(CONFIG_INSTRUMENT_NAME, 1, [Define if instrument_name is available.])
142  fi  fi
143    
144  dnl Check for round math function.  dnl Check for optional libraries.
145  AC_CHECK_LIB(m, round, [ac_round="yes"], [ac_round="no"])  if test "x$ac_libgig" = "xyes"; then
146  if test "x$ac_round" = "xyes"; then     AC_CHECK_LIB(gig, main, [ac_libgig="yes"], [ac_libgig="no"])
147     AC_DEFINE(CONFIG_ROUND, 1, [Define if round is available.])     if test "x$ac_libgig" = "xyes"; then
148          AC_DEFINE(CONFIG_LIBGIG, 1, [Define if libgig is available.])
149          ac_libs="-lgig $ac_libs"
150       fi
151  fi  fi
152    
153    AC_SUBST(ac_libs)
154    
155  dnl Checks for header files.  dnl Checks for header files.
156  AC_HEADER_STDC  AC_HEADER_STDC
157  AC_HEADER_SYS_WAIT  AC_HEADER_SYS_WAIT
158  AC_CHECK_HEADERS(fcntl.h sys/ioctl.h unistd.h)  AC_CHECK_HEADERS(fcntl.h sys/ioctl.h unistd.h signal.h)
159    
160  dnl AC_CHECK_HEADER(lscp/client.h, [ac_lscp_h="yes"], [ac_lscp_h="no"])  dnl AC_CHECK_HEADER(lscp/client.h, [ac_lscp_h="yes"], [ac_lscp_h="no"])
161  dnl if test "x$ac_lscp_h" = "xno"; then  dnl if test "x$ac_lscp_h" = "xno"; then
# Line 146  AC_CHECK_FUNCS(system) Line 171  AC_CHECK_FUNCS(system)
171  dnl Finally produce a configure header file and the makefiles.  dnl Finally produce a configure header file and the makefiles.
172  AC_OUTPUT(Makefile qsampler.pro)  AC_OUTPUT(Makefile qsampler.pro)
173    
174  make clean > /dev/null 2>&1  dnl make clean > /dev/null 2>&1
175    
176  echo ""  echo ""
177  echo "Now type 'make', followed by 'make install' as root."  echo "Now type 'make', followed by 'make install' as root."

Legend:
Removed from v.255  
changed lines
  Added in v.422

  ViewVC Help
Powered by ViewVC