/[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 2835 by capela, Fri Aug 14 23:40:53 2015 UTC revision 2878 by capela, Sun Apr 17 14:52:33 2016 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.3.1.3, rncbc@rncbc.org, qsampler)  AC_INIT(Qsampler, 0.4.0.3, 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 9  AC_CONFIG_FILES(Makefile qsampler.spec s Line 9  AC_CONFIG_FILES(Makefile qsampler.spec s
9  AC_PREFIX_DEFAULT(/usr/local)  AC_PREFIX_DEFAULT(/usr/local)
10  ac_prefix=$prefix  ac_prefix=$prefix
11  if test "x$ac_prefix" = "xNONE"; then  if test "x$ac_prefix" = "xNONE"; then
12      ac_prefix=$ac_default_prefix     ac_prefix=$ac_default_prefix
13  fi  fi
14  AC_SUBST(ac_prefix)  AC_SUBST(ac_prefix)
15  AC_DEFINE_UNQUOTED(CONFIG_PREFIX, ["$ac_prefix"], [Default installation prefix.])  AC_DEFINE_UNQUOTED(CONFIG_PREFIX, ["$ac_prefix"], [Default installation prefix.])
# Line 36  AC_ARG_ENABLE(qt4, Line 36  AC_ARG_ENABLE(qt4,
36    [ac_qt4="$enableval"],    [ac_qt4="$enableval"],
37    [ac_qt4="no"])    [ac_qt4="no"])
38    
 AC_ARG_ENABLE(qt5,  
   AC_HELP_STRING([--enable-qt5], [enable Qt5 build (default=yes)]),  
   [ac_qt5="$enableval"],  
   [ac_qt5="yes"])  
   
   
39    
40  # Enable libgig availability.  # Enable libgig availability.
41  AC_ARG_ENABLE(libgig,  AC_ARG_ENABLE(libgig,
# Line 49  AC_ARG_ENABLE(libgig, Line 43  AC_ARG_ENABLE(libgig,
43    [ac_libgig="$enableval"],    [ac_libgig="$enableval"],
44    [ac_libgig="yes"])    [ac_libgig="yes"])
45    
46    # Enable X11 unique/single instance.
47    AC_ARG_ENABLE(xunique,
48      AC_HELP_STRING([--enable-xunique], [enable X11 unique/single instance (default=yes)]),
49      [ac_xunique="$enableval"],
50      [ac_xunique="yes"])
51    
52  # Enable debugger stack-trace option (assumes --enable-debug).  # Enable debugger stack-trace option (assumes --enable-debug).
53  AC_ARG_ENABLE(stacktrace,  AC_ARG_ENABLE(stacktrace,
54    AC_HELP_STRING([--enable-stacktrace], [enable debugger stack-trace (default=no)]),    AC_HELP_STRING([--enable-stacktrace], [enable debugger stack-trace (default=no)]),
# Line 78  fi Line 78  fi
78    
79  if test "x$ac_qt5_path" != "xno"; then  if test "x$ac_qt5_path" != "xno"; then
80     ac_with_paths="$ac_with_paths $ac_qt5_path"     ac_with_paths="$ac_with_paths $ac_qt5_path"
81     ac_qt5="yes"     ac_qt4="no"
 fi  
   
 if test "x$ac_qt5" = "xno"; then  
    ac_qt4="yes"  
 fi  
 if test "x$ac_qt4" = "xyes"; then  
    ac_qt5="no"  
82  fi  fi
83    
84  # Set for alternate liblscp installation dir.  # Set for alternate liblscp installation dir.
# Line 105  ac_ldflags=$LDFLAGS Line 98  ac_ldflags=$LDFLAGS
98    
99    
100  # Checks for programs.  # Checks for programs.
 AC_PROG_CC  
101  AC_PROG_CPP  AC_PROG_CPP
102  AC_PROG_CXX  AC_PROG_CXX
103  AC_PROG_CXXCPP  AC_PROG_CXXCPP
 AC_PROG_GCC_TRADITIONAL  
104    
105  # Checks for languages.  # Checks for languages.
 AC_LANG_C  
106  AC_LANG_CPLUSPLUS  AC_LANG_CPLUSPLUS
107    
108  PKG_PROG_PKG_CONFIG  PKG_PROG_PKG_CONFIG
# Line 155  ac_errmsg="not found in current PATH. Ma Line 145  ac_errmsg="not found in current PATH. Ma
145    
146  if test "x$ac_qt4" = "xyes"; then  if test "x$ac_qt4" = "xyes"; then
147     AC_PATH_PROG(ac_qmake, qmake-qt4, [no], $ac_path)     AC_PATH_PROG(ac_qmake, qmake-qt4, [no], $ac_path)
148  fi  else
 if test "x$ac_qt5" = "xyes"; then  
149     AC_PATH_PROG(ac_qmake, qmake-qt5, [no], $ac_path)     AC_PATH_PROG(ac_qmake, qmake-qt5, [no], $ac_path)
150  fi  fi
151  if test "x$ac_qmake" = "xno"; then  if test "x$ac_qmake" = "xno"; then
# Line 169  fi Line 158  fi
158    
159  # Check for proper Qt4/5 major version.  # Check for proper Qt4/5 major version.
160  ac_qt_version_major=`$ac_qmake -query QT_VERSION | cut -d. -f1`  ac_qt_version_major=`$ac_qmake -query QT_VERSION | cut -d. -f1`
161  if test "x$ac_qt4" = "xyes" -a "x$ac_qt_version_major" != "x4"; then  if test "x$ac_qt4" = "xyes"; then
162     AC_MSG_ERROR([qmake-qt4 $ac_errmsg (qt4-devel)])     if test "x$ac_qt_version_major" != "x4"; then
163  fi        AC_MSG_ERROR([qmake-qt4 $ac_errmsg (qt4-devel)])
164  if test "x$ac_qt5" = "xyes" -a "x$ac_qt_version_major" != "x5"; then     fi
165     AC_MSG_ERROR([qmake-qt5 $ac_errmsg (qt5-devel)])  else
166       if test "x$ac_qt_version_major" != "x5"; then
167          AC_MSG_ERROR([qmake-qt5 $ac_errmsg (qt5-devel)])
168       fi
169  fi  fi
170    
171  ac_qt_install_bins=`$ac_qmake -query QT_INSTALL_BINS`  ac_qt_install_bins=`$ac_qmake -query QT_INSTALL_BINS`
# Line 207  fi Line 199  fi
199  if test "x$ac_qt4" = "xyes"; then  if test "x$ac_qt4" = "xyes"; then
200     AC_CACHE_CHECK([for Qt library version >= 4.4],     AC_CACHE_CHECK([for Qt library version >= 4.4],
201        ac_cv_qtversion, [        ac_cv_qtversion, [
202        AC_TRY_LINK([#include "QtCore/qglobal.h"], [        AC_TRY_COMPILE([#include "QtCore/qglobal.h"], [
203           #if QT_VERSION < 0x040400 || QT_VERSION >= 0x050000           #if QT_VERSION < 0x040400 || QT_VERSION >= 0x050000
204           #error Qt library 4.4 or greater required.           #error Qt library 4.4 or greater required.
205           #endif           #endif
# Line 216  if test "x$ac_qt4" = "xyes"; then Line 208  if test "x$ac_qt4" = "xyes"; then
208           exit 1           exit 1
209        ])        ])
210     ])     ])
211  fi  else
   
 if test "x$ac_qt5" = "xyes"; then  
212     AC_CACHE_CHECK([for Qt library version >= 5.1],     AC_CACHE_CHECK([for Qt library version >= 5.1],
213        ac_cv_qtversion, [        ac_cv_qtversion, [
214        AC_TRY_LINK([#include "QtCore/qglobal.h"], [        AC_TRY_COMPILE([#include "QtCore/qglobal.h"], [
215           #if QT_VERSION < 0x050100 || QT_VERSION >= 0x060000           #if QT_VERSION < 0x050100 || QT_VERSION >= 0x060000
216           #error Qt library 5.1 or greater required.           #error Qt library 5.1 or greater required.
217           #endif           #endif
# Line 418  if test "x$ac_round" = "xyes"; then Line 408  if test "x$ac_round" = "xyes"; then
408     AC_DEFINE(CONFIG_ROUND, 1, [Define if round is available.])     AC_DEFINE(CONFIG_ROUND, 1, [Define if round is available.])
409  fi  fi
410    
411    # Check for X11 unique/single instance.
412    if test "x$ac_xunique" = "xyes"; then
413       AC_DEFINE(CONFIG_XUNIQUE, 1, [Define if X11 unique/single instance is enabled.])
414    fi
415    
416  # Check for debugging stack-trace.  # Check for debugging stack-trace.
417  if test "x$ac_stacktrace" = "xyes"; then  if test "x$ac_stacktrace" = "xyes"; then
418     AC_DEFINE(CONFIG_STACKTRACE, 1, [Define if debugger stack-trace is enabled.])     AC_DEFINE(CONFIG_STACKTRACE, 1, [Define if debugger stack-trace is enabled.])
# Line 486  echo "  LSCP channel MIDI event support Line 481  echo "  LSCP channel MIDI event support
481  echo "  LSCP device MIDI event support . . . . . . . . . .: $ac_device_midi_event"  echo "  LSCP device MIDI event support . . . . . . . . . .: $ac_device_midi_event"
482  echo "  LSCP runtime max. voices / disk streams support  .: $ac_max_voices"  echo "  LSCP runtime max. voices / disk streams support  .: $ac_max_voices"
483  echo  echo
484    echo "  X11 Unique/Single instance . . . . . . . . . . . .: $ac_xunique"
485  echo "  Debugger stack-trace (gdb) . . . . . . . . . . . .: $ac_stacktrace"  echo "  Debugger stack-trace (gdb) . . . . . . . . . . . .: $ac_stacktrace"
486  echo  echo
487  echo "  Install prefix . . . . . . . . . . . . . . . . . .: $ac_prefix"  echo "  Install prefix . . . . . . . . . . . . . . . . . .: $ac_prefix"

Legend:
Removed from v.2835  
changed lines
  Added in v.2878

  ViewVC Help
Powered by ViewVC