]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Fix error that prevented the libsoundio library from being used at all, duh.
authorMike Brady <4265913+mikebrady@users.noreply.github.com>
Thu, 28 Nov 2024 15:21:54 +0000 (15:21 +0000)
committerMike Brady <4265913+mikebrady@users.noreply.github.com>
Thu, 28 Nov 2024 15:21:54 +0000 (15:21 +0000)
configure.ac

index ea371fc69044abae259419e4f9dbbfbcfe4ad65b..ffe833940d63e15dfb6c479beed26b01662db2eb 100644 (file)
@@ -301,7 +301,8 @@ AM_CONDITIONAL([USE_AO], [test "x$with_ao" = "xyes"])
 AC_ARG_WITH(soundio, [AS_HELP_STRING([--with-soundio],[choose soundio API support.])])
 if test "x$with_soundio" = "xyes" ; then
   AC_DEFINE([CONFIG_SOUNDIO], 1, [Include the SoundIO (libsoundio) backend.])
-  AC_CHECK_LIB([soundio], [soundio_create], AC_MSG_WARN([The soundio (libsoundio) backend is deprecated and will be removed in a future update.]), AC_MSG_ERROR(soundio support requires the libsoundio library -- libsoundio-dev suggested (note: the soundio backend is deprecated and will be removed in a future update)))
+  AC_CHECK_LIB([soundio], [soundio_create], , AC_MSG_ERROR(soundio support requires the libsoundio library -- libsoundio-dev suggested (note: the soundio backend is deprecated and will be removed in a future update)))
+  AC_MSG_WARN([The soundio (libsoundio) backend is deprecated and will be removed in a future update.])
 fi
 AM_CONDITIONAL([USE_SOUNDIO], [test "x$with_soundio" = "xyes"])