'make' results in error. (fixed, see below)
gcc -Wall -O2 -o scream-alsa scream-alsa.c -lasound scream-alsa.c:4:10: fatal error: alsa/asoundlib.h: No such file or directory #include <alsa/asoundlib.h> ^~~~~~~~~~~~~~~~~~ compilation terminated. Makefile:5: recipe for target 'scream-alsa' failed make: *** [scream-alsa] Error 1
_____________-
gcc -Wall -o scream-pulse scream-pulse.c -lpulse-simple -lpulse scream-pulse.c:4:10: fatal error: pulse/simple.h: No such file or directory #include <pulse/simple.h> ^~~~~~~~~~~~~~~~ compilation terminated. Makefile:5: recipe for target 'scream-pulse' failed make: *** [scream-pulse] Error 1
EDIT: in order to 'make' you will need the dev pulseaudio (or alsa?) packages.
for ubuntu:
sudo apt install libpulse-dev
Thanks.
This is written up in e.g. https://github.com/duncanthrax/scream/blob/master/Receivers/alsa/README.md for the ALSA receiver, but the root README https://github.com/duncanthrax/scream says that just make would work, which should probably be changed.
That's why i didnt see it then haha. Thanks for your response! :+1: