GNOME Bugzilla – Bug 304122
fix for config file
Last modified: 2005-08-29 15:11:14 UTC
gstreamer should use the new mechanism for dealing with gettext. The old mechanism doesn't work on Solaris. The GLIB_GNU_GETTEXT is newer and works better on all platforms. Make the following change to configure.ac. -AM_GNU_GETTEXT_VERSION(0.11.5) -AM_GNU_GETTEXT([external]) +AM_GLIB_GNU_GETTEXT +USE_INCLUDED_LIBINTL=no +AC_SUBST(USE_INCLUDED_LIBINTL) +BUILD_INCLUDED_LIBINTL=no +AC_SUBST(BUILD_INCLUDED_LIBINTL)
we specifically don't use glib-gettext for various reasons. Last time I checked, it still didn't have an autopoint equivalent, which is what we use from autogen.sh maybe you want to explain exactly what doesn't work on solaris ?
brian, ping
Sorry, you are right. This fix is a Solaris-only fix required because the gettext.m4 doesn't work on Solaris, so we have been using the other macro to get around this bug. The right place to fix this is in gettext. I'll take this up with gettext. Sorry for the bother.
ok, thanks !