mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +00:00
2034. [bug] gcc: set -fno-strict-aliasing. [RT #16124]
This commit is contained in:
2
CHANGES
2
CHANGES
@@ -1,3 +1,5 @@
|
|||||||
|
2034. [bug] gcc: set -fno-strict-aliasing. [RT #16124]
|
||||||
|
|
||||||
2033. [bug] We wern't creating multiple client memory contexts
|
2033. [bug] We wern't creating multiple client memory contexts
|
||||||
on demand as expected. [RT #16095]
|
on demand as expected. [RT #16095]
|
||||||
|
|
||||||
|
8
configure
vendored
8
configure
vendored
@@ -14,7 +14,7 @@
|
|||||||
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||||
# PERFORMANCE OF THIS SOFTWARE.
|
# PERFORMANCE OF THIS SOFTWARE.
|
||||||
#
|
#
|
||||||
# $Id: configure,v 1.393 2006/03/06 01:06:48 marka Exp $
|
# $Id: configure,v 1.394 2006/06/02 03:36:22 marka Exp $
|
||||||
#
|
#
|
||||||
# Portions Copyright (C) 1996-2001 Nominum, Inc.
|
# Portions Copyright (C) 1996-2001 Nominum, Inc.
|
||||||
#
|
#
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||||
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
|
||||||
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
# From configure.in Revision: 1.405 .
|
# From configure.in Revision: 1.406 .
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.59.
|
# Generated by GNU Autoconf 2.59.
|
||||||
#
|
#
|
||||||
@@ -7506,7 +7506,7 @@ MKDEPCFLAGS="-M"
|
|||||||
IRIX_DNSSEC_WARNINGS_HACK=""
|
IRIX_DNSSEC_WARNINGS_HACK=""
|
||||||
|
|
||||||
if test "X$GCC" = "Xyes"; then
|
if test "X$GCC" = "Xyes"; then
|
||||||
STD_CWARNINGS="$STD_CWARNINGS -W -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wformat -Wpointer-arith"
|
STD_CWARNINGS="$STD_CWARNINGS -W -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wformat -Wpointer-arith -fno-strict-aliasing"
|
||||||
case "$host" in
|
case "$host" in
|
||||||
*-hp-hpux*)
|
*-hp-hpux*)
|
||||||
LDFLAGS="-Wl,+vnocompatwarnings $LDFLAGS"
|
LDFLAGS="-Wl,+vnocompatwarnings $LDFLAGS"
|
||||||
@@ -29433,6 +29433,8 @@ echo "$as_me: error: path $use_dlz_bdb does not exist" >&2;}
|
|||||||
if test "$dd" != "/usr"
|
if test "$dd" != "/usr"
|
||||||
then
|
then
|
||||||
dlz_bdb_libs="-L${dd}/lib "
|
dlz_bdb_libs="-L${dd}/lib "
|
||||||
|
else
|
||||||
|
dlz_bdb_libs=""
|
||||||
fi
|
fi
|
||||||
dlz_bdb_libs="${dlz_bdb_libs}-l${d}"
|
dlz_bdb_libs="${dlz_bdb_libs}-l${d}"
|
||||||
break
|
break
|
||||||
|
@@ -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.405 $)
|
AC_REVISION($Revision: 1.406 $)
|
||||||
|
|
||||||
AC_INIT(lib/dns/name.c)
|
AC_INIT(lib/dns/name.c)
|
||||||
AC_PREREQ(2.59)
|
AC_PREREQ(2.59)
|
||||||
@@ -810,7 +810,7 @@ MKDEPCFLAGS="-M"
|
|||||||
IRIX_DNSSEC_WARNINGS_HACK=""
|
IRIX_DNSSEC_WARNINGS_HACK=""
|
||||||
|
|
||||||
if test "X$GCC" = "Xyes"; then
|
if test "X$GCC" = "Xyes"; then
|
||||||
STD_CWARNINGS="$STD_CWARNINGS -W -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wformat -Wpointer-arith"
|
STD_CWARNINGS="$STD_CWARNINGS -W -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wformat -Wpointer-arith -fno-strict-aliasing"
|
||||||
case "$host" in
|
case "$host" in
|
||||||
*-hp-hpux*)
|
*-hp-hpux*)
|
||||||
LDFLAGS="-Wl,+vnocompatwarnings $LDFLAGS"
|
LDFLAGS="-Wl,+vnocompatwarnings $LDFLAGS"
|
||||||
|
4
lib/bind/configure
vendored
4
lib/bind/configure
vendored
@@ -1,5 +1,5 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# From configure.in Revision: 1.115 .
|
# From configure.in Revision: 1.117 .
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.59.
|
# Generated by GNU Autoconf 2.59.
|
||||||
#
|
#
|
||||||
@@ -6403,7 +6403,7 @@ MKDEPCFLAGS="-M"
|
|||||||
IRIX_DNSSEC_WARNINGS_HACK=""
|
IRIX_DNSSEC_WARNINGS_HACK=""
|
||||||
|
|
||||||
if test "X$GCC" = "Xyes"; then
|
if test "X$GCC" = "Xyes"; then
|
||||||
STD_CWARNINGS="$STD_CWARNINGS -W -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wpointer-arith"
|
STD_CWARNINGS="$STD_CWARNINGS -W -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wpointer-arith -fno-strict-aliasing"
|
||||||
else
|
else
|
||||||
case $host in
|
case $host in
|
||||||
*-dec-osf*)
|
*-dec-osf*)
|
||||||
|
@@ -13,7 +13,7 @@
|
|||||||
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||||
# PERFORMANCE OF THIS SOFTWARE.
|
# PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
AC_REVISION($Revision: 1.116 $)
|
AC_REVISION($Revision: 1.117 $)
|
||||||
|
|
||||||
AC_INIT(resolv/herror.c)
|
AC_INIT(resolv/herror.c)
|
||||||
AC_PREREQ(2.13)
|
AC_PREREQ(2.13)
|
||||||
@@ -513,7 +513,7 @@ MKDEPCFLAGS="-M"
|
|||||||
IRIX_DNSSEC_WARNINGS_HACK=""
|
IRIX_DNSSEC_WARNINGS_HACK=""
|
||||||
|
|
||||||
if test "X$GCC" = "Xyes"; then
|
if test "X$GCC" = "Xyes"; then
|
||||||
STD_CWARNINGS="$STD_CWARNINGS -W -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wpointer-arith"
|
STD_CWARNINGS="$STD_CWARNINGS -W -Wall -Wmissing-prototypes -Wcast-qual -Wwrite-strings -Wpointer-arith -fno-strict-aliasing"
|
||||||
else
|
else
|
||||||
case $host in
|
case $host in
|
||||||
*-dec-osf*)
|
*-dec-osf*)
|
||||||
|
Reference in New Issue
Block a user