mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-10 10:39:59 -04:00
update
This commit is contained in:
parent
70eb787955
commit
f95dfb12a7
1 changed files with 4 additions and 4 deletions
8
configure
vendored
8
configure
vendored
|
|
@ -1,6 +1,6 @@
|
|||
#! /bin/sh
|
||||
|
||||
# From configure.in Revision: 1.35
|
||||
# From configure.in Revision: 1.36
|
||||
|
||||
|
||||
|
||||
|
|
@ -2060,7 +2060,7 @@ cat > conftest.$ac_ext <<EOF
|
|||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
int main() {
|
||||
int foo() { struct sockaddr sa; sa.sa_len = 0; return (0); }
|
||||
struct sockaddr sa; sa.sa_len = 0; return (0);
|
||||
; return 0; }
|
||||
EOF
|
||||
if { (eval echo configure:2067: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
||||
|
|
@ -2086,7 +2086,7 @@ cat > conftest.$ac_ext <<EOF
|
|||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
||||
int main() {
|
||||
int foo(void) { return (AF_INET6); }
|
||||
return (AF_INET6);
|
||||
; return 0; }
|
||||
EOF
|
||||
if { (eval echo configure:2093: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
||||
|
|
@ -2112,7 +2112,7 @@ cat > conftest.$ac_ext <<EOF
|
|||
#include <sys/socket.h>
|
||||
#include <netinet/in.h>
|
||||
int main() {
|
||||
int foo(void) { struct sockaddr_in6 sin6; return (0); }
|
||||
struct sockaddr_in6 sin6; return (0);
|
||||
; return 0; }
|
||||
EOF
|
||||
if { (eval echo configure:2119: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue