You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
859B

  1. diff --git a/configure.ac b/configure.ac
  2. index 2de2f9e..c817753 100644
  3. --- a/configure.ac
  4. +++ b/configure.ac
  5. @@ -95,7 +95,7 @@ AC_CHECK_LIB([pthread],[pthread_mutex_lock],,
  6. AC_MSG_ERROR([Can't find libpthread]))
  7. if test x$jack = xtrue ; then
  8. -AC_CHECK_LIB([jack],[jack_activate],jack_lib_found=true,)
  9. +AC_CHECK_LIB([jack],[jack_activate],,)
  10. fi
  11. if test x$oss = xfalse; then
  12. @@ -119,18 +119,12 @@ AC_OUTPUT
  13. if test x$audio_backend != xOSS; then
  14. audio_backend="ALSA"
  15. fi
  16. -if test x$jack_lib_found = xtrue ; then
  17. - jack_support="Enabled"
  18. -else
  19. - jack_support="Disabled"
  20. -fi
  21. echo ""
  22. echo ""
  23. echo "****************************************"
  24. echo ""
  25. echo "Audio driver that will be used: $audio_backend"
  26. echo ""
  27. -echo "Compile with Jack support: $jack_support"
  28. echo ""
  29. echo "****************************************"
  30. echo ""