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
This symbol is defined in libSystem which libm.dylib normally is a symlink of. The error you are getting can happen if you have some other libm.dylib that shadows the system one, for example in /usr/local/lib. The error is still weird, because libSystem is also linked in automatically. You don't have a libSystem.dylib in /usr/local/lib/, do you? -- 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
