Hi, "make modules" in master branch gives me this error:
dbcassa_base.cpp:35:34: error fatal: boost/lexical_cast.hpp not found
Since I don't know which exact boos-dev library I need, I've installed libboost1.46-all-dev (Debian/Ubuntu package) but this requires downloading 32 MB's in different boost-xxxx-dev packages!).
After that I get this new error:
dbcassa_base.cpp:36:38: error fatal: protocol/TBinaryProtocol.h
Now I'm lost. What must I install?
BTW: should these development libraries existence be checked before compiling?
On Tue, Feb 28, 2012 at 12:06 PM, Iñaki Baz Castillo ibc@aliax.net wrote:
Hi, "make modules" in master branch gives me this error:
dbcassa_base.cpp:35:34: error fatal: boost/lexical_cast.hpp not found
Since I don't know which exact boos-dev library I need, I've installed libboost1.46-all-dev (Debian/Ubuntu package) but this requires downloading 32 MB's in different boost-xxxx-dev packages!).
After that I get this new error:
dbcassa_base.cpp:36:38: error fatal: protocol/TBinaryProtocol.h
Now I'm lost. What must I install?
BTW: should these development libraries existence be checked before compiling?
What's missing here is configure :) http://en.wikipedia.org/wiki/Configure_script
Regards, Ovidiu Sas
2012/2/28 Ovidiu Sas osas@voipembedded.com:
What's missing here is configure :)
Right :)
2012/2/28 Iñaki Baz Castillo ibc@aliax.net:
2012/2/28 Ovidiu Sas osas@voipembedded.com:
What's missing here is configure :)
Right :)
Well, it's hard to define a "configure" since some modules are optional so the check would be so strict (why do I need Cassandra development libraries when I will not install Cassandra module?) :)
On Tue, Feb 28, 2012 at 12:39 PM, Iñaki Baz Castillo ibc@aliax.net wrote:
2012/2/28 Iñaki Baz Castillo ibc@aliax.net:
2012/2/28 Ovidiu Sas osas@voipembedded.com:
What's missing here is configure :)
Right :)
Well, it's hard to define a "configure" since some modules are optional so the check would be so strict (why do I need Cassandra development libraries when I will not install Cassandra module?) :)
Configure has options, so you can specify if you want to force or skip some dependencies. With no options, it should detect what's available and build only modules that can be built.
Regards, Ovidiu Sas
2012/2/28 Ovidiu Sas osas@voipembedded.com:
Well, it's hard to define a "configure" since some modules are optional so the check would be so strict (why do I need Cassandra development libraries when I will not install Cassandra module?) :)
Configure has options, so you can specify if you want to force or skip some dependencies. With no options, it should detect what's available and build only modules that can be built.
Thanks, so that would be desirable.