/[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 3516 by capela, Tue Jun 18 07:49:48 2019 UTC revision 3613 by capela, Tue Oct 1 08:35:49 2019 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.5.6, rncbc@rncbc.org, qsampler)  AC_INIT(Qsampler, 0.5.7, 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 146  AC_CACHE_CHECK([for g++ major version], Line 146  AC_CACHE_CHECK([for g++ major version],
146  ])  ])
147  ac_gxx_version_major=$ac_cv_gxx_version_major  ac_gxx_version_major=$ac_cv_gxx_version_major
148  if test $ac_gxx_version_major -ge 4 -a $ac_gxx_version_major -lt 6; then  if test $ac_gxx_version_major -ge 4 -a $ac_gxx_version_major -lt 6; then
149     CXXFLAGS="-std=c++11 $CXXFLAGS"     CPPFLAGS="-std=c++11 $CPPFLAGS"
150       ac_cflags="-std=c++11 $ac_cflags"
151  fi  fi
152    
153  # Check for proper flags.  # Check for proper flags.
# Line 275  if test "x$ac_uic" = "xno"; then Line 276  if test "x$ac_uic" = "xno"; then
276  fi  fi
277  AC_SUBST(ac_uic)  AC_SUBST(ac_uic)
278    
279    
280  # Check for Qt lupdate utility.  # Check for Qt lupdate utility.
281  AC_PATH_TOOL(ac_lupdate, lupdate, [no], $ac_path)  AC_PATH_TOOL(ac_lupdate, lupdate, [no], $ac_path)
282  if test "x$ac_lupdate" = "xno"; then  if test "x$ac_lupdate" = "xno"; then
283     AC_MSG_ERROR([lupdate $ac_errmsg])     AC_PATH_TOOL(ac_cv_lupdate, lupdate-qt5, [no], $ac_path)
284       if test "x$ac_cv_lupdate" = "xno"; then
285          AC_MSG_ERROR([lupdate $ac_errmsg (qt5-linguist)])
286       else
287          ac_lupdate=$ac_cv_lupdate;
288       fi
289  fi  fi
290  AC_SUBST(ac_lupdate)  AC_SUBST(ac_lupdate)
291    
292  # Check for Qt lrelease utility.  # Check for Qt lrelease utility.
293  AC_PATH_TOOL(ac_lrelease, lrelease, [no], $ac_path)  AC_PATH_TOOL(ac_lrelease, lrelease, [no], $ac_path)
294  if test "x$ac_release" = "xno"; then  if test "x$ac_lrelease" = "xno"; then
295     AC_MSG_ERROR([lrelease $ac_errmsg])     AC_PATH_TOOL(ac_cv_lrelease, lrelease-qt5, [no], $ac_path)
296       if test "x$ac_cv_lrelease" = "xno"; then
297          AC_MSG_ERROR([lrelease $ac_errmsg (qt5-linguist)])
298       else
299          ac_lrelease=$ac_cv_lrelease;
300       fi
301  fi  fi
302  AC_SUBST(ac_lrelease)  AC_SUBST(ac_lrelease)
303    

Legend:
Removed from v.3516  
changed lines
  Added in v.3613

  ViewVC Help
Powered by ViewVC