/[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 2563 by capela, Tue May 20 10:59:37 2014 UTC revision 2669 by capela, Sun Aug 3 16:56:18 2014 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.3.3, rncbc@rncbc.org, qsampler)  AC_INIT(Qsampler, 0.2.3.13, rncbc@rncbc.org, qsampler)
3    
4  AC_CONFIG_SRCDIR(src/qsampler.cpp)  AC_CONFIG_SRCDIR(src/qsampler.cpp)
5  AC_CONFIG_HEADERS(src/config.h)  AC_CONFIG_HEADERS(src/config.h)
# Line 62  AC_ARG_ENABLE(stacktrace, Line 62  AC_ARG_ENABLE(stacktrace,
62    
63    
64  # Standard installation base dirs.  # Standard installation base dirs.
65  ac_with_paths="/usr /usr/local"  if test "$cross_compiling" = yes; then
66      ac_with_paths=""
67    else
68      ac_with_paths="/usr /usr/local"
69    fi
70    
71  # Set for alternate Qt installation dir.  # Set for alternate Qt installation dir.
72  AC_ARG_WITH(qt,  AC_ARG_WITH(qt,
# Line 96  AC_PROG_GCC_TRADITIONAL Line 100  AC_PROG_GCC_TRADITIONAL
100  AC_LANG_C  AC_LANG_C
101  AC_LANG_CPLUSPLUS  AC_LANG_CPLUSPLUS
102    
103    PKG_PROG_PKG_CONFIG
104    
105  # Check for proper flags.  # Check for proper flags.
106  ac_arch=`uname -m`  ac_arch=`uname -m`
# Line 349  fi Line 354  fi
354    
355  # Check for optional libraries.  # Check for optional libraries.
356  if test "x$ac_libgig" = "xyes"; then  if test "x$ac_libgig" = "xyes"; then
357     AC_CHECK_LIB(gig, main, [ac_libgig="yes"], [ac_libgig="no"])     PKG_CHECK_MODULES(LIBGIG, gig >= 3.3.0, [ac_libgig="yes"], [ac_libgig="no"])
358     if test "x$ac_libgig" = "xyes"; then     if test "x$ac_libgig" = "xyes"; then
359        AC_DEFINE(CONFIG_LIBGIG, 1, [Define if libgig is available.])        AC_DEFINE(CONFIG_LIBGIG, 1, [Define if libgig is available.])
360        ac_libs="$ac_libs -lgig"        AC_SUBST(LIBGIG_CFLAGS)
361        AC_MSG_CHECKING([for gig::File::SetAutoLoad() method in libgig])        AC_SUBST(LIBGIG_LIBS)
362        AC_LANG_SAVE        ac_cflags="$ac_cflags $LIBGIG_CFLAGS"
363        AC_LANG_CPLUSPLUS        ac_libs="$ac_libs $LIBGIG_LIBS"
364        CXXFLAGS="$ac_libs"        CFLAGS="$ac_cflags"
365        AC_TRY_COMPILE([        CPPFLAGS="$ac_cflags"
366  #include <stdlib.h>        AC_DEFINE(CONFIG_LIBGIG_SETAUTOLOAD, 1, [Define if libgig provides gig::File::SetAutoLoad() method.])
367  #include <gig.h>        ac_libgig_setautoload="yes"
       ],[  
     gig::File file;  
     file.SetAutoLoad(false);  
       ],  
       have_libgig_setautoload="yes",  
       have_libgig_setautoload="no"  
       )  
       AC_LANG_RESTORE  
       AC_MSG_RESULT([$have_libgig_setautoload])  
       if test "x$have_libgig_setautoload" = "xyes"; then  
           AC_DEFINE(HAVE_LIBGIG_SETAUTOLOAD, 1, [Define if libgig provides gig::File::SetAutoLoad() method.])  
       fi  
368     fi     fi
369  fi  fi
370    
# Line 406  if test "x$ac_lscp_h" = "xno"; then Line 399  if test "x$ac_lscp_h" = "xno"; then
399     AC_MSG_ERROR([LSCP headers not found.])     AC_MSG_ERROR([LSCP headers not found.])
400  fi  fi
401    
402    if test "x$ac_libgig" = "xyes"; then
403       AC_CHECK_HEADER(libgig/SF.h, [ac_libgig_sf2="yes"], [ac_libgig_sf2="no"])
404       if test "x$ac_libgig_sf2" = "xyes"; then
405          AC_DEFINE(CONFIG_LIBGIG_SF2, 1, [Define if libgig/SF.h is available.])
406       fi
407    fi
408    
409  # Checks for typedefs, structures, and compiler characteristics.  # Checks for typedefs, structures, and compiler characteristics.
410  # AC_C_CONST  # AC_C_CONST
411    
# Line 435  echo "  LSCP volume support  . . . . . . Line 435  echo "  LSCP volume support  . . . . . .
435  echo "  LSCP edit instrument support . . . . . . . . . . .: $ac_edit_instrument"  echo "  LSCP edit instrument support . . . . . . . . . . .: $ac_edit_instrument"
436  echo "  GigaSampler instrument file support (libgig) . . .: $ac_libgig"  echo "  GigaSampler instrument file support (libgig) . . .: $ac_libgig"
437  if test "x$ac_libgig" = "xyes"; then  if test "x$ac_libgig" = "xyes"; then
438  echo "  libgig supports fast information retrieval . . . .: $have_libgig_setautoload"  echo "  libgig supports fast information retrieval . . . .: $ac_libgig_setautoload"
439    echo "  libgig supports SoundFont2 instruments files . . .: $ac_libgig_sf2"
440  fi  fi
441  echo "  LSCP channel MIDI event support  . . . . . . . . .: $ac_channel_midi_event"  echo "  LSCP channel MIDI event support  . . . . . . . . .: $ac_channel_midi_event"
442  echo "  LSCP device MIDI event support . . . . . . . . . .: $ac_device_midi_event"  echo "  LSCP device MIDI event support . . . . . . . . . .: $ac_device_midi_event"

Legend:
Removed from v.2563  
changed lines
  Added in v.2669

  ViewVC Help
Powered by ViewVC