Skip to content

Commit

Permalink
Merge pull request #40 from zeehio/feat-add-pulseaudio-support
Browse files Browse the repository at this point in the history
Decouple PulseAudio support from ALSA.
  • Loading branch information
lenzo-ka authored Sep 15, 2020
2 parents 7dd30d7 + faef0bf commit 7e8869f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/init.scm
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@
(cond
((member 'nas *modules*)
(Parameter.def 'Audio_Method 'netaudio))
((member 'pulse *modules*)
(Parameter.def 'Audio_Method 'pulseaudio))
((member 'esd *modules*)
(Parameter.def 'Audio_Method 'esdaudio))
((member 'sun16audio *modules*)
Expand Down
2 changes: 2 additions & 0 deletions src/arch/festival/festival.cc
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,8 @@ void festival_lisp_vars(void)
siod_set_lval("*module-descriptions*",NIL);
if (nas_supported)
proclaim_module("nas");
if (pulse_supported)
proclaim_module("pulse");
if (esd_supported)
proclaim_module("esd");
if (sun16_supported)
Expand Down

0 comments on commit 7e8869f

Please sign in to comment.