summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Sinclair <radarsat1@gmail.com>2017-08-26 22:57:06 -0300
committerStephen Sinclair <radarsat1@gmail.com>2017-08-26 22:57:10 -0300
commit7ee88e03ee2164168139db026fd1de62633b63d2 (patch)
tree40cf8dc7015af0f17c497fa38685963f81340d3b
parent0a5344b064cdaec8f048c6b10be245807601a147 (diff)
Don't force ALSA when checking for Jack.
-rw-r--r--configure.ac3
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 671b406..4da461c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -135,8 +135,7 @@ case $host in
AS_IF([test "x$with_jack" == "xyes"], [
api="$api -D__UNIX_JACK__"
AC_MSG_RESULT(using JACK)
- AC_CHECK_LIB(jack, jack_client_open, , AC_MSG_ERROR(JACK support requires the jack library!))
- AC_CHECK_LIB(asound, snd_pcm_open, , AC_MSG_ERROR(Jack support also requires the asound library!))])
+ AC_CHECK_LIB(jack, jack_client_open, , AC_MSG_ERROR(JACK support requires the jack library!))])
# Look for ALSA flag
AC_ARG_WITH(alsa, [ --with-alsa = choose native ALSA API support (linux only)])