I'm having trouble getting my ppremake to use Config.pp to recognize various libs I've installed from Debian's package libraries. Anybody out there willing to share their Config.pp?
Here's the one I use for 32-bit Ubuntu. It should at least give you a starting point.
Note that makepanda does do a better job at finding this stuff out automatically, and may be a better choice for the simple task of building Panda. ppremake is usually a better choice for hardcore Panda developers who are likely to be mucking around in individual source directories a lot, and prefer to use a less-monolithic build system using Makefiles.
// Necessary for 64-bits, not sure if it still is though #define C++FLAGS -fPIC
#define HAVE_THREADS 1
And then I just run "ppremake" in the dtool directory, look at the list of libraries, and add the _IPATH and _LPATH for the ones I want to my Config.pp, until it finds every library I want to build with support for.