From 758648a5a4f9203897a729138ce9803a0856fc48 Mon Sep 17 00:00:00 2001 From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Thu, 28 Nov 2024 14:44:30 +0000 Subject: [PATCH] Deprecate the soundio backend. Nobody seems to use it, and as it stands it can't be much use. It would be nice to be wrong about this. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 149938578..ea371fc69 100644 --- a/configure.ac +++ b/configure.ac @@ -300,8 +300,8 @@ AM_CONDITIONAL([USE_AO], [test "x$with_ao" = "xyes"]) # Look for Soundio flag 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 SoundIO Support.]) - AC_CHECK_LIB([soundio], [soundio_create], , AC_MSG_ERROR(soundio support requires the soundio library -- libsoundio-dev suggested)) + 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))) fi AM_CONDITIONAL([USE_SOUNDIO], [test "x$with_soundio" = "xyes"])