configure.ac: detect jack_set_info_function()
jack_set_info_function() is not provided by older libjack versions. Attempt to detect if it is available.
This commit is contained in:
10
configure.ac
10
configure.ac
@@ -620,6 +620,16 @@ if test x$enable_jack = xyes; then
|
||||
[enable_jack=no;AC_MSG_WARN([JACK not found -- disabling])])
|
||||
fi
|
||||
|
||||
if test x$enable_jack = xyes; then
|
||||
# check whether jack_set_info_function() is available
|
||||
old_LIBS=$LIBS
|
||||
LIBS="$LIBS $JACK_LIBS"
|
||||
|
||||
AC_CHECK_FUNCS(jack_set_info_function)
|
||||
|
||||
LIBS=$old_LIBS
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(HAVE_JACK, test x$enable_jack = xyes)
|
||||
|
||||
if test x$enable_id3 = xyes; then
|
||||
|
Reference in New Issue
Block a user