What are the steps to explicitly specify Postgres installation during PHP5-CLI setup?

When setting up PHP5-CLI, you may need to explicitly specify the Postgres installation in order to ensure that PHP can communicate with the Postgres database. This can be done by including the `--with-pgsql` flag when configuring PHP during installation.

./configure --with-pgsql
make
make install