On 03/29/2010 05:57 AM, Holger Weiß wrote: > On IRIX, "-liconv" must be added to the linker command line in order to > get iconv(3) support; set the according Makefile variable appropriately. This breaks compilation on IRIX 6.5.29m for me since there is no separate libiconv.so. What version of IRIX are you using? On my system, even the iconv utility doesn't link against a libiconv shared object. It seems the iconv functionality is in libc. # ldd /usr/bin/iconv libc.so.1 => /usr/lib32/libc.so.1 Could it be that you are using a third party iconv library? I've experienced this on another system and the problem was related to curl. In that case, curl was linked against an external iconv and not the native library, so if I tried to build with curl support, I had to also build against the external iconv library. -brandon > Signed-off-by: Holger Weiß <holger@xxxxxxxxxxxxxxxxxx> > --- > Makefile | 2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/Makefile b/Makefile > index 3a6c6ea..8a0f5c4 100644 > --- a/Makefile > +++ b/Makefile > @@ -919,6 +919,7 @@ ifeq ($(uname_S),IRIX) > SNPRINTF_RETURNS_BOGUS = YesPlease > SHELL_PATH = /usr/gnu/bin/bash > NEEDS_LIBGEN = YesPlease > + NEEDS_LIBICONV = YesPlease > endif > ifeq ($(uname_S),IRIX64) > NO_SETENV=YesPlease > @@ -937,6 +938,7 @@ ifeq ($(uname_S),IRIX64) > SNPRINTF_RETURNS_BOGUS = YesPlease > SHELL_PATH=/usr/gnu/bin/bash > NEEDS_LIBGEN = YesPlease > + NEEDS_LIBICONV = YesPlease > endif > ifeq ($(uname_S),HP-UX) > NO_IPV6=YesPlease -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html