/[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 2722 by capela, Tue Mar 3 17:41:04 2015 UTC revision 2797 by schoenebeck, Fri Jul 17 16:50:22 2015 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.19, rncbc@rncbc.org, qsampler)  AC_INIT(Qsampler, 0.3.0.4, 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 32  AC_SUBST(ac_debug) Line 32  AC_SUBST(ac_debug)
32    
33  # Enable Qt4/5 availability.  # Enable Qt4/5 availability.
34  AC_ARG_ENABLE(qt4,  AC_ARG_ENABLE(qt4,
35    AC_HELP_STRING([--enable-qt4], [enable Qt4 build (default=yes)]),    AC_HELP_STRING([--enable-qt4], [enable Qt4 build (default=no)]),
36    [ac_qt4="$enableval"],    [ac_qt4="$enableval"],
37    [ac_qt4="yes"])    [ac_qt4="no"])
38    
39  AC_ARG_ENABLE(qt5,  AC_ARG_ENABLE(qt5,
40    AC_HELP_STRING([--enable-qt5], [enable Qt5 build (default=no)]),    AC_HELP_STRING([--enable-qt5], [enable Qt5 build (default=yes)]),
41    [ac_qt5="$enableval"],    [ac_qt5="$enableval"],
42    [ac_qt5="no"])    [ac_qt5="yes"])
43    
44    
45    
# Line 59  AC_ARG_ENABLE(stacktrace, Line 59  AC_ARG_ENABLE(stacktrace,
59  if test "$cross_compiling" = yes; then  if test "$cross_compiling" = yes; then
60    ac_with_paths=""    ac_with_paths=""
61  else  else
62    ac_with_paths="/usr /usr/local"    ac_with_paths="/usr/local /usr"
63  fi  fi
64    
65  # Set for alternate Qt4/5 installation dir.  # Set for alternate Qt4/5 installation dir.
# Line 81  if test "x$ac_qt5_path" != "xno"; then Line 81  if test "x$ac_qt5_path" != "xno"; then
81     ac_qt5="yes"     ac_qt5="yes"
82  fi  fi
83    
84  if test "x$ac_qt4" = "xno"; then  if test "x$ac_qt4" != "xyes"; then
85     ac_qt5="yes"     ac_qt5="yes"
 fi  
 if test "x$ac_qt5" = "xyes"; then  
86     ac_qt4="no"     ac_qt4="no"
87    else
88       ac_qt5="no"
89       ac_qt4="yes"
90  fi  fi
91    
92  # Set for alternate liblscp installation dir.  # Set for alternate liblscp installation dir.
# Line 130  if test "x$ac_qt5" = "xyes"; then Line 131  if test "x$ac_qt5" = "xyes"; then
131     ac_qtdirs="qt5 $ac_qtdirs"     ac_qtdirs="qt5 $ac_qtdirs"
132  fi  fi
133    
134  ac_topdirs="/usr/share /usr/lib"  ac_topdirs="/usr/local /usr"
135    ac_subdirs="lib"
136    
137  if test "x$ac_arch" = "xx86_64"; then  if test "x$ac_arch" = "xx86_64"; then
138       ac_subdirs="$ac_subdirs lib64"
139    fi
140    
141    if test "x$ac_arch" = "xx86_64" -o "x$ac_qt5" = "xyes"; then
142     CFLAGS="-fPIC $CFLAGS"     CFLAGS="-fPIC $CFLAGS"
143     CPPFLAGS="-fPIC $CPPFLAGS"     CPPFLAGS="-fPIC $CPPFLAGS"
    ac_topdirs="$ac_topdirs /usr/lib64"  
144  fi  fi
145    
146  for X in $ac_topdirs; do  for X in $ac_topdirs; do
147    for Y in $ac_qtdirs; do    for Y in share $ac_subdirs; do
148      if test -d $X/$Y/bin; then      for Z in $ac_qtdirs; do
149        ac_with_paths="$X/$Y $ac_with_paths"        if test -d $X/$Y/$Z/bin; then
150      fi           ac_with_paths="$X/$Y/$Z $ac_with_paths"
151          fi
152        done
153    done    done
154  done  done
155    
156  # Prepend alternate dependencies paths.  # Prepend alternate dependencies paths.
157  ac_path=$PATH  ac_path=$PATH
158    ac_base_inc="include include/${ac_arch}-linux-gnu"
159  for X in $ac_with_paths; do  for X in $ac_with_paths; do
160    if test -d $X/bin; then    if test -d $X/bin; then
161      ac_path="$X/bin:$ac_path"      ac_path="$X/bin:$ac_path"
162    fi    fi
 # if test -x $X/qmake; then  
 #   ac_path="$X:$ac_path"  
 # fi  
163    if test -d $X/include; then    if test -d $X/include; then
164      for Y in $ac_qtdirs; do      for Y in $ac_qtdirs; do
165        if test -d $X/include/$Y; then        for Z in $ac_base_inc; do
166          CFLAGS="-I$X/include/$Y $CFLAGS"          if test -d "$X/$Z/$Y"; then
167          CPPFLAGS="-I$X/include/$Y $CPPFLAGS"            CFLAGS="-I$X/$Z/$Y $CFLAGS"
168          ac_incpath="$X/include/$Y $ac_incpath"            CPPFLAGS="-I$X/$Z/$Y $CPPFLAGS"
169        fi            ac_incpath="$X/$Z/$Y $ac_incpath"
170            fi
171          done
172      done      done
173      CFLAGS="-I$X/include $CFLAGS"      CFLAGS="$CFLAGS -I$X/include"
174      CPPFLAGS="-I$X/include $CPPFLAGS"      CPPFLAGS="$CPPFLAGS -I$X/include"
175      ac_incpath="$X/include $ac_incpath"      ac_incpath="$ac_incpath $X/include"
   fi  
   if test "x$ac_arch" = "xx86_64" -a -d $X/lib64; then  
     LIBS="-L$X/lib64 $LIBS"  
     ac_libs="-L$X/lib64 $ac_libs"  
   fi  
   if test -d $X/lib; then  
     LIBS="-L$X/lib $LIBS"  
     ac_libs="-L$X/lib $ac_libs"  
176    fi    fi
177      for Y in $ac_subdirs; do
178        if test -d $X/$Y; then
179           LIBS="-L$X/$Y $LIBS"
180           ac_libs="-L$X/$Y $ac_libs"
181        fi
182      done
183  done  done
184    
185  # Check for proper Qt4/5 version.  # Check for proper Qt4/5 version.
# Line 182  if test "x$ac_qt4" = "xyes"; then Line 187  if test "x$ac_qt4" = "xyes"; then
187     AC_CACHE_CHECK([for Qt library version >= 4.4],     AC_CACHE_CHECK([for Qt library version >= 4.4],
188        ac_cv_qtversion, [        ac_cv_qtversion, [
189        AC_TRY_LINK([#include "QtCore/qglobal.h"], [        AC_TRY_LINK([#include "QtCore/qglobal.h"], [
190           #if QT_VERSION < 0x040400           #if QT_VERSION < 0x040400 || QT_VERSION >= 0x050000
191           #error Qt library 4.4 or greater required.           #error Qt library 4.4 or greater required.
192           #endif           #endif
193        ], ac_cv_qtversion="yes", [        ], ac_cv_qtversion="yes", [
# Line 196  if test "x$ac_qt5" = "xyes"; then Line 201  if test "x$ac_qt5" = "xyes"; then
201     AC_CACHE_CHECK([for Qt library version >= 5.1],     AC_CACHE_CHECK([for Qt library version >= 5.1],
202        ac_cv_qtversion, [        ac_cv_qtversion, [
203        AC_TRY_LINK([#include "QtCore/qglobal.h"], [        AC_TRY_LINK([#include "QtCore/qglobal.h"], [
204           #if QT_VERSION < 0x050100           #if QT_VERSION < 0x050100 || QT_VERSION >= 0x060000
205           #error Qt library 5.1 or greater required.           #error Qt library 5.1 or greater required.
206           #endif           #endif
207        ], ac_cv_qtversion="yes", [        ], ac_cv_qtversion="yes", [

Legend:
Removed from v.2722  
changed lines
  Added in v.2797

  ViewVC Help
Powered by ViewVC