Hello;
I'm still working on the FreeBSD port I wrote about a few days ago.
I think the last main hurdle is to get the gettext catalog files to
install in /usr/local/share/locale/ instead of the default
/usr/local/lib/locale/ (when configure is run with no arguments).
Even when I run:
./configur
A bit more information from my earlier post below...
The relevant parts of the author's configure.in seem to be:
#
GETTEXT_PACKAGE=parcellite
AC_SUBST(GETTEXT_PACKAGE)
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [gettext package])
ALL_LINGUAS="de es hu ja pt_BR sv"
AM_GLIB_GNU_GE
Problem solved.. sort of. In case anyone else runs into this problem,
see: http://bugzilla.gnome.org/show_bug.cgi?id=563034
Joey
On Tue, May 5, 2009 at 17:22, Joey Mingrone wrote:
> A bit more information from my earlier post below...
>
> The relevant parts of the author's configure.in seem to