SunOS 5.4 (sparc-sun-solaris) with native Sun compilers:
1) The libpq++ stuff doesn't not compile because there is no <string>
available. But <string> is required by these sources because they need the
"bool" and "string" definitions. So even
#ifdef HAVE_CXX_STRING_HEADER
#include <string>
#endif
doesn't help.
2) The link of pg_dump fails because fe-connect.c calls inet_aton(). There
is no inet_aton() on this platform. Since the problem is not pg_dump but
lippq.so this is a general problem!
3) The postmaster cannot be started:
sun2$ postmaster -i
FATAL: StreamServerPort: setsockopt(SO_REUSEADDR) failed: Protocol error
/usr/local/pgsql/bin/postmaster: cannot create UNIX stream port
Does SunOS not support Unix domain sockets? The same error appears without
the -i option.
Regards,
Andreas Kardos