/[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 2842 by capela, Thu Sep 3 09:56:47 2015 UTC revision 2862 by capela, Thu Mar 3 08:37:48 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.5, rncbc@rncbc.org, qsampler)  AC_INIT(Qsampler, 0.3.1.15, 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 213  fi Line 213  fi
213  if test "x$ac_qt4" = "xyes"; then  if test "x$ac_qt4" = "xyes"; then
214     AC_CACHE_CHECK([for Qt library version >= 4.4],     AC_CACHE_CHECK([for Qt library version >= 4.4],
215        ac_cv_qtversion, [        ac_cv_qtversion, [
216        AC_TRY_LINK([#include "QtCore/qglobal.h"], [        AC_TRY_COMPILE([#include "QtCore/qglobal.h"], [
217           #if QT_VERSION < 0x040400 || QT_VERSION >= 0x050000           #if QT_VERSION < 0x040400 || QT_VERSION >= 0x050000
218           #error Qt library 4.4 or greater required.           #error Qt library 4.4 or greater required.
219           #endif           #endif
# Line 227  fi Line 227  fi
227  if test "x$ac_qt5" = "xyes"; then  if test "x$ac_qt5" = "xyes"; then
228     AC_CACHE_CHECK([for Qt library version >= 5.1],     AC_CACHE_CHECK([for Qt library version >= 5.1],
229        ac_cv_qtversion, [        ac_cv_qtversion, [
230        AC_TRY_LINK([#include "QtCore/qglobal.h"], [        AC_TRY_COMPILE([#include "QtCore/qglobal.h"], [
231           #if QT_VERSION < 0x050100 || QT_VERSION >= 0x060000           #if QT_VERSION < 0x050100 || QT_VERSION >= 0x060000
232           #error Qt library 5.1 or greater required.           #error Qt library 5.1 or greater required.
233           #endif           #endif

Legend:
Removed from v.2842  
changed lines
  Added in v.2862

  ViewVC Help
Powered by ViewVC