aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-06-08 02:01:11 -0700
committerChris Robinson <[email protected]>2010-06-08 02:01:11 -0700
commitf9e569099cffbf7ea2951ef96b837a2e0bb7afe6 (patch)
tree02f7ce6bbf2b452c6b7d91e6da553a86ed56ad39 /Alc/ALc.c
parent6fd6e4eacfc25d775368e7f2ba193cb69b48df89 (diff)
Make the Wave Writer backend optional
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index a1aca654..df496995 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -71,7 +71,9 @@ static BackendInfo BackendList[] = {
#endif
{ "null", alc_null_init, alc_null_deinit, alc_null_probe, EmptyFuncs },
+#ifdef HAVE_WAVE
{ "wave", alc_wave_init, alc_wave_deinit, alc_wave_probe, EmptyFuncs },
+#endif
{ NULL, NULL, NULL, NULL, EmptyFuncs }
};