2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 14:35:26 +00:00

204. [cleanup] On HP/UX, Pass +vnocompatwarnings to the linker

to quiet the warnings that "The linked output may not
                        run on a PA 1.x system."
This commit is contained in:
David Lawrence
2000-05-24 19:42:00 +00:00
parent 8de5527f74
commit 7ffc4c63ac
3 changed files with 11 additions and 5 deletions

View File

@@ -1,3 +1,7 @@
204. [cleanup] On HP/UX, Pass +vnocompatwarnings to the linker
to quiet the warnings that "The linked output may not
run on a PA 1.x system."
203. [func] notify and zone soa queries are now tsig signed when 203. [func] notify and zone soa queries are now tsig signed when
appropriate. appropriate.
@@ -39,7 +43,7 @@
Manual is no longer included in the ISC BIND9 Manual is no longer included in the ISC BIND9
distribution. distribution.
193. [func] changed dst_key_free() prototype 193. [func] changed dst_key_free() prototype.
192. [bug] Zone configuration validation is now done at end 192. [bug] Zone configuration validation is now done at end
of config file parsing, and before loading of config file parsing, and before loading

6
configure vendored
View File

@@ -1,6 +1,6 @@
#! /bin/sh #! /bin/sh
# From configure.in Revision: 1.137 # From configure.in Revision: 1.139
@@ -2336,7 +2336,7 @@ else
MKDEPCFLAGS="-xM" MKDEPCFLAGS="-xM"
;; ;;
*-hp-hpux*) *-hp-hpux*)
CC="$CC -Ae -z +w1" CC="$CC -Ae -z +w1 -Wl,+vnocompatwarnings"
MKDEPPROG='cc -Ae -E -Wp,-M >/dev/null 2>>$TMP' MKDEPPROG='cc -Ae -E -Wp,-M >/dev/null 2>>$TMP'
;; ;;
*-sgi-irix*) *-sgi-irix*)
@@ -4068,6 +4068,7 @@ trap 'rm -fr `echo "make/rules
bin/tests/dst/Makefile bin/tests/dst/Makefile
bin/tests/mem/Makefile bin/tests/mem/Makefile
bin/tests/sockaddr/Makefile bin/tests/sockaddr/Makefile
bin/tests/system/Makefile
bin/tests/headerdep_test.sh bin/tests/headerdep_test.sh
bin/dnssec/Makefile bin/dnssec/Makefile
config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 config.h" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
@@ -4292,6 +4293,7 @@ CONFIG_FILES=\${CONFIG_FILES-"make/rules
bin/tests/dst/Makefile bin/tests/dst/Makefile
bin/tests/mem/Makefile bin/tests/mem/Makefile
bin/tests/sockaddr/Makefile bin/tests/sockaddr/Makefile
bin/tests/system/Makefile
bin/tests/headerdep_test.sh bin/tests/headerdep_test.sh
bin/dnssec/Makefile bin/dnssec/Makefile
"} "}

View File

@@ -13,7 +13,7 @@ dnl PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
dnl ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS dnl ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
dnl SOFTWARE. dnl SOFTWARE.
AC_REVISION($Revision: 1.138 $) AC_REVISION($Revision: 1.139 $)
AC_PREREQ(2.13) AC_PREREQ(2.13)
@@ -360,7 +360,7 @@ else
MKDEPCFLAGS="-xM" MKDEPCFLAGS="-xM"
;; ;;
*-hp-hpux*) *-hp-hpux*)
CC="$CC -Ae -z +w1" CC="$CC -Ae -z +w1 -Wl,+vnocompatwarnings"
MKDEPPROG='cc -Ae -E -Wp,-M >/dev/null 2>>$TMP' MKDEPPROG='cc -Ae -E -Wp,-M >/dev/null 2>>$TMP'
;; ;;
*-sgi-irix*) *-sgi-irix*)