Skip to content

Commit d8442c1

Browse files
committed
Fix error that prevented the libsoundio library from being used at all, duh.
1 parent 8ac45a5 commit d8442c1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

configure.ac

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,8 @@ AM_CONDITIONAL([USE_AO], [test "x$with_ao" = "xyes"])
301301
AC_ARG_WITH(soundio, [AS_HELP_STRING([--with-soundio],[choose soundio API support.])])
302302
if test "x$with_soundio" = "xyes" ; then
303303
AC_DEFINE([CONFIG_SOUNDIO], 1, [Include the SoundIO (libsoundio) backend.])
304-
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)))
304+
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)))
305+
AC_MSG_WARN([The soundio (libsoundio) backend is deprecated and will be removed in a future update.])
305306
fi
306307
AM_CONDITIONAL([USE_SOUNDIO], [test "x$with_soundio" = "xyes"])
307308

0 commit comments

Comments
 (0)