After using the Angstrom package manager to install a few dependencies (boost-dev, openssl-dev, and db-dev) I ran into the following error....
/usr/include/db_cxx.h File iostream.h not found.
Now I drilled into the db_cxx.h file to see a comment "C++ assumptions. To ensure comparability with many platforms..." which seemed scary. Then I noticed an else switch with an include of
My question is should the makefile.unix file be passing something along to the compiler so it can handle this db_cxx.h library correctly? Or am I missing something when invoking make -f makefile.unix? Should I be defining something manually?
Thanks much,
A.J.