/[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 3523 by capela, Thu Jul 25 10:08:43 2019 UTC revision 3820 by capela, Tue Sep 1 10:55:24 2020 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.7, rncbc@rncbc.org, qsampler)  AC_INIT(Qsampler, 0.9.0, 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 98  AC_ARG_ENABLE(stacktrace, Line 98  AC_ARG_ENABLE(stacktrace,
98    
99  # Standard installation base dirs.  # Standard installation base dirs.
100  ac_path=$PATH  ac_path=$PATH
101    ac_pkg_config_path=$PKG_CONFIG_PATH
102  ac_with_paths=""  ac_with_paths=""
103    
104  # Set for alternate Qt installation dir.  # Set for alternate Qt installation dir.
# Line 107  AC_ARG_WITH(qt, Line 108  AC_ARG_WITH(qt,
108    
109  if test "x$ac_qt_path" != "xno"; then  if test "x$ac_qt_path" != "xno"; then
110     ac_path="$ac_qt_path/bin:$ac_path"     ac_path="$ac_qt_path/bin:$ac_path"
111       ac_pkg_config_path="$ac_qt_path/lib/pkgconfig:$ac_pkg_config_path"
112  fi  fi
113    
114  # Set for alternate liblscp installation dir.  # Set for alternate liblscp installation dir.
# Line 146  AC_CACHE_CHECK([for g++ major version], Line 148  AC_CACHE_CHECK([for g++ major version],
148  ])  ])
149  ac_gxx_version_major=$ac_cv_gxx_version_major  ac_gxx_version_major=$ac_cv_gxx_version_major
150  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
151     CPPFLAGS="-std=c++11 $CPPFLAGS"     CXXFLAGS="-std=c++11 $CXXFLAGS"
152     ac_cflags="-std=c++11 $ac_cflags"     ac_cflags="-std=c++11 $ac_cflags"
153    elif test $ac_gxx_version_major -ge 6 -a $ac_gxx_version_major -lt 11; then
154       CXXFLAGS="-std=c++17 $CXXFLAGS"
155       ac_cflags="-std=c++17 $ac_cflags"
156  fi  fi
157    
158  # Check for proper flags.  # Check for proper flags.
# Line 177  for X in $ac_with_paths; do Line 182  for X in $ac_with_paths; do
182       if test -d $X/$Y; then       if test -d $X/$Y; then
183          LIBS="-L$X/$Y $LIBS"          LIBS="-L$X/$Y $LIBS"
184          ac_libs="-L$X/$Y $ac_libs"          ac_libs="-L$X/$Y $ac_libs"
185            if test -d $X/$Y/pkgconfig; then
186               ac_pkg_config_path="$X/$Y/pkgconfig:$ac_pkg_config_path"
187            fi
188       fi       fi
189    done    done
190  done  done
191    
192    # Set pkg-config path.
193    if test -n "$ac_pkg_config_path"; then
194       export PKG_CONFIG_PATH=$ac_pkg_config_path
195    fi
196    
197    
198  # A common error message:  # A common error message:
199  ac_errmsg="not found in current PATH. Maybe QT development environment isn't available."  ac_errmsg="not found in current PATH. Maybe QT development environment isn't available."
200    
# Line 203  AC_CACHE_CHECK([for Qt major version], [ Line 217  AC_CACHE_CHECK([for Qt major version], [
217     ac_cv_qt_version_major=$(($ac_cv_qt_version_major + 0))     ac_cv_qt_version_major=$(($ac_cv_qt_version_major + 0))
218  ])  ])
219  ac_qt_version_major=$ac_cv_qt_version_major  ac_qt_version_major=$ac_cv_qt_version_major
220  if test $ac_qt_version_major -ne 5; then  if test $ac_qt_version_major -lt 5; then
221          AC_PATH_TOOL(ac_cv_qmake, qmake-qt5, [no], $ac_path)          AC_PATH_TOOL(ac_cv_qmake, qmake-qt5, [no], $ac_path)
222          ac_qmake=$ac_cv_qmake          ac_qmake=$ac_cv_qmake
223  fi  fi
# Line 276  if test "x$ac_uic" = "xno"; then Line 290  if test "x$ac_uic" = "xno"; then
290  fi  fi
291  AC_SUBST(ac_uic)  AC_SUBST(ac_uic)
292    
293    
294  # Check for Qt lupdate utility.  # Check for Qt lupdate utility.
295  AC_PATH_TOOL(ac_lupdate, lupdate, [no], $ac_path)  AC_PATH_TOOL(ac_lupdate, lupdate, [no], $ac_path)
296  if test "x$ac_lupdate" = "xno"; then  if test "x$ac_lupdate" = "xno"; then
297     AC_MSG_ERROR([lupdate $ac_errmsg])     AC_PATH_TOOL(ac_cv_lupdate, lupdate-qt5, [no], $ac_path)
298       if test "x$ac_cv_lupdate" = "xno"; then
299          AC_MSG_ERROR([lupdate $ac_errmsg (qt5-linguist)])
300       else
301          ac_lupdate=$ac_cv_lupdate;
302       fi
303  fi  fi
304  AC_SUBST(ac_lupdate)  AC_SUBST(ac_lupdate)
305    
306  # Check for Qt lrelease utility.  # Check for Qt lrelease utility.
307  AC_PATH_TOOL(ac_lrelease, lrelease, [no], $ac_path)  AC_PATH_TOOL(ac_lrelease, lrelease, [no], $ac_path)
308  if test "x$ac_release" = "xno"; then  if test "x$ac_lrelease" = "xno"; then
309     AC_MSG_ERROR([lrelease $ac_errmsg])     AC_PATH_TOOL(ac_cv_lrelease, lrelease-qt5, [no], $ac_path)
310       if test "x$ac_cv_lrelease" = "xno"; then
311          AC_MSG_ERROR([lrelease $ac_errmsg (qt5-linguist)])
312       else
313          ac_lrelease=$ac_cv_lrelease;
314       fi
315  fi  fi
316  AC_SUBST(ac_lrelease)  AC_SUBST(ac_lrelease)
317    
# Line 435  if test "x$ac_max_voices" = "xyes"; then Line 460  if test "x$ac_max_voices" = "xyes"; then
460    AC_DEFINE(CONFIG_MAX_VOICES, 1, [Define if max. voices / streams is available.])    AC_DEFINE(CONFIG_MAX_VOICES, 1, [Define if max. voices / streams is available.])
461  fi  fi
462    
463    AC_CHECK_LIB(lscp, lscp_client_connection_lost, [ac_lscp_conn_lost="yes"], [ac_lscp_conn_lost="no"])
464    if test "x$ac_lscp_conn_lost" = "xyes"; then
465      AC_DEFINE(CONFIG_LSCP_CLIENT_CONNECTION_LOST, 1, [Define if liblscp function lscp_client_connection_lost() is available.])
466    fi
467    
468  # Check for optional libraries.  # Check for optional libraries.
469  if test "x$ac_libgig" = "xyes"; then  if test "x$ac_libgig" = "xyes"; then
470     PKG_CHECK_MODULES([GIG], [gig >= 3.3.0], [ac_libgig="yes"], [ac_libgig="no"])     PKG_CHECK_MODULES([GIG], [gig >= 3.3.0], [ac_libgig="yes"], [ac_libgig="no"])
# Line 527  fi Line 557  fi
557  echo "  LSCP channel MIDI event support  . . . . . . . . .: $ac_channel_midi_event"  echo "  LSCP channel MIDI event support  . . . . . . . . .: $ac_channel_midi_event"
558  echo "  LSCP device MIDI event support . . . . . . . . . .: $ac_device_midi_event"  echo "  LSCP device MIDI event support . . . . . . . . . .: $ac_device_midi_event"
559  echo "  LSCP runtime max. voices / disk streams support  .: $ac_max_voices"  echo "  LSCP runtime max. voices / disk streams support  .: $ac_max_voices"
560    echo "  LSCP connection loss support . . . . . . . . . . .: $ac_lscp_conn_lost"
561  echo  echo
562  echo "  Unique/Single instance support . . . . . . . . . .: $ac_xunique"  echo "  Unique/Single instance support . . . . . . . . . .: $ac_xunique"
563  echo "  Debugger stack-trace (gdb) . . . . . . . . . . . .: $ac_stacktrace"  echo "  Debugger stack-trace (gdb) . . . . . . . . . . . .: $ac_stacktrace"

Legend:
Removed from v.3523  
changed lines
  Added in v.3820

  ViewVC Help
Powered by ViewVC