On 12/8/06, Jason Grossman <[EMAIL PROTECTED]> wrote:
> Hello again.
>
> I used to be able to make fish build by adding -iconv to LDFLAGS in
> the Makefile, but with the latest version I can't even get as far as
> finding a Makefile.  Running configure gives:
>
> > checking for library containing iconv_open... no
> > configure: error: Could not find an iconv implementation, needed to
> > build fish
>
> There's a Makefile.in, but I don't know how to change that
> appropriately.
>
> I have iconv libraries in /usr/lib, by the way.
>
> Thanks for any help.

Could you check /usr/include/iconv.h and see if iconv_open is
implemented as a function or a macro?

If it is a macro, it should look something like

#define iconv_open( to, from ) blah blah blah

if it is a function, it should look more like

iconv_t iconv_open(const char *tocode, const char *fromcode);

If iconv_open is implemented as a macro, could you check what (if any)
iconv call is implemented as a function?

>
> Jason
>
> -------------------------------------------------------------------------
> Take Surveys. Earn Cash. Influence the Future of IT
> Join SourceForge.net's Techsay panel and you'll get the chance to share your
> opinions on IT & business topics through brief surveys - and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> _______________________________________________
> Fish-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/fish-users
>


-- 
Axel

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Fish-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fish-users

Reply via email to