/[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 2876 by capela, Tue Apr 12 17:00:41 2016 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.4.0.2, 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 34  AC_SUBST(ac_debug) Line 34  AC_SUBST(ac_debug)
34  AC_ARG_ENABLE(qt4,  AC_ARG_ENABLE(qt4,
35    AC_HELP_STRING([--enable-qt4], [enable Qt4 build (default=no)]),    AC_HELP_STRING([--enable-qt4], [enable Qt4 build (default=no)]),
36    [ac_qt4="$enableval"],    [ac_qt4="$enableval"],
37    [ac_qt5="yes"])    [ac_qt4="no"])
   
38    
39    
40  # Enable libgig availability.  # Enable libgig availability.
# Line 79  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 153  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 167  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 214  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_COMPILE([#include "QtCore/qglobal.h"], [        AC_TRY_COMPILE([#include "QtCore/qglobal.h"], [

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

  ViewVC Help
Powered by ViewVC