Commit Briefs


Omar Polo

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



Omar Polo

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.


Omar Polo

bump version


Omar Polo

bump version



Omar Polo

add an audio implementation for ALSA

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


Omar Polo

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.


Omar Polo

bump version


Omar Polo

add DISTNAME variable

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


Omar Polo

include contrib/ in the tarball


Omar Polo

clead .d files too


Omar Polo

use (a modified version of) kristaps' oconfigure

see GitHub issue #1


Omar Polo

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.