Hi Tiago, On 28 Ιαν 2008, at 9:11 ΜΜ, Tiago de Paula Peixoto wrote:
Try the link with -lbz2 and -lz. You can set LDFLAGS to "-lbz2 -lz" when issuing configure. I don't know why it is trying to link to those libraries directly, since graph_tool uses them only through boost_iostreams, and we're making a dynamic library. I suspect this must be related either to the way things are linked in MacOS X, or maybe how things are installed on your system, I'm not sure. If this works, I'll add "-lbz2 -lz" to graph_tool build by default, since it doesn't really hurt.
This looked better: (cd .libs && rm -f libgraph_tool.la && ln -s ../libgraph_tool.la libgraph_tool.la) Making all in graph_tool make[3]: Nothing to be done for `all'. Making all in . make[3]: Nothing to be done for `all-am'. make[2]: Nothing to be done for `all-am'. But, when I did 'graph-tool --help', here's what I got: File "/opt/local/bin/graph-tool", line 128 return "|".join(metavars) if len(metavars) > 0 else None ^ SyntaxError: invalid syntax Cheers, S.