pgsql: Hide a static inline from FRONTEND code.

2018-09-10 Thread Tom Lane
Hide a static inline from FRONTEND code. For some reason pg_waldump is including tuptable.h, and the recent addition of a static inline function to it is causing problems on older buildfarm members that fail to optimize such functions away completely. I wonder if this situation doesn't mean that

pgsql: Use -Bsymbolic for shared libraries on HP-UX and Solaris.

2018-09-10 Thread Tom Lane
Use -Bsymbolic for shared libraries on HP-UX and Solaris. These platforms are also subject to the mis-linking problem addressed in commit e3d77ea6b. It's not clear whether we could solve it with a solution equivalent to GNU ld's version scripts, but -Bsymbolic appears to fix it, so let's use that

pgsql: Use -Bsymbolic for shared libraries on HP-UX and Solaris.

2018-09-10 Thread Tom Lane
Use -Bsymbolic for shared libraries on HP-UX and Solaris. These platforms are also subject to the mis-linking problem addressed in commit e3d77ea6b. It's not clear whether we could solve it with a solution equivalent to GNU ld's version scripts, but -Bsymbolic appears to fix it, so let's use that

pgsql: Use -Bsymbolic for shared libraries on HP-UX and Solaris.

2018-09-10 Thread Tom Lane
Use -Bsymbolic for shared libraries on HP-UX and Solaris. These platforms are also subject to the mis-linking problem addressed in commit e3d77ea6b. It's not clear whether we could solve it with a solution equivalent to GNU ld's version scripts, but -Bsymbolic appears to fix it, so let's use that