The following bug has been logged online:
Bug reference: 2072
Logged by: Keith Randall
Email address: randallk@gmail.com
PostgreSQL version: 8.1.0
Operating system: Linux
Description: CPPFLAGS clobbered
Details:
In src/template/linux the
CPPFLAGS="-D_GNU_SOURCE"
overrides command-line CPPFLAGS
I change it to
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
and am back in business.
Keith