mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-22 09:20:51 -05:00
1932. [bug] hpux: LDFLAGS was getting corrupted. [RT #15530]
This commit is contained in:
parent
d5ed7801a9
commit
8af4e7aa4e
2 changed files with 5 additions and 3 deletions
2
CHANGES
2
CHANGES
|
|
@ -1,3 +1,5 @@
|
|||
1932. [bug] hpux: LDFLAGS was getting corrupted. [RT #15530]
|
||||
|
||||
1931. [bug] Per-client mctx could require a huge amount of memory,
|
||||
particularly for a busy caching server. [RT #15519]
|
||||
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ AC_DIVERT_PUSH(1)dnl
|
|||
esyscmd([sed "s/^/# /" COPYRIGHT])dnl
|
||||
AC_DIVERT_POP()dnl
|
||||
|
||||
AC_REVISION($Revision: 1.395 $)
|
||||
AC_REVISION($Revision: 1.396 $)
|
||||
|
||||
AC_INIT(lib/dns/name.c)
|
||||
AC_PREREQ(2.59)
|
||||
|
|
@ -801,7 +801,7 @@ if test "X$GCC" = "Xyes"; then
|
|||
STD_CWARNINGS="$STD_CWARNINGS -W -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wformat"
|
||||
case "$host" in
|
||||
*-hp-hpux*)
|
||||
LDFLAGS="-Wl,+vnocompatwarnings $LDFALGS"
|
||||
LDFLAGS="-Wl,+vnocompatwarnings $LDFLAGS"
|
||||
;;
|
||||
esac
|
||||
else
|
||||
|
|
@ -827,7 +827,7 @@ else
|
|||
;;
|
||||
esac
|
||||
CCOPT="$CCOPT -Ae -z"
|
||||
LDFLAGS="-Wl,+vnocompatwarnings $LDFALGS"
|
||||
LDFLAGS="-Wl,+vnocompatwarnings $LDFLAGS"
|
||||
MKDEPPROG='cc -Ae -E -Wp,-M >/dev/null 2>>$TMP'
|
||||
;;
|
||||
*-sgi-irix*)
|
||||
|
|
|
|||
Loading…
Reference in a new issue