Where possible code against the system/distro provided libraries.   This makes it easiest to ship a product on that distro.  

However, if you are building a commercial application, because there are so many flavors of Linux distros that can mean you have to maintain a plethora of different application builds for each distro.  Which isn't necessarily a bad thing as it means you can more cleanly integrate with the distro's package management system.

But in the case where you can't do that it should be fairly easy to download the source of each 3rd party dependency you have and integrate the building of that dependency into a static lib that is linked to your executable.  That way you know exactly what you're linking against but has the downside of bloating out your executable size.  This can also be required if you need a specific library (or version) not provided by the distro.

If you want your code to build on as broad a variety of different Unix systems then you're probably wise looking into GNU [autoconf][1] and [automake][2].  These help you construct a `configure` script and `makefile` for your project so that it will build on practically any Unix system.

Also look into [pkg-config][3] which is used quite a bit now on Linux distributions for helping you include and link to the right libraries (for libs that support pkg-config).

  [1]: http://www.gnu.org/software/autoconf/
  [2]: http://www.gnu.org/software/automake/
  [3]: http://pkg-config.freedesktop.org/wiki/