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 89635 - libgnomevfs requires bind_textdomain_codeset
libgnomevfs requires bind_textdomain_codeset
Status: RESOLVED WONTFIX
Product: gnome-vfs
Classification: Deprecated
Component: Build
2.0.x
Other Linux
: Normal major
: ---
Assigned To: gnome-vfs maintainers
gnome-vfs maintainers
Depends on:
Blocks:
 
 
Reported: 2002-08-01 19:18 UTC by Erik Demaine
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
one liner which checks if bind_textdomain_codeset exists (591 bytes, patch)
2003-01-18 11:43 UTC, Christophe Fergeau
none Details | Review

Description Erik Demaine 2002-08-01 19:18:04 UTC
When making gnome-vfs-2.0.1, I got an error "reference to libgnomevfs not
resolved" while linking.  In contrast, e.g. GConf checks whether this
function is available at configure, and doesn't call it when it isn't
there.  Commenting out the offending line (gnome-vfs-init.c:85) seems to be
a temporary fix; presumably the permanent fix is to add the check to
configure.
Comment 1 Luis Villa 2002-08-07 19:44:19 UTC
Seth?
Comment 2 Christophe Fergeau 2003-01-18 11:43:55 UTC
Created attachment 13661 [details] [review]
one liner which checks if bind_textdomain_codeset exists
Comment 3 Christophe Fergeau 2003-01-18 11:47:19 UTC
It seems that "something" in gnome already detects if
bind_textdomain_codeset exists or not (gconf doesn't have a specific
check for it in its configure, and gnome-vfs already had a
HAVE_BIND_TEXT_DOMAIN_CODESET define), so this patch only checks if
this is defined or not.
Still, I'm not sure that GNOME supports platform where
bind_textdomain_codeset doesn't exits (weird things will happen when
trying to display translated content imo)
Comment 4 Christophe Fergeau 2003-01-20 09:28:09 UTC
I was told that it is possible to pass some configure flags to build
some stuff containing bind_textdomain_codeset on platforms without it
(?). 
Comment 5 Christophe Fergeau 2003-04-14 10:01:35 UTC
This function is provided by GNU Gettext, and according to
http://mail.gnome.org/archives/gtk-devel-list/2003-April/msg00066.html
we can assume it is available. I'm not sure i18n will work at all if
this bind_textdomain_codeset call isn't here