cddb fails building (misses autopoint)
At least on osx lion, symptom:
autoreconf: Entering directory `.'
autoreconf: running: autopoint --force
Can't exec "autopoint": No such file or directory at /usr/bin/../share/autoconf/Autom4te/FileUtils.pm line 290.
autoreconf: failed to run autopoint: No such file or directory
make: *** [.cddb] Error 1
So, I guess we need gettext as dependency.
Patch suggestion:
--- a/contrib/src/cddb/rules.mak
+++ b/contrib/src/cddb/rules.mak
@@ -24,7 +24,7 @@ ifdef HAVE_WIN32
endif
$(MOVE)
-DEPS_cddb = regex $(DEPS_regex)
+DEPS_cddb = gettext $(DEPS_gettext) regex $(DEPS_regex)
.cddb: cddb
$(RECONF)
Now, this is not enough. Even if autopoint is now in the vlc_dir/bin dir (hence in the PATH) it's still not found.
Any "clean way" idea?
PS:
git describe
1.2.0-pre3-106-g92bea26