/[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 1740 by capela, Fri May 23 23:35:55 2008 UTC revision 2271 by capela, Sun Sep 4 21:50:14 2011 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.16, rncbc@rncbc.org, qsampler)  AC_INIT(Qsampler, 0.2.2.30, rncbc@rncbc.org, qsampler)
3    
4  AC_CONFIG_SRCDIR(src/qsamplerMainForm.ui)  AC_CONFIG_SRCDIR(src/qsampler.cpp)
5  AC_CONFIG_HEADERS(config.h)  AC_CONFIG_HEADERS(src/config.h)
6  AC_CONFIG_FILES(Makefile qsampler.pro qsampler.spec qsampler.desktop)  AC_CONFIG_FILES(Makefile qsampler.spec src/src.pri src/qsampler.desktop)
7    
8  # Set default installation prefix.  # Set default installation prefix.
9  AC_PREFIX_DEFAULT(/usr/local)  AC_PREFIX_DEFAULT(/usr/local)
# Line 21  AC_ARG_ENABLE(debug, Line 21  AC_ARG_ENABLE(debug,
21    
22  if test "x$ac_debug" = "xyes"; then  if test "x$ac_debug" = "xyes"; then
23     AC_DEFINE(CONFIG_DEBUG, 1, [Define if debugging is enabled.])     AC_DEFINE(CONFIG_DEBUG, 1, [Define if debugging is enabled.])
24       ac_stacktrace="yes"
25     ac_debug="debug"     ac_debug="debug"
26  else  else
27       ac_stacktrace="no"
28     ac_debug="release"     ac_debug="release"
29  fi  fi
30  AC_SUBST(ac_debug)  AC_SUBST(ac_debug)
# Line 33  AC_ARG_ENABLE(libgig, Line 35  AC_ARG_ENABLE(libgig,
35    [ac_libgig="$enableval"],    [ac_libgig="$enableval"],
36    [ac_libgig="yes"])    [ac_libgig="yes"])
37    
38    # Enable debugger stack-trace option (assumes --enable-debug).
39    AC_ARG_ENABLE(stacktrace,
40      AC_HELP_STRING([--enable-stacktrace], [enable debugger stack-trace (default=no)]),
41      [ac_stacktrace="$enableval"])
42    
43    
44    if test "$cross_compiling" != yes; then
45  # Standard installation base dirs.  # Standard installation base dirs.
46  ac_with_paths="/usr /usr/local"  ac_with_paths="/usr /usr/local"
47    
48  # Some a-la-debian alternatives...  # Some a-la-debian alternatives...
49  for X in /usr/lib /usr/share; do  for X in /usr/lib /usr/lib64 /usr/share; do
50    for Y in qt qt4; do    for Y in qt qt4; do
51      if test -d $X/$Y/bin; then      if test -d $X/$Y/bin; then
52        ac_with_paths="$ac_with_paths $X/$Y"        ac_with_paths="$ac_with_paths $X/$Y"
53      fi      fi
54    done    done
55  done  done
56    fi
57    
58  # Set for alternate Qt installation dir.  # Set for alternate Qt installation dir.
59  AC_ARG_WITH(qt,  AC_ARG_WITH(qt,
# Line 103  for X in $ac_with_paths; do Line 113  for X in $ac_with_paths; do
113  done  done
114    
115  # Check for proper Qt version.  # Check for proper Qt version.
116  AC_CACHE_CHECK([for Qt library version >= 4.1],  AC_CACHE_CHECK([for Qt library version >= 4.2],
117    ac_qtlib_version, [    ac_cv_qtversion, [
118    AC_TRY_LINK([#include "Qt/qglobal.h"], [    AC_TRY_LINK([#include "Qt/qglobal.h"], [
119  #if QT_VERSION < 0x040100  #if QT_VERSION < 0x040200
120  #error Qt library 4.1 or greater required.  #error Qt library 4.2 or greater required.
121  #endif  #endif
122      ],      ], ac_cv_qtversion="yes", [
123      ac_qtlib_version="yes", [        echo "no; Qt 4.2 or greater is required"
       echo "no; Qt 4.1 or greater is required"  
124        exit        exit
125      ])      ])
126  ])  ])
# Line 140  if test "x$ac_uic" = "xno"; then Line 149  if test "x$ac_uic" = "xno"; then
149  fi  fi
150  AC_SUBST(ac_uic)  AC_SUBST(ac_uic)
151    
152    # Check for Qt lupdate utility.
153    AC_PATH_PROG(ac_lupdate, lupdate, [no], $ac_path)
154    if test "x$ac_lupdate" = "xno"; then
155       AC_MSG_ERROR([lupdate $ac_errmsg])
156    fi
157    AC_SUBST(ac_lupdate)
158    
159    # Check for Qt lrelease utility.
160    AC_PATH_PROG(ac_lrelease, lrelease, [no], $ac_path)
161    if test "x$ac_release" = "xno"; then
162       AC_MSG_ERROR([lrelease $ac_errmsg])
163    fi
164    AC_SUBST(ac_lrelease)
165    
166  # Checks for libraries.  # Checks for libraries.
167  AC_CHECK_LIB(m, main)  AC_CHECK_LIB(m, main)
168  AC_CHECK_LIB(X11, main)  AC_CHECK_LIB(X11, main)
# Line 157  if test "x$ac_liblscp" = "xno"; then Line 180  if test "x$ac_liblscp" = "xno"; then
180     AC_MSG_ERROR([LSCP library not found.])     AC_MSG_ERROR([LSCP library not found.])
181  fi  fi
182  ac_libs="$ac_libs -llscp"  ac_libs="$ac_libs -llscp"
183    case "{$host}" in
184         *mingw*)
185         ac_libs="$ac_libs -lws2_32"
186         LIBS="$LIBS -lws2_32"
187         ;;
188    esac
189    
190  AC_CACHE_CHECK([for instrument_name in lscp_channel_info_t],  AC_CACHE_CHECK([for instrument_name in lscp_channel_info_t],
191    ac_instrument_name, [    ac_cv_instrument_name, [
192    AC_TRY_COMPILE([#include "lscp/client.h"], [    AC_TRY_COMPILE([#include "lscp/client.h"], [
193          lscp_channel_info_t info;          lscp_channel_info_t info;
194          info.instrument_name = 0;          info.instrument_name = 0;
195      ], ac_instrument_name="yes", ac_instrument_name="no")      ], ac_cv_instrument_name="yes", ac_cv_instrument_name="no")
196  ])  ])
197    ac_instrument_name=$ac_cv_instrument_name
198  if test "x$ac_instrument_name" = "xyes"; then  if test "x$ac_instrument_name" = "xyes"; then
199     AC_DEFINE(CONFIG_INSTRUMENT_NAME, 1, [Define if instrument_name is available.])     AC_DEFINE(CONFIG_INSTRUMENT_NAME, 1, [Define if instrument_name is available.])
200  fi  fi
201    
202  AC_CACHE_CHECK([for mute/solo in lscp_channel_info_t],  AC_CACHE_CHECK([for mute/solo in lscp_channel_info_t],
203    ac_mute_solo, [    ac_cv_mute_solo, [
204    AC_TRY_COMPILE([#include "lscp/client.h"], [    AC_TRY_COMPILE([#include "lscp/client.h"], [
205          lscp_channel_info_t info;          lscp_channel_info_t info;
206          info.mute = 0;          info.mute = 0;
207          info.solo = 0;          info.solo = 0;
208      ], ac_mute_solo="yes", ac_mute_solo="no")      ], ac_cv_mute_solo="yes", ac_cv_mute_solo="no")
209  ])  ])
210    ac_mute_solo=$ac_cv_mute_solo
211  if test "x$ac_mute_solo" = "xyes"; then  if test "x$ac_mute_solo" = "xyes"; then
212     AC_CHECK_LIB(lscp, lscp_set_channel_mute, [ac_mute_solo="yes"], [ac_mute_solo="no"])     AC_CHECK_LIB(lscp, lscp_set_channel_mute, [ac_mute_solo="yes"], [ac_mute_solo="no"])
213  fi  fi
# Line 196  AC_CHECK_LIB(lscp, lscp_create_fxsend, [ Line 227  AC_CHECK_LIB(lscp, lscp_create_fxsend, [
227  if test "x$ac_fxsend" = "xyes"; then  if test "x$ac_fxsend" = "xyes"; then
228    AC_DEFINE(CONFIG_FXSEND, 1, [Define if FX sends is available.])    AC_DEFINE(CONFIG_FXSEND, 1, [Define if FX sends is available.])
229    AC_CACHE_CHECK([for FX send level in lscp_fxsend_info_t],    AC_CACHE_CHECK([for FX send level in lscp_fxsend_info_t],
230      ac_fxsend_level, [      ac_cv_fxsend_level, [
231      AC_TRY_COMPILE([#include "lscp/client.h"], [      AC_TRY_COMPILE([#include "lscp/client.h"], [
232            lscp_fxsend_info_t info;            lscp_fxsend_info_t info;
233            info.level = 0.0f;            info.level = 0.0f;
234        ], ac_fxsend_level="yes", ac_fxsend_level="no")        ], ac_cv_fxsend_level="yes", ac_cv_fxsend_level="no")
235    ])    ])
236      ac_fxsend_level=$ac_cv_fxsend_level
237    if test "x$ac_fxsend_level" = "xyes"; then    if test "x$ac_fxsend_level" = "xyes"; then
238            AC_DEFINE(CONFIG_FXSEND_LEVEL, 1, [Define if FX send level is available.])            AC_DEFINE(CONFIG_FXSEND_LEVEL, 1, [Define if FX send level is available.])
239    fi    fi
# Line 212  if test "x$ac_fxsend" = "xyes"; then Line 244  if test "x$ac_fxsend" = "xyes"; then
244  fi  fi
245    
246  AC_CACHE_CHECK([for audio_routing array type],  AC_CACHE_CHECK([for audio_routing array type],
247    ac_audio_routing, [    ac_cv_audio_routing, [
248    AC_TRY_COMPILE([#include "lscp/client.h"], [    AC_TRY_COMPILE([#include "lscp/client.h"], [
249      lscp_channel_info_t info;      lscp_channel_info_t info;
250      char ch = info.audio_routing[0][0];      char ch = info.audio_routing[0][0];
251      ], ac_audio_routing="no", ac_audio_routing="yes")      ], ac_cv_audio_routing="no", ac_cv_audio_routing="yes")
252  ])  ])
253    ac_audio_routing=$ac_cv_audio_routing
254  if test "x$ac_audio_routing" = "xyes"; then  if test "x$ac_audio_routing" = "xyes"; then
255     AC_DEFINE(CONFIG_AUDIO_ROUTING, 1, [Define if audio_routing is an integer array.])     AC_DEFINE(CONFIG_AUDIO_ROUTING, 1, [Define if audio_routing is an integer array.])
256  fi  fi
# Line 233  if test "x$ac_edit_instrument" = "xyes"; Line 266  if test "x$ac_edit_instrument" = "xyes";
266  fi  fi
267    
268  AC_CACHE_CHECK([for CHANNEL_MIDI LSCP event support in liblscp],  AC_CACHE_CHECK([for CHANNEL_MIDI LSCP event support in liblscp],
269    ac_lscp_channel_midi_event, [    ac_cv_channel_midi_event, [
270    AC_TRY_COMPILE([    AC_TRY_COMPILE([
271          #include "lscp/client.h"          #include "lscp/client.h"
272          #include "lscp/event.h"          #include "lscp/event.h"
273          ], [          ], [
274          lscp_event_t ev;          lscp_event_t ev;
275          ev = LSCP_EVENT_CHANNEL_MIDI;          ev = LSCP_EVENT_CHANNEL_MIDI;
276      ], ac_lscp_channel_midi_event="yes", ac_lscp_channel_midi_event="no")      ], ac_cv_channel_midi_event="yes", ac_cv_channel_midi_event="no")
277  ])  ])
278  if test "x$ac_lscp_channel_midi_event" = "xyes"; then  ac_channel_midi_event=$ac_cv_channel_midi_event
279    if test "x$ac_channel_midi_event" = "xyes"; then
280     AC_DEFINE(CONFIG_EVENT_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.])
281  fi  fi
282    
283  AC_CACHE_CHECK([for DEVICE_MIDI LSCP event support in liblscp],  AC_CACHE_CHECK([for DEVICE_MIDI LSCP event support in liblscp],
284    ac_lscp_device_midi_event, [    ac_cv_device_midi_event, [
285    AC_TRY_COMPILE([    AC_TRY_COMPILE([
286          #include "lscp/client.h"          #include "lscp/client.h"
287          #include "lscp/event.h"          #include "lscp/event.h"
288          ], [          ], [
289          lscp_event_t ev;          lscp_event_t ev;
290          ev = LSCP_EVENT_DEVICE_MIDI;          ev = LSCP_EVENT_DEVICE_MIDI;
291      ], ac_lscp_device_midi_event="yes", ac_lscp_device_midi_event="no")      ], ac_cv_device_midi_event="yes", ac_cv_device_midi_event="no")
292  ])  ])
293  if test "x$ac_lscp_device_midi_event" = "xyes"; then  ac_device_midi_event=$ac_cv_device_midi_event
294    if test "x$ac_device_midi_event" = "xyes"; then
295     AC_DEFINE(CONFIG_EVENT_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.])
296  fi  fi
297    
298    AC_CHECK_LIB(lscp, lscp_get_voices, [ac_max_voices="yes"], [ac_max_voices="no"])
299    if test "x$ac_max_voices" = "xyes"; then
300      AC_DEFINE(CONFIG_MAX_VOICES, 1, [Define if max. voices / streams is available.])
301    fi
302    
303  # Check for optional libraries.  # Check for optional libraries.
304  if test "x$ac_libgig" = "xyes"; then  if test "x$ac_libgig" = "xyes"; then
305     AC_CHECK_LIB(gig, main, [ac_libgig="yes"], [ac_libgig="no"])     AC_CHECK_LIB(gig, main, [ac_libgig="yes"], [ac_libgig="no"])
# Line 270  if test "x$ac_libgig" = "xyes"; then Line 310  if test "x$ac_libgig" = "xyes"; then
310        AC_LANG_SAVE        AC_LANG_SAVE
311        AC_LANG_CPLUSPLUS        AC_LANG_CPLUSPLUS
312        CXXFLAGS="$ac_libs"        CXXFLAGS="$ac_libs"
313        AC_TRY_RUN([        AC_TRY_COMPILE([
314  #include <stdlib.h>  #include <stdlib.h>
315  #include <gig.h>  #include <gig.h>
316  int main() {        ],[
317      gig::File file;      gig::File file;
318      file.SetAutoLoad(false);      file.SetAutoLoad(false);
     exit(0);  
 }  
319        ],        ],
320        have_libgig_setautoload="yes",        have_libgig_setautoload="yes",
       have_libgig_setautoload="no",  
321        have_libgig_setautoload="no"        have_libgig_setautoload="no"
322        )        )
323        AC_LANG_RESTORE        AC_LANG_RESTORE
# Line 297  if test "x$ac_round" = "xyes"; then Line 334  if test "x$ac_round" = "xyes"; then
334     AC_DEFINE(CONFIG_ROUND, 1, [Define if round is available.])     AC_DEFINE(CONFIG_ROUND, 1, [Define if round is available.])
335  fi  fi
336    
337    # Check for debugging stack-trace.
338    if test "x$ac_stacktrace" = "xyes"; then
339       AC_DEFINE(CONFIG_STACKTRACE, 1, [Define if debugger stack-trace is enabled.])
340    fi
341    
342    # Some recent distros (eg. fedora, debian) require this.
343    if test "x$ac_cv_lib_X11_main" = "xyes"; then
344       ac_libs="$ac_libs -lX11"
345    fi
346    
347  AC_SUBST(ac_libs)  AC_SUBST(ac_libs)
348  AC_SUBST(ac_incpath)  AC_SUBST(ac_incpath)
349    
350  # Checks for header files.  # Checks for header files.
351  AC_HEADER_STDC  AC_HEADER_STDC
352  AC_HEADER_SYS_WAIT  AC_HEADER_SYS_WAIT
353  AC_CHECK_HEADERS(fcntl.h sys/ioctl.h unistd.h signal.h)  AC_CHECK_HEADERS(fcntl.h sys/ioctl.h unistd.h signal.h sys/socket.h)
354    
355  AC_CHECK_HEADER(lscp/client.h, [ac_lscp_h="yes"], [ac_lscp_h="no"])  AC_CHECK_HEADER(lscp/client.h, [ac_lscp_h="yes"], [ac_lscp_h="no"])
356  if test "x$ac_lscp_h" = "xno"; then  if test "x$ac_lscp_h" = "xno"; then
# Line 341  echo "  GigaSampler instrument file supp Line 388  echo "  GigaSampler instrument file supp
388  if test "x$ac_libgig" = "xyes"; then  if test "x$ac_libgig" = "xyes"; then
389  echo "  libgig supports fast information retrieval . . . .: $have_libgig_setautoload"  echo "  libgig supports fast information retrieval . . . .: $have_libgig_setautoload"
390  fi  fi
391  echo "  LSCP channel MIDI event support  . . . . . . . . .: $ac_lscp_channel_midi_event"  echo "  LSCP channel MIDI event support  . . . . . . . . .: $ac_channel_midi_event"
392  echo "  LSCP device MIDI event support . . . . . . . . . .: $ac_lscp_device_midi_event"  echo "  LSCP device MIDI event support . . . . . . . . . .: $ac_device_midi_event"
393    echo "  LSCP runtime max. voices / disk streams support  .: $ac_max_voices"
394    echo
395    echo "  Debugger stack-trace (gdb) . . . . . . . . . . . .: $ac_stacktrace"
396  echo  echo
397  echo "  Install prefix . . . . . . . . . . . . . . . . . .: $ac_prefix"  echo "  Install prefix . . . . . . . . . . . . . . . . . .: $ac_prefix"
398  echo  echo

Legend:
Removed from v.1740  
changed lines
  Added in v.2271

  ViewVC Help
Powered by ViewVC