From d948447063614a3857784b11c1f1c1bd10b55a9f Mon Sep 17 00:00:00 2001 From: "Craig A. Berry" Date: Mon, 20 Dec 2010 22:06:44 -0600 Subject: [PATCH] d_sin6_scope_id configuration probe for VMS. It's present on recent versions, but not all versions. Follow-up to f53580fec42f3b12264ee27b756dec257c0bb77a. --- configure.com | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/configure.com b/configure.com index 223077c..6e59963 100644 --- a/configure.com +++ b/configure.com @@ -4909,6 +4909,40 @@ $ d_sockaddr_sa_len="undef" $ echo "You do not have sa_len in the sockaddr struct." $ ENDIF $! +$! +$! Check for sin6_scope_id +$! +$ echo4 "Checking the availability of sin6_scope_id in the struct sockaddr_in6 ..." +$ IF Has_Dec_C_Sockets .OR. Has_Socketshr +$ THEN +$ OS +$ WS "#include " +$ IF Has_Socketshr +$ THEN +$ WS "#include " +$ ELSE +$ WS "#include " +$ ENDIF +$ WS "#include " +$ WS "int main() {" +$ WS "struct sockaddr_in6 sin6;" +$ WS "return (sin6.sin6_scope_id);" +$ WS "}" +$ CS +$ GOSUB compile_ok +$ IF compile_status .EQ. good_compile +$ THEN +$ d_sin6_scope_id="define" +$ echo "You have sin6_scope_id in the sockaddr_in6 struct." +$ ELSE +$ d_sin6_scope_id="undef" +$ echo "You do not have sin6_scope_id in the sockaddr_in6 struct." +$ ENDIF +$ ELSE +$ d_sin6_scope_id="undef" +$ echo "You do not have sin6_scope_id in the sockaddr_in6 struct." +$ ENDIF +$! $! Check for nanosleep $! $ OS @@ -6264,7 +6298,7 @@ $ WC "d_sigaction='" + d_sigaction + "'" $ WC "d_signbit='" + d_signbit + "'" $ WC "d_sigprocmask='" + d_sigprocmask + "'" $ WC "d_sigsetjmp='" + d_sigsetjmp + "'" -$ WC "d_sin6_scope_id='undef'" +$ WC "d_sin6_scope_id='" + d_sin6_scope_id + "'" $ WC "d_sitearch='define'" $ WC "d_sockaddr_sa_len='" + d_sockaddr_sa_len + "'" $ WC "d_sockatmark='undef'" -- 2.7.4