Hi! In C Driver versions before 1.9.0, you had to install libbson and libmongoc as two separate steps using CMake. Try something like the following:
cd mongo-c-driver-1.6.3\src\libbson
cmake .
make && sudo make install # build and install libbson
cd ../..
cmake .
make && sudo make install # build and install libmongoc
If you don't want to install in the systemwide /usr/local, then try something like:
cd mongo-c-driver-1.6.3\src\libbson
cmake -DCMAKE_PREFIX_PATH=/my/path -DCMAKE_INSTALL_PREFIX=/my/path .
make && sudo make install # build and install libbson
cd ../..
cmake -DCMAKE_PREFIX_PATH=/my/path -DCMAKE_INSTALL_PREFIX=/my/path .
make && sudo make install # build and install libmongoc
Can you tell me why you don't want to use the latest driver?