On 29/09/2009, at 23.45, IOhannes m zmölnig wrote:
IOhannes m zmölnig wrote:
would not. seems you are right at the problematic version :-)
meaning that "you do seem to have a problematic version of autoconf",
Yes, i got it. thanks for investigating, IOhannes!
It gets rid of error, but make still says:
$ make make -C po all make[1]: *** No rule to make target `.msg', needed by `all'. Stop. make: *** [locales] Error 2
According to 'grep' the .msg target is in po/Makefile at line 61. It looks like:
%.msg: %.po msgfmt --check --tcl --locale=$* -d . $*.po
I do have msgfmt installed, see:
$ msgfmt --version msgfmt (GNU gettext-tools) 0.14.5 (snip) $ which msgfmt /sw/bin/msgfmt
But now I see that it should be version 0.17, at the top of po/Makefile:
# this is the only way to get gettext 0.17 with Fink UNAME := $(shell uname -s) ifeq ($(UNAME),Darwin) PATH := /sw/lib/gettext-tools-0.17/bin:${PATH} endif
So i guess i didn't look carefully enough. Im sorry. Im trying this now.