Salman wrote: > Hello, > > I've been trying for the past few days to install fink on a new leopard > install. > However, the make keeps dying due to some sort of unresolved dependency issue. > > g++ -g -O2 -o gperf version.o positions.o options.o keyword.o keyword-list.o > input.o bool-array.o hash-table.o search.o output.o main.o ../lib/libgp.a -lm > Undefined symbols: > "_strtod$UNIX2003", referenced from: > Options::parse_options(int, char**)in options.o > Options::parse_options(int, char**)in options.o > ld: symbol(s) not found > > I have already checked to see if there's a duplicate libSystem.dylib > or libm.dylib in usr/loca/lib -- there aren't.
OK, so look at your /usr/lib/libm.dylib. What do you get from nm /usr/lib/libm.dylib |grep strtod ? You should see among others a line like 000cb771 T _strtod$UNIX2003 which means that this symbol is defined in that library. -- Martin ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ Fink-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/fink-users
