mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-13 02:10:01 -04:00
Merge branch '1011-use-proper-linker-config-on-hp-ux' into 'master'
Resolve "Use proper linker (config) on HP-UX" Closes #1011 See merge request isc-projects/bind9!1940
This commit is contained in:
commit
4157e6ab73
2 changed files with 11 additions and 0 deletions
6
configure
vendored
6
configure
vendored
|
|
@ -20609,6 +20609,12 @@ fi
|
||||||
SO_LDFLAGS="-G -z text"
|
SO_LDFLAGS="-G -z text"
|
||||||
SO_LD="ld"
|
SO_LD="ld"
|
||||||
;; #(
|
;; #(
|
||||||
|
ia64-hp-hpux*) :
|
||||||
|
|
||||||
|
SO_CFLAGS="+z"
|
||||||
|
SO_LDFLAGS="-b"
|
||||||
|
SO_LD="${CC}"
|
||||||
|
;; #(
|
||||||
*) :
|
*) :
|
||||||
|
|
||||||
SO_CFLAGS="-fPIC"
|
SO_CFLAGS="-fPIC"
|
||||||
|
|
|
||||||
|
|
@ -2604,6 +2604,11 @@ AS_IF([test "$with_dlopen" = "yes"],
|
||||||
SO_LDFLAGS="-G -z text"
|
SO_LDFLAGS="-G -z text"
|
||||||
SO_LD="ld"
|
SO_LD="ld"
|
||||||
],
|
],
|
||||||
|
[ia64-hp-hpux*],[
|
||||||
|
SO_CFLAGS="+z"
|
||||||
|
SO_LDFLAGS="-b"
|
||||||
|
SO_LD="${CC}"
|
||||||
|
],
|
||||||
[
|
[
|
||||||
SO_CFLAGS="-fPIC"
|
SO_CFLAGS="-fPIC"
|
||||||
])
|
])
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue