1932. [bug] hpux: LDFLAGS was getting corrupted. [RT #15530]

This commit is contained in:
Mark Andrews 2005-10-20 23:47:20 +00:00
parent d5ed7801a9
commit 8af4e7aa4e
2 changed files with 5 additions and 3 deletions

View file

@ -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, 1931. [bug] Per-client mctx could require a huge amount of memory,
particularly for a busy caching server. [RT #15519] particularly for a busy caching server. [RT #15519]

View file

@ -18,7 +18,7 @@ AC_DIVERT_PUSH(1)dnl
esyscmd([sed "s/^/# /" COPYRIGHT])dnl esyscmd([sed "s/^/# /" COPYRIGHT])dnl
AC_DIVERT_POP()dnl AC_DIVERT_POP()dnl
AC_REVISION($Revision: 1.395 $) AC_REVISION($Revision: 1.396 $)
AC_INIT(lib/dns/name.c) AC_INIT(lib/dns/name.c)
AC_PREREQ(2.59) 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" STD_CWARNINGS="$STD_CWARNINGS -W -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wformat"
case "$host" in case "$host" in
*-hp-hpux*) *-hp-hpux*)
LDFLAGS="-Wl,+vnocompatwarnings $LDFALGS" LDFLAGS="-Wl,+vnocompatwarnings $LDFLAGS"
;; ;;
esac esac
else else
@ -827,7 +827,7 @@ else
;; ;;
esac esac
CCOPT="$CCOPT -Ae -z" CCOPT="$CCOPT -Ae -z"
LDFLAGS="-Wl,+vnocompatwarnings $LDFALGS" LDFLAGS="-Wl,+vnocompatwarnings $LDFLAGS"
MKDEPPROG='cc -Ae -E -Wp,-M >/dev/null 2>>$TMP' MKDEPPROG='cc -Ae -E -Wp,-M >/dev/null 2>>$TMP'
;; ;;
*-sgi-irix*) *-sgi-irix*)