ikiwiki/doc/bugs/Missing_constant_domain_at_...

29 lines
1.4 KiB
Plaintext
Raw Normal View History

I can't build my ikiwiki 1.40 backport for Debian 'sarge':
$ LANG=C dpkg-buildpackage -us -uc -rfakeroot
[...]
./pm_filter /usr 1.40 /usr/share/perl5 <IkiWiki/Plugin/favicon.pm >blib/lib/IkiWiki/Plugin/favicon.pm
./pm_filter /usr 1.40 /usr/share/perl5 <IkiWiki/Plugin/shortcut.pm >blib/lib/IkiWiki/Plugin/shortcut.pm
./pm_filter /usr 1.40 /usr/share/perl5 <IkiWiki/Plugin/aggregate.pm >blib/lib/IkiWiki/Plugin/aggregate.pm
./ikiwiki.in doc html --templatedir=templates --underlaydir=basewiki \
--wikiname="ikiwiki" --verbose --no-rcs \
--exclude=/discussion --no-discussion --userdir=users \
--plugin=goodstuff \
--plugin=haiku --plugin=polygen --plugin=fortune
Missing constant domain at IkiWiki.pm line 842
make[1]: *** [extra_build] Error 22
make[1]: Leaving directory `/home/ptecza/svn/ikiwiki'
make: *** [build-stamp] Error 2
--Pawel
This is because of an old version of Locale::gettext which doesn't
include the OO interface. I had this problem too, but installing a
2007-01-15 19:43:10 +01:00
new version of Locale::gettext fixed it. --Ethan
> I suppose I should document it needing a new enough version. Or find a
> way to use the non-OO version while still getting proper UTF-8 strings,
> which is why I began to use the OO version in the first place..
>
> Looks like the OO interface was added in version 1.04 --[[Joey]]