In file postgresql-7.4/src/interfaces/ecpg/ecpglib/misc.c, this version
of FreeBSD has no definition of LONG_LONG_MIN, although it does
support an int64_t integral type. Compilation was successful after
inserting
a definition immediately following the block of included files:
/* XXX */
#define L
As previously reported for PostgreSQL v7.4, the ecpg module does not compile
as-is due to the absence of a definition for LONG_LONG_MIN or any of the
specified alternatives. Compilation is sucessful if a definition is
added to the
misc.c file prior to the LONG_LONG_MIN feature test macros. Later