mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-14 12:10:04 -04:00
3889. [port] hurd: configure fixes as per:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=746540
(cherry picked from commit 89119e3caf)
This commit is contained in:
parent
539d13af30
commit
72397ede08
3 changed files with 8 additions and 5 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
3889. [port] hurd: configure fixes as per:
|
||||
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=746540
|
||||
|
||||
3887. [cleanup] Make all static symbols in rbtdb64 end in "64" so
|
||||
they are easier to use in a debugger. [RT #36373]
|
||||
|
||||
|
|
|
|||
6
configure
vendored
6
configure
vendored
|
|
@ -12441,7 +12441,7 @@ case "$host" in
|
|||
# as it breaks how the two halves (Basic and Advanced) of the IPv6
|
||||
# Socket API were designed to be used but we have to live with it.
|
||||
# Define _GNU_SOURCE to pull in the IPv6 Advanced Socket API.
|
||||
*-linux* | *-kfreebsd*-gnu)
|
||||
*-linux* | *-kfreebsd*-gnu*)
|
||||
STD_CDEFINES="$STD_CDEFINES -D_GNU_SOURCE"
|
||||
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
|
||||
;;
|
||||
|
|
@ -19276,7 +19276,7 @@ if test -f "${srcdir}/srcid"; then
|
|||
. "${srcdir}/srcid"
|
||||
BIND9_SRCID="SRCID=$SRCID"
|
||||
elif test -d "${srcdir}/.git"; then
|
||||
BIND9_SRCID="SRCID="`(cd "${srcdir}";git log -n 1 --format=%h)`
|
||||
BIND9_SRCID="SRCID="`(cd "${srcdir}";git rev-parse --short HEAD)`
|
||||
fi
|
||||
|
||||
|
||||
|
|
@ -19424,7 +19424,7 @@ fi
|
|||
|
||||
if test "$dlopen" = "yes"; then
|
||||
case $host in
|
||||
*-linux*)
|
||||
*-linux*|*-gnu*)
|
||||
SO_CFLAGS="-fPIC"
|
||||
SO_LDFLAGS=""
|
||||
if test "$have_dl" = "yes"
|
||||
|
|
|
|||
|
|
@ -351,7 +351,7 @@ case "$host" in
|
|||
# as it breaks how the two halves (Basic and Advanced) of the IPv6
|
||||
# Socket API were designed to be used but we have to live with it.
|
||||
# Define _GNU_SOURCE to pull in the IPv6 Advanced Socket API.
|
||||
*-linux* | *-kfreebsd*-gnu)
|
||||
*-linux* | *-kfreebsd*-gnu*)
|
||||
STD_CDEFINES="$STD_CDEFINES -D_GNU_SOURCE"
|
||||
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
|
||||
;;
|
||||
|
|
@ -3545,7 +3545,7 @@ fi
|
|||
|
||||
if test "$dlopen" = "yes"; then
|
||||
case $host in
|
||||
*-linux*)
|
||||
*-linux*|*-gnu*)
|
||||
SO_CFLAGS="-fPIC"
|
||||
SO_LDFLAGS=""
|
||||
if test "$have_dl" = "yes"
|
||||
|
|
|
|||
Loading…
Reference in a new issue