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 common.o common.c > In file included from common.c:85: > fallback.c: In function 'tputs': > fallback.c:58: warning: control reaches end of non-void function > 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 screen.o screen.c > 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 path.o path.c > 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 main.o main.c > gcc function.o builtin.o complete.o env.o exec.o expand.o highlight.o > history.o kill.o parser.o proc.o reader.o sanity.o tokenizer.o > wildcard.o wgetopt.o wutil.o input.o output.o intern.o > env_universal.o env_universal_common.o input_common.o event.o > signal.o io.o parse_util.o common.o screen.o path.o main.o -lncurses - > lintl -L/opt/local/lib/ -R/opt/local/lib/ -o fish > powerpc-apple-darwin8-gcc-4.0.0: unrecognized option `-R/opt/local/lib/' > /usr/bin/ld: warning multiple definitions of symbol _tputs > common.o definition of _tputs in section (__TEXT,__text) > /opt/local/lib//libncurses.dylib(lib_tputs.o) definition of _tputs > /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? > collect2: ld returned 1 exit status > make: *** [fish] Error 1 > > > :--( > > Jason > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Fish-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/fish-users > -- Axel ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Fish-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/fish-users
