After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 304122 - fix for config file
fix for config file
Status: RESOLVED NOTABUG
Product: GStreamer
Classification: Platform
Component: gstreamer (core)
git master
Other All
: Normal normal
: NONE
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks: 304126
 
 
Reported: 2005-05-13 22:11 UTC by Brian Cameron
Modified: 2005-08-29 15:11 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Brian Cameron 2005-05-13 22:11:54 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)
Comment 1 Thomas Vander Stichele 2005-06-09 19:16:33 UTC
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 ?
Comment 2 Thomas Vander Stichele 2005-08-26 00:14:35 UTC
brian, ping
Comment 3 Brian Cameron 2005-08-26 05:24:22 UTC
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.
Comment 4 Thomas Vander Stichele 2005-08-29 15:11:14 UTC
ok, thanks !