/[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 3434 by capela, Thu Nov 8 08:02:37 2018 UTC revision 3873 by capela, Thu Apr 15 13:28:01 2021 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.3, rncbc@rncbc.org, qsampler)  AC_INIT(Qsampler, 0.9.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 9  AC_CONFIG_FILES(Makefile qsampler.spec s Line 9  AC_CONFIG_FILES(Makefile qsampler.spec s
9  AC_CACHE_VAL([ac_cv_build_version], [  AC_CACHE_VAL([ac_cv_build_version], [
10     ac_cv_build_version=$(git describe --tags --dirty --abbrev=6 2>/dev/null)     ac_cv_build_version=$(git describe --tags --dirty --abbrev=6 2>/dev/null)
11     if test -n "$ac_cv_build_version"; then     if test -n "$ac_cv_build_version"; then
12        ac_cv_build_version=$(echo $ac_cv_build_version | sed 's/^[[^_]]*[[_v]]//i')        ac_cv_build_version=$(echo $ac_cv_build_version | sed 's/^[[^0-9]]\+//')
13          ac_cv_build_version=$(echo $ac_cv_build_version | sed 's/^1_//')
14          ac_cv_build_version=$(echo $ac_cv_build_version | sed 's/^[[_vV]]\+//')
15        ac_cv_build_version=$(echo $ac_cv_build_version | sed 's/-g/git./')        ac_cv_build_version=$(echo $ac_cv_build_version | sed 's/-g/git./')
16        ac_cv_build_version=$(echo $ac_cv_build_version | sed 's/[[_|-]]\+/./g')        ac_cv_build_version=$(echo $ac_cv_build_version | sed 's/[[_|-]]/./g')
17        ac_cv_build_version_extra=$(git rev-parse --abbrev-ref HEAD 2>/dev/null)        ac_cv_build_version_extra=$(git rev-parse --abbrev-ref HEAD 2>/dev/null)
18        if test "x$ac_cv_build_version_extra" != "xmaster"; then        if test "x$ac_cv_build_version_extra" != "xmaster"; then
19           ac_cv_build_version="$ac_cv_build_version [[$ac_cv_build_version_extra]]"           ac_cv_build_version="$ac_cv_build_version [[$ac_cv_build_version_extra]]"
# Line 67  AC_ARG_ENABLE(debug, Line 69  AC_ARG_ENABLE(debug,
69    AS_HELP_STRING([--enable-debug], [enable debugging (default=no)]),    AS_HELP_STRING([--enable-debug], [enable debugging (default=no)]),
70    [ac_debug="$enableval"])    [ac_debug="$enableval"])
71    
72    # Enable Qt6 build preference.
73    AC_ARG_ENABLE(qt6,
74      AS_HELP_STRING([--enable-qt6], [enable Qt6 build (default=no)]),
75      [ac_qt6="$enableval"],
76      [ac_qt6="no"])
77    
78    
79  if test "x$ac_debug" = "xyes"; then  if test "x$ac_debug" = "xyes"; then
80     AC_DEFINE(CONFIG_DEBUG, 1, [Define if debugging is enabled.])     AC_DEFINE(CONFIG_DEBUG, 1, [Define if debugging is enabled.])
81     ac_stacktrace="yes"     ac_stacktrace="yes"
# Line 84  AC_ARG_ENABLE(libgig, Line 93  AC_ARG_ENABLE(libgig,
93    [ac_libgig="$enableval"],    [ac_libgig="$enableval"],
94    [ac_libgig="yes"])    [ac_libgig="yes"])
95    
96  # Enable X11 unique/single instance.  # Enable unique/single instance.
97  AC_ARG_ENABLE(xunique,  AC_ARG_ENABLE(xunique,
98    AS_HELP_STRING([--enable-xunique], [enable X11 unique/single instance (default=yes)]),    AS_HELP_STRING([--enable-xunique], [enable unique/single instance (default=yes)]),
99    [ac_xunique="$enableval"],    [ac_xunique="$enableval"],
100    [ac_xunique="yes"])    [ac_xunique="yes"])
101    
# Line 98  AC_ARG_ENABLE(stacktrace, Line 107  AC_ARG_ENABLE(stacktrace,
107    
108  # Standard installation base dirs.  # Standard installation base dirs.
109  ac_path=$PATH  ac_path=$PATH
110    ac_pkg_config_path=$PKG_CONFIG_PATH
111  ac_with_paths=""  ac_with_paths=""
112    
113  # Set for alternate Qt installation dir.  # Set for alternate Qt installation dir.
# Line 107  AC_ARG_WITH(qt, Line 117  AC_ARG_WITH(qt,
117    
118  if test "x$ac_qt_path" != "xno"; then  if test "x$ac_qt_path" != "xno"; then
119     ac_path="$ac_qt_path/bin:$ac_path"     ac_path="$ac_qt_path/bin:$ac_path"
120       ac_pkg_config_path="$ac_qt_path/lib/pkgconfig:$ac_pkg_config_path"
121  fi  fi
122    
123  # Set for alternate liblscp installation dir.  # Set for alternate liblscp installation dir.
# Line 147  AC_CACHE_CHECK([for g++ major version], Line 158  AC_CACHE_CHECK([for g++ major version],
158  ac_gxx_version_major=$ac_cv_gxx_version_major  ac_gxx_version_major=$ac_cv_gxx_version_major
159  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
160     CXXFLAGS="-std=c++11 $CXXFLAGS"     CXXFLAGS="-std=c++11 $CXXFLAGS"
161       ac_cflags="-std=c++11 $ac_cflags"
162    elif test $ac_gxx_version_major -ge 6 -a $ac_gxx_version_major -lt 11; then
163       CXXFLAGS="-std=c++17 $CXXFLAGS"
164       ac_cflags="-std=c++17 $ac_cflags"
165  fi  fi
166    
167  # Check for proper flags.  # Check for proper flags.
# Line 176  for X in $ac_with_paths; do Line 191  for X in $ac_with_paths; do
191       if test -d $X/$Y; then       if test -d $X/$Y; then
192          LIBS="-L$X/$Y $LIBS"          LIBS="-L$X/$Y $LIBS"
193          ac_libs="-L$X/$Y $ac_libs"          ac_libs="-L$X/$Y $ac_libs"
194            if test -d $X/$Y/pkgconfig; then
195               ac_pkg_config_path="$X/$Y/pkgconfig:$ac_pkg_config_path"
196            fi
197       fi       fi
198    done    done
199  done  done
200    
201    # Set pkg-config path.
202    if test -n "$ac_pkg_config_path"; then
203       export PKG_CONFIG_PATH=$ac_pkg_config_path
204    fi
205    
206    
207  # A common error message:  # A common error message:
208  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."
209    
210    # Check for qtchooser availability.
211    AC_PATH_TOOL(ac_qtchooser, qtchooser, [no], $ac_path)
212    if test -x $ac_qtchooser; then
213       if test "x$ac_qt6" = "xyes"; then
214          export QT_SELECT=6
215       else
216          export QT_SELECT=5
217       fi
218    fi
219    
220  # Check for proper qmake path/version alternatives.  # Check for proper qmake path/version alternatives.
221  AC_PATH_TOOL(ac_qmake, qmake, [no], $ac_path)  AC_PATH_TOOL(ac_qmake, qmake, [no], $ac_path)
222  if test "x$ac_qmake" = "xno"; then  if test "x$ac_qmake" = "xno"; then
223     AC_PATH_TOOL(ac_cv_qmake, qmake-qt5, [no], $ac_path)     if test "x$ac_qt6" = "xyes"; then
224     ac_qmake=$ac_cv_qmake        AC_PATH_TOOL(ac_cv_qmake, qmake-qt6, [no], $ac_path)
225          ac_qmake=$ac_cv_qmake
226       else
227          AC_PATH_TOOL(ac_cv_qmake, qmake-qt5, [no], $ac_path)
228          ac_qmake=$ac_cv_qmake
229       fi
230  fi  fi
231    
232  # Check for proper Qt major version.  # Check for proper Qt major version.
233  AC_CACHE_CHECK([for Qt major version], [ac_cv_qt_version_major], [  AC_CACHE_CHECK([for Qt major version], [ac_cv_qt_version_major], [
234     ac_cv_qt_version_major=$($ac_qmake -query QT_VERSION | cut -d'.' -f1)     ac_cv_qt_version=$($ac_qmake -query QT_VERSION)
235       ac_cv_qt_version_major=$(echo $ac_cv_qt_version | cut -d'.' -f1)
236     ac_cv_qt_version_major=$(($ac_cv_qt_version_major + 0))     ac_cv_qt_version_major=$(($ac_cv_qt_version_major + 0))
237  ])  ])
238    ac_qt_version=$ac_cv_qt_version
239  ac_qt_version_major=$ac_cv_qt_version_major  ac_qt_version_major=$ac_cv_qt_version_major
 if test $ac_qt_version_major -ne 5; then  
         AC_PATH_TOOL(ac_cv_qmake, qmake-qt5, [no], $ac_path)  
         ac_qmake=$ac_cv_qmake  
 fi  
   
240  if test "x$ac_qmake" = "xno"; then  if test "x$ac_qmake" = "xno"; then
241     AC_MSG_ERROR([qmake-qt5 $ac_errmsg (qt5-devel)])     if test $ac_qt_version_major -lt 6; then
242          AC_MSG_ERROR([qmake-qt5 $ac_errmsg (qt5-devel)])
243       else
244          AC_MSG_ERROR([qmake-qt6 $ac_errmsg (qt6-devel)])
245       fi
246  fi  fi
247    
248  # Check for proper Qt install path.  # Check for proper Qt install path.
# Line 269  if test "x$ac_uic" = "xno"; then Line 309  if test "x$ac_uic" = "xno"; then
309  fi  fi
310  AC_SUBST(ac_uic)  AC_SUBST(ac_uic)
311    
312    
313  # Check for Qt lupdate utility.  # Check for Qt lupdate utility.
314  AC_PATH_TOOL(ac_lupdate, lupdate, [no], $ac_path)  AC_PATH_TOOL(ac_lupdate, lupdate, [no], $ac_path)
315  if test "x$ac_lupdate" = "xno"; then  if test "x$ac_lupdate" = "xno"; then
316     AC_MSG_ERROR([lupdate $ac_errmsg])     if test $ac_qt_version_major -lt 6; then
317          AC_PATH_TOOL(ac_cv_lupdate, lupdate-qt5, [no], $ac_path)
318       else
319          AC_PATH_TOOL(ac_cv_lupdate, lupdate-qt6, [no], $ac_path)
320       fi
321       if test "x$ac_cv_lupdate" = "xno"; then
322          if test $ac_qt_version_major -lt 6; then
323             AC_MSG_ERROR([lupdate $ac_errmsg (qt5-linguist)])
324          else
325             AC_MSG_ERROR([lupdate $ac_errmsg (qt6-linguist)])
326          fi
327       else
328          ac_lupdate=$ac_cv_lupdate;
329       fi
330  fi  fi
331  AC_SUBST(ac_lupdate)  AC_SUBST(ac_lupdate)
332    
333  # Check for Qt lrelease utility.  # Check for Qt lrelease utility.
334  AC_PATH_TOOL(ac_lrelease, lrelease, [no], $ac_path)  AC_PATH_TOOL(ac_lrelease, lrelease, [no], $ac_path)
335  if test "x$ac_release" = "xno"; then  if test "x$ac_lrelease" = "xno"; then
336     AC_MSG_ERROR([lrelease $ac_errmsg])     if test $ac_qt_version_major -lt 6; then
337          AC_PATH_TOOL(ac_cv_lrelease, lrelease-qt5, [no], $ac_path)
338       else
339          AC_PATH_TOOL(ac_cv_lrelease, lrelease-qt6, [no], $ac_path)
340       fi
341       if test "x$ac_cv_lrelease" = "xno"; then
342          if test $ac_qt_version_major -lt 6; then
343             AC_MSG_ERROR([lrelease $ac_errmsg (qt5-linguist)])
344          else
345             AC_MSG_ERROR([lrelease $ac_errmsg (qt6-linguist)])
346          fi
347       else
348          ac_lrelease=$ac_cv_lrelease;
349       fi
350  fi  fi
351  AC_SUBST(ac_lrelease)  AC_SUBST(ac_lrelease)
352    
# Line 428  if test "x$ac_max_voices" = "xyes"; then Line 495  if test "x$ac_max_voices" = "xyes"; then
495    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.])
496  fi  fi
497    
498    AC_CHECK_LIB(lscp, lscp_client_connection_lost, [ac_lscp_conn_lost="yes"], [ac_lscp_conn_lost="no"])
499    if test "x$ac_lscp_conn_lost" = "xyes"; then
500      AC_DEFINE(CONFIG_LSCP_CLIENT_CONNECTION_LOST, 1, [Define if liblscp function lscp_client_connection_lost() is available.])
501    fi
502    
503  # Check for optional libraries.  # Check for optional libraries.
504  if test "x$ac_libgig" = "xyes"; then  if test "x$ac_libgig" = "xyes"; then
505     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 464  if test "x$ac_libgig" = "xyes"; then Line 536  if test "x$ac_libgig" = "xyes"; then
536     fi     fi
537  fi  fi
538    
539  # Check for X11 unique/single instance.  # Check for unique/single instance support.
540  if test "x$ac_xunique" = "xyes"; then  if test "x$ac_xunique" = "xyes"; then
541     PKG_CHECK_MODULES([QT5X11EXTRAS], [Qt5X11Extras], [ac_xunique="yes"], [ac_xunique="no"])     if test $ac_qt_version_major -lt 6; then
542          PKG_CHECK_MODULES([QT5NETWORK], [Qt5Network], [ac_xunique="yes"], [ac_xunique="no"])
543       else
544          PKG_CHECK_MODULES([QT6NETWORK], [Qt6Network], [ac_xunique="yes"], [ac_xunique="no"])
545       fi
546  fi  fi
547  if test "x$ac_xunique" = "xyes"; then  if test "x$ac_xunique" = "xyes"; then
548     AC_DEFINE(CONFIG_XUNIQUE, 1, [Define if X11 unique/single instance is enabled.])     AC_DEFINE(CONFIG_XUNIQUE, 1, [Define if unique/single instance is enabled.])
549     ac_qx11extras="x11extras"     ac_qnetwork="network"
    # Some recent distros (eg. fedora, debian) require this.  
    if test "x$ac_cv_lib_X11_main" = "xyes"; then  
       ac_libs="$ac_libs -lX11"  
    fi  
550  fi  fi
551  AC_SUBST(ac_qx11extras)  AC_SUBST(ac_qnetwork)
552    
553  # Check for debugging stack-trace.  # Check for debugging stack-trace.
554  if test "x$ac_stacktrace" = "xyes"; then  if test "x$ac_stacktrace" = "xyes"; then
# Line 503  AC_OUTPUT Line 575  AC_OUTPUT
575  # Output summary message  # Output summary message
576    
577  echo  echo
578  echo "  $PACKAGE_NAME $ac_build_version"  echo "  $PACKAGE_NAME $ac_build_version (Qt $ac_qt_version)"
579  echo  echo
580  echo "  Build target . . . . . . . . . . . . . . . . . . .: $ac_debug"  echo "  Build target . . . . . . . . . . . . . . . . . . .: $ac_debug"
581  echo  echo
# Line 524  fi Line 596  fi
596  echo "  LSCP channel MIDI event support  . . . . . . . . .: $ac_channel_midi_event"  echo "  LSCP channel MIDI event support  . . . . . . . . .: $ac_channel_midi_event"
597  echo "  LSCP device MIDI event support . . . . . . . . . .: $ac_device_midi_event"  echo "  LSCP device MIDI event support . . . . . . . . . .: $ac_device_midi_event"
598  echo "  LSCP runtime max. voices / disk streams support  .: $ac_max_voices"  echo "  LSCP runtime max. voices / disk streams support  .: $ac_max_voices"
599    echo "  LSCP connection loss support . . . . . . . . . . .: $ac_lscp_conn_lost"
600  echo  echo
601  echo "  X11 Unique/Single instance . . . . . . . . . . . .: $ac_xunique"  echo "  Unique/Single instance support . . . . . . . . . .: $ac_xunique"
602  echo "  Debugger stack-trace (gdb) . . . . . . . . . . . .: $ac_stacktrace"  echo "  Debugger stack-trace (gdb) . . . . . . . . . . . .: $ac_stacktrace"
603  echo  echo
604  echo "  Install prefix . . . . . . . . . . . . . . . . . .: $ac_prefix"  echo "  Install prefix . . . . . . . . . . . . . . . . . .: $ac_prefix"

Legend:
Removed from v.3434  
changed lines
  Added in v.3873

  ViewVC Help
Powered by ViewVC