Re: [Fish-users] Fish 1.22.0 doesn't build on MacOS

2006-11-03 Thread Axel Liljencrantz
On 11/3/06, Jason Grossman [EMAIL PROTECTED] wrote: On 03/11/2006, at 11:54 am, Axel Liljencrantz wrote: /usr/bin/ld: Undefined symbols: _libiconv _libiconv_close _libiconv_open This is the problem. The linker can't find any iconv functions. Does adding '-liconv' to the LDFLAGS

Re: [Fish-users] Fish 1.22.0 doesn't build on MacOS

2006-11-03 Thread Jason Grossman
On 03/11/2006, at 9:35 pm, Axel Liljencrantz wrote: You are most probably still seeing this bug because when you upgraded from the initial broken fish version to the one after that, you forgot to do a 'make uninstall' of the old fish version. You're right. I didn't do make uninstall,

Re: [Fish-users] Fish 1.22.0 doesn't build on MacOS

2006-11-03 Thread Axel Liljencrantz
On 11/3/06, Philip Ganchev [EMAIL PROTECTED] wrote: On 11/3/06, Axel Liljencrantz [EMAIL PROTECTED] wrote: [...] I think that forgetting to do a make uninstall, or even losing the source so you can't do one is pretty common. I've done it myself a few times. :-/ I've added a note to the

Re: [Fish-users] Fish 1.22.0 doesn't build on MacOS

2006-11-02 Thread Axel Liljencrantz
On 11/3/06, Jason Grossman [EMAIL PROTECTED] wrote: ... gcc -I/opt/local/include/ -std=c99 -fno-optimize-sibling-calls -Wall -DLOCALEDIR=\/usr/local/share/locale\ -DPREFIX=L\/usr/local\ - DDATADIR=L\/usr/local/share\ -DSYSCONFDIR=L\/usr/local/etc\ -I/ opt/local/include/ -std=c99 -c -o

Re: [Fish-users] Fish 1.22.0 doesn't build on MacOS

2006-11-02 Thread Jason Grossman
On 03/11/2006, at 11:54 am, Axel Liljencrantz wrote: /usr/bin/ld: Undefined symbols: _libiconv _libiconv_close _libiconv_open This is the problem. The linker can't find any iconv functions. Does adding '-liconv' to the LDFLAGS line of the Makefile fix the problem? Yes. Thanks! Now I