On Thu, 24 May 2012, David Coppa wrote: > On Thu, May 17, 2012 at 1:17 AM, Edd Barrett <vex...@gmail.com> wrote: > > > Needs more work? > > > > ---8<--- > > ... > > checking for GNU gettext in libc... no > > checking for GNU gettext in libintl... yes > > checking whether to use NLS... yes > > checking where the gettext function comes from... external libintl > > checking how to link with libintl... /usr/local/lib/libintl.so.6.0 > > /usr/local/lib/libiconv.so.6.0 > > checking for pkg-config... /usr/bin/pkg-config > > checking pkg-config is at least version 0.9.0... yes > > ./configure[22081]: syntax error: `0.40.0' unexpected > > *** Error code 1 > > > > Stop in /usr/ports/mystuff/audio/deadbeef (line 2435 of > > /usr/ports/infrastructure/mk/bsd.port.mk). > > ---8<--- > > Alexandr, > > This is because you forgot to add "textproc/intltool" to MODULES. > > With this in place, you have my ok to import it: nice, minimalist player...
Another thing I've found: $ cat patches/patch-conf_c $OpenBSD$ Fix "pthread_mutex_destroy on mutex with waiters!" --- conf.c.orig Thu May 31 13:42:20 2012 +++ conf.c Thu May 31 13:43:02 2012 @@ -54,6 +54,7 @@ conf_free (void) { } conf_items = NULL; changed = 0; + mutex_unlock (mutex); mutex_free (mutex); mutex = 0; }