Commits


add make target web and install-web to build/install amused-web


tweak the configure - more consistent naming for libs (LDADD_LIB_*) - allow to change CC and CFLAGS as arguments - allow to specify the LDADD_LIB_* as arguments


split out the various LDADD_* so we don't link everything to everything


switch from libevent to a smaller, thin wrapper around poll() libevent is a very cool library, I like its APIs and enjoy using it. However, for amused it is maybe a bit too much since it doesn't deal with too many file descriptors. Amused only needs to monitor one fd for the player process and the currently connected clients. Given that it runs per-user locally, having more than a dozen of fds open is very, very rare.


bump version


bump version


configure: allow to select the audio backend


add an audio implementation for ALSA it still doesn't work correctly, audio is very distorted, but at least there's some sound.


split out sndio-specific parts to audio_sndio.c This hides the libsndio bits behind a small audio_* API for which in the future we may provide multiple implementations.


bump version


add DISTNAME variable like the one from bsd.port.mk, here it's used to decide the name of the tarball.


include contrib/ in the tarball


clead .d files too


use (a modified version of) kristaps' oconfigure see GitHub issue #1


switch from libmad to libmpg123 libmpg123 is more "loud" than libmad, at least for the mp3s that I have around. Is also newer and maintained. I've heard is also faster, but amused is so simple that it doesn't make any difference.