-
- Downloads
From: Tom Lane <tgl@sss.pgh.pa.us>
HP-UX (all versions) requires shared libraries to have execute permission, and really needs them to be exactly mode 555 for performance reasons. The standard configure/install procedure installs libpq.sl as mode 644, which DOES NOT WORK. The attached patch modifies the makefiles to distinguish INSTL_LIB_OPTS (install mode for ordinary libraries) from INSTL_SHLIB_OPTS (mode for shared libs), and adds a test to configure to set INSTL_SHLIB_OPTS="-m 555" when on HP-UX.
Showing
- src/Makefile.global.in 2 additions, 1 deletionsrc/Makefile.global.in
- src/configure 274 additions, 265 deletionssrc/configure
- src/configure.in 10 additions, 1 deletionsrc/configure.in
- src/interfaces/libpgtcl/Makefile.in 9 additions, 2 deletionssrc/interfaces/libpgtcl/Makefile.in
- src/interfaces/libpq/Makefile.in 2 additions, 2 deletionssrc/interfaces/libpq/Makefile.in
Loading
Please register or sign in to comment