diff options
-rw-r--r-- | ChangeLog | 24 | ||||
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | auth.h | 1 | ||||
-rw-r--r-- | auth1.c | 8 | ||||
-rw-r--r-- | auth2.c | 10 | ||||
-rw-r--r-- | config.h.in | 6 | ||||
-rwxr-xr-x | configure | 863 | ||||
-rw-r--r-- | configure.ac | 13 | ||||
-rwxr-xr-x | contrib/redhat/sshd.init | 9 | ||||
-rw-r--r-- | debian/changelog | 11 | ||||
-rw-r--r-- | debian/control | 2 | ||||
-rw-r--r-- | debian/openssh-server.postinst | 3 | ||||
-rw-r--r-- | debian/openssh-server.preinst | 3 | ||||
-rw-r--r-- | debian/openssh-server.ssh.pam | 3 | ||||
-rwxr-xr-x | debian/rules | 7 | ||||
-rw-r--r-- | monitor.c | 10 | ||||
-rw-r--r-- | monitor_wrap.c | 5 | ||||
-rw-r--r-- | monitor_wrap.h | 2 | ||||
-rw-r--r-- | selinux.c | 111 | ||||
-rw-r--r-- | selinux.h | 7 | ||||
-rw-r--r-- | session.c | 4 | ||||
-rw-r--r-- | sshpty.c | 4 |
22 files changed, 637 insertions, 471 deletions
@@ -1,3 +1,27 @@ | |||
1 | 20050510 | ||
2 | - (srivasta) [selinux.c] if selinux is enabled, then provide funtions to | ||
3 | initialize the pty and execution context for ssh. | ||
4 | - (srivasta) [selinux.h] if SELinux is defined, add function prototypes for | ||
5 | functions, or make them null ops. | ||
6 | - (srivasta) [sshpty.c] include selinuh.h | ||
7 | pty_setowner: set up the selinux pty correcty. | ||
8 | - (srivasta) [session.c] include selinuh.h | ||
9 | do_setusercontext: set up proper execution context for SELinux. | ||
10 | - (srivasta) [monitor_wrap.h] Add function prototype for new function to | ||
11 | inform the privileged process about role. | ||
12 | - (srivasta) [monitor_wrap.c] (mm_inform_authrole) Inform the privileged | ||
13 | process about role. | ||
14 | - (srivasta) [monitor.h] Add a new monitor request type for auth roles. | ||
15 | - (srivasta) [monitor.c] (mm_answer_authrole) Add nre function to deal withe | ||
16 | the new authorization role, and add a new monitor request type. | ||
17 | - (srivasta) [contrib/redhat/sshd.init] (PID_FILE)restore the proper security | ||
18 | file context of the generated public keys. | ||
19 | - (srivasta) [configure.ac] (HAVE_HEADER_AD)Add an SELinux option | ||
20 | - (srivasta) [auth2.c] (input_userauth_request)Handle the new role member | ||
21 | - (srivasta) [auth1.c] (do_authentication)Handle the new role member | ||
22 | - (srivasta) [auth.h] Added a role member in struct Authctxt | ||
23 | - (srivasta) [Makefile.in (SSHDOBJS)] Add selinux.o | ||
24 | |||
1 | 20050524 | 25 | 20050524 |
2 | - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec] | 26 | - (djm) [contrib/caldera/openssh.spec contrib/redhat/openssh.spec] |
3 | [contrib/suse/openssh.spec] Update spec file versions to 4.1p1 | 27 | [contrib/suse/openssh.spec] Update spec file versions to 4.1p1 |
diff --git a/Makefile.in b/Makefile.in index 1bd283fd3..5ec45f352 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -77,7 +77,7 @@ SSHOBJS= ssh.o readconf.o clientloop.o sshtty.o \ | |||
77 | sshconnect.o sshconnect1.o sshconnect2.o | 77 | sshconnect.o sshconnect1.o sshconnect2.o |
78 | 78 | ||
79 | SSHDOBJS=sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o \ | 79 | SSHDOBJS=sshd.o auth-rhosts.o auth-passwd.o auth-rsa.o auth-rh-rsa.o \ |
80 | sshpty.o sshlogin.o servconf.o serverloop.o \ | 80 | sshpty.o sshlogin.o servconf.o serverloop.o selinux.o \ |
81 | auth.o auth1.o auth2.o auth-options.o session.o \ | 81 | auth.o auth1.o auth2.o auth-options.o session.o \ |
82 | auth-chall.o auth2-chall.o groupaccess.o \ | 82 | auth-chall.o auth2-chall.o groupaccess.o \ |
83 | auth-skey.o auth-bsdauth.o auth2-hostbased.o auth2-kbdint.o \ | 83 | auth-skey.o auth-bsdauth.o auth2-hostbased.o auth2-kbdint.o \ |
@@ -58,6 +58,7 @@ struct Authctxt { | |||
58 | char *service; | 58 | char *service; |
59 | struct passwd *pw; /* set if 'valid' */ | 59 | struct passwd *pw; /* set if 'valid' */ |
60 | char *style; | 60 | char *style; |
61 | char *role; | ||
61 | void *kbdintctxt; | 62 | void *kbdintctxt; |
62 | #ifdef BSD_AUTH | 63 | #ifdef BSD_AUTH |
63 | auth_session_t *as; | 64 | auth_session_t *as; |
@@ -308,7 +308,7 @@ void | |||
308 | do_authentication(Authctxt *authctxt) | 308 | do_authentication(Authctxt *authctxt) |
309 | { | 309 | { |
310 | u_int ulen; | 310 | u_int ulen; |
311 | char *user, *style = NULL; | 311 | char *user, *style = NULL, *role = NULL; |
312 | 312 | ||
313 | /* Get the name of the user that we wish to log in as. */ | 313 | /* Get the name of the user that we wish to log in as. */ |
314 | packet_read_expect(SSH_CMSG_USER); | 314 | packet_read_expect(SSH_CMSG_USER); |
@@ -317,11 +317,17 @@ do_authentication(Authctxt *authctxt) | |||
317 | user = packet_get_string(&ulen); | 317 | user = packet_get_string(&ulen); |
318 | packet_check_eom(); | 318 | packet_check_eom(); |
319 | 319 | ||
320 | if ((role = strchr(user, '/')) != NULL) | ||
321 | *role++ = '\0'; | ||
322 | |||
320 | if ((style = strchr(user, ':')) != NULL) | 323 | if ((style = strchr(user, ':')) != NULL) |
321 | *style++ = '\0'; | 324 | *style++ = '\0'; |
325 | else if (role && (style = strchr(role, ':')) != NULL) | ||
326 | *style++ = '\0'; | ||
322 | 327 | ||
323 | authctxt->user = user; | 328 | authctxt->user = user; |
324 | authctxt->style = style; | 329 | authctxt->style = style; |
330 | authctxt->role = role; | ||
325 | 331 | ||
326 | /* Verify that the user is a valid user. */ | 332 | /* Verify that the user is a valid user. */ |
327 | if ((authctxt->pw = PRIVSEP(getpwnamallow(user))) != NULL) | 333 | if ((authctxt->pw = PRIVSEP(getpwnamallow(user))) != NULL) |
@@ -134,7 +134,7 @@ input_userauth_request(int type, u_int32_t seq, void *ctxt) | |||
134 | { | 134 | { |
135 | Authctxt *authctxt = ctxt; | 135 | Authctxt *authctxt = ctxt; |
136 | Authmethod *m = NULL; | 136 | Authmethod *m = NULL; |
137 | char *user, *service, *method, *style = NULL; | 137 | char *user, *service, *method, *style = NULL, *role = NULL; |
138 | int authenticated = 0; | 138 | int authenticated = 0; |
139 | 139 | ||
140 | if (authctxt == NULL) | 140 | if (authctxt == NULL) |
@@ -146,8 +146,13 @@ input_userauth_request(int type, u_int32_t seq, void *ctxt) | |||
146 | debug("userauth-request for user %s service %s method %s", user, service, method); | 146 | debug("userauth-request for user %s service %s method %s", user, service, method); |
147 | debug("attempt %d failures %d", authctxt->attempt, authctxt->failures); | 147 | debug("attempt %d failures %d", authctxt->attempt, authctxt->failures); |
148 | 148 | ||
149 | if ((role = strchr(user, '/')) != NULL) | ||
150 | *role++ = 0; | ||
151 | |||
149 | if ((style = strchr(user, ':')) != NULL) | 152 | if ((style = strchr(user, ':')) != NULL) |
150 | *style++ = 0; | 153 | *style++ = 0; |
154 | else if (role && (style = strchr(role, ':')) != NULL) | ||
155 | *style++ = '\0'; | ||
151 | 156 | ||
152 | if (authctxt->attempt++ == 0) { | 157 | if (authctxt->attempt++ == 0) { |
153 | /* setup auth context */ | 158 | /* setup auth context */ |
@@ -175,8 +180,9 @@ input_userauth_request(int type, u_int32_t seq, void *ctxt) | |||
175 | use_privsep ? " [net]" : ""); | 180 | use_privsep ? " [net]" : ""); |
176 | authctxt->service = xstrdup(service); | 181 | authctxt->service = xstrdup(service); |
177 | authctxt->style = style ? xstrdup(style) : NULL; | 182 | authctxt->style = style ? xstrdup(style) : NULL; |
183 | authctxt->role = role ? xstrdup(role) : NULL; | ||
178 | if (use_privsep) | 184 | if (use_privsep) |
179 | mm_inform_authserv(service, style); | 185 | mm_inform_authserv(service, style, role); |
180 | } else if (strcmp(user, authctxt->user) != 0 || | 186 | } else if (strcmp(user, authctxt->user) != 0 || |
181 | strcmp(service, authctxt->service) != 0) { | 187 | strcmp(service, authctxt->service) != 0) { |
182 | packet_disconnect("Change of username or service not allowed: " | 188 | packet_disconnect("Change of username or service not allowed: " |
diff --git a/config.h.in b/config.h.in index 400561d6a..99a5d5730 100644 --- a/config.h.in +++ b/config.h.in | |||
@@ -829,6 +829,9 @@ | |||
829 | /* Define to 1 if you have the <security/pam_appl.h> header file. */ | 829 | /* Define to 1 if you have the <security/pam_appl.h> header file. */ |
830 | #undef HAVE_SECURITY_PAM_APPL_H | 830 | #undef HAVE_SECURITY_PAM_APPL_H |
831 | 831 | ||
832 | /* Define to 1 if you have the <selinux/selinux.h> header file. */ | ||
833 | #undef HAVE_SELINUX_SELINUX_H | ||
834 | |||
832 | /* Define to 1 if you have the `sendmsg' function. */ | 835 | /* Define to 1 if you have the `sendmsg' function. */ |
833 | #undef HAVE_SENDMSG | 836 | #undef HAVE_SENDMSG |
834 | 837 | ||
@@ -1150,6 +1153,9 @@ | |||
1150 | /* Use libedit for sftp */ | 1153 | /* Use libedit for sftp */ |
1151 | #undef USE_LIBEDIT | 1154 | #undef USE_LIBEDIT |
1152 | 1155 | ||
1156 | /* Define if you want SELinux support. */ | ||
1157 | #undef WITH_SELINUX | ||
1158 | |||
1153 | /* Define to 1 if your processor stores words with the most significant byte | 1159 | /* Define to 1 if your processor stores words with the most significant byte |
1154 | first (like Motorola and SPARC, unlike Intel and VAX). */ | 1160 | first (like Motorola and SPARC, unlike Intel and VAX). */ |
1155 | #undef WORDS_BIGENDIAN | 1161 | #undef WORDS_BIGENDIAN |
@@ -882,6 +882,7 @@ Optional Packages: | |||
882 | --with-privsep-user=user Specify non-privileged user for privilege separation | 882 | --with-privsep-user=user Specify non-privileged user for privilege separation |
883 | --with-sectok Enable smartcard support using libsectok | 883 | --with-sectok Enable smartcard support using libsectok |
884 | --with-opensc[=PFX] Enable smartcard support using OpenSC (optionally in PATH) | 884 | --with-opensc[=PFX] Enable smartcard support using OpenSC (optionally in PATH) |
885 | --with-selinux Enable SELinux support | ||
885 | --with-kerberos5=PATH Enable Kerberos 5 support | 886 | --with-kerberos5=PATH Enable Kerberos 5 support |
886 | --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty) | 887 | --with-privsep-path=xxx Path for privilege separation chroot (default=/var/empty) |
887 | --with-xauth=PATH Specify path to xauth program | 888 | --with-xauth=PATH Specify path to xauth program |
@@ -996,7 +997,7 @@ esac | |||
996 | else | 997 | else |
997 | echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 | 998 | echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 |
998 | fi | 999 | fi |
999 | cd $ac_popdir | 1000 | cd "$ac_popdir" |
1000 | done | 1001 | done |
1001 | fi | 1002 | fi |
1002 | 1003 | ||
@@ -1925,8 +1926,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
1925 | cat conftest.err >&5 | 1926 | cat conftest.err >&5 |
1926 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 1927 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
1927 | (exit $ac_status); } && | 1928 | (exit $ac_status); } && |
1928 | { ac_try='test -z "$ac_c_werror_flag" | 1929 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
1929 | || test ! -s conftest.err' | ||
1930 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 1930 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
1931 | (eval $ac_try) 2>&5 | 1931 | (eval $ac_try) 2>&5 |
1932 | ac_status=$? | 1932 | ac_status=$? |
@@ -1984,8 +1984,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
1984 | cat conftest.err >&5 | 1984 | cat conftest.err >&5 |
1985 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 1985 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
1986 | (exit $ac_status); } && | 1986 | (exit $ac_status); } && |
1987 | { ac_try='test -z "$ac_c_werror_flag" | 1987 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
1988 | || test ! -s conftest.err' | ||
1989 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 1988 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
1990 | (eval $ac_try) 2>&5 | 1989 | (eval $ac_try) 2>&5 |
1991 | ac_status=$? | 1990 | ac_status=$? |
@@ -2101,8 +2100,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
2101 | cat conftest.err >&5 | 2100 | cat conftest.err >&5 |
2102 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2101 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2103 | (exit $ac_status); } && | 2102 | (exit $ac_status); } && |
2104 | { ac_try='test -z "$ac_c_werror_flag" | 2103 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
2105 | || test ! -s conftest.err' | ||
2106 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 2104 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
2107 | (eval $ac_try) 2>&5 | 2105 | (eval $ac_try) 2>&5 |
2108 | ac_status=$? | 2106 | ac_status=$? |
@@ -2156,8 +2154,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
2156 | cat conftest.err >&5 | 2154 | cat conftest.err >&5 |
2157 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2155 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2158 | (exit $ac_status); } && | 2156 | (exit $ac_status); } && |
2159 | { ac_try='test -z "$ac_c_werror_flag" | 2157 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
2160 | || test ! -s conftest.err' | ||
2161 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 2158 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
2162 | (eval $ac_try) 2>&5 | 2159 | (eval $ac_try) 2>&5 |
2163 | ac_status=$? | 2160 | ac_status=$? |
@@ -2202,8 +2199,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
2202 | cat conftest.err >&5 | 2199 | cat conftest.err >&5 |
2203 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2200 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2204 | (exit $ac_status); } && | 2201 | (exit $ac_status); } && |
2205 | { ac_try='test -z "$ac_c_werror_flag" | 2202 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
2206 | || test ! -s conftest.err' | ||
2207 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 2203 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
2208 | (eval $ac_try) 2>&5 | 2204 | (eval $ac_try) 2>&5 |
2209 | ac_status=$? | 2205 | ac_status=$? |
@@ -2247,8 +2243,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
2247 | cat conftest.err >&5 | 2243 | cat conftest.err >&5 |
2248 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2244 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2249 | (exit $ac_status); } && | 2245 | (exit $ac_status); } && |
2250 | { ac_try='test -z "$ac_c_werror_flag" | 2246 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
2251 | || test ! -s conftest.err' | ||
2252 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 2247 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
2253 | (eval $ac_try) 2>&5 | 2248 | (eval $ac_try) 2>&5 |
2254 | ac_status=$? | 2249 | ac_status=$? |
@@ -2402,8 +2397,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
2402 | cat conftest.err >&5 | 2397 | cat conftest.err >&5 |
2403 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2398 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2404 | (exit $ac_status); } && | 2399 | (exit $ac_status); } && |
2405 | { ac_try='test -z "$ac_c_werror_flag" | 2400 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
2406 | || test ! -s conftest.err' | ||
2407 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 2401 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
2408 | (eval $ac_try) 2>&5 | 2402 | (eval $ac_try) 2>&5 |
2409 | ac_status=$? | 2403 | ac_status=$? |
@@ -2445,8 +2439,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
2445 | cat conftest.err >&5 | 2439 | cat conftest.err >&5 |
2446 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2440 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2447 | (exit $ac_status); } && | 2441 | (exit $ac_status); } && |
2448 | { ac_try='test -z "$ac_c_werror_flag" | 2442 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
2449 | || test ! -s conftest.err' | ||
2450 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 2443 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
2451 | (eval $ac_try) 2>&5 | 2444 | (eval $ac_try) 2>&5 |
2452 | ac_status=$? | 2445 | ac_status=$? |
@@ -2503,8 +2496,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
2503 | cat conftest.err >&5 | 2496 | cat conftest.err >&5 |
2504 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 2497 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
2505 | (exit $ac_status); } && | 2498 | (exit $ac_status); } && |
2506 | { ac_try='test -z "$ac_c_werror_flag" | 2499 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
2507 | || test ! -s conftest.err' | ||
2508 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 2500 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
2509 | (eval $ac_try) 2>&5 | 2501 | (eval $ac_try) 2>&5 |
2510 | ac_status=$? | 2502 | ac_status=$? |
@@ -3600,8 +3592,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
3600 | cat conftest.err >&5 | 3592 | cat conftest.err >&5 |
3601 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3593 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3602 | (exit $ac_status); } && | 3594 | (exit $ac_status); } && |
3603 | { ac_try='test -z "$ac_c_werror_flag" | 3595 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
3604 | || test ! -s conftest.err' | ||
3605 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3596 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
3606 | (eval $ac_try) 2>&5 | 3597 | (eval $ac_try) 2>&5 |
3607 | ac_status=$? | 3598 | ac_status=$? |
@@ -3630,8 +3621,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
3630 | cat conftest.err >&5 | 3621 | cat conftest.err >&5 |
3631 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3622 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3632 | (exit $ac_status); } && | 3623 | (exit $ac_status); } && |
3633 | { ac_try='test -z "$ac_c_werror_flag" | 3624 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
3634 | || test ! -s conftest.err' | ||
3635 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3625 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
3636 | (eval $ac_try) 2>&5 | 3626 | (eval $ac_try) 2>&5 |
3637 | ac_status=$? | 3627 | ac_status=$? |
@@ -3701,8 +3691,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
3701 | cat conftest.err >&5 | 3691 | cat conftest.err >&5 |
3702 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3692 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3703 | (exit $ac_status); } && | 3693 | (exit $ac_status); } && |
3704 | { ac_try='test -z "$ac_c_werror_flag" | 3694 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
3705 | || test ! -s conftest.err' | ||
3706 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3695 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
3707 | (eval $ac_try) 2>&5 | 3696 | (eval $ac_try) 2>&5 |
3708 | ac_status=$? | 3697 | ac_status=$? |
@@ -3754,8 +3743,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
3754 | cat conftest.err >&5 | 3743 | cat conftest.err >&5 |
3755 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3744 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3756 | (exit $ac_status); } && | 3745 | (exit $ac_status); } && |
3757 | { ac_try='test -z "$ac_c_werror_flag" | 3746 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
3758 | || test ! -s conftest.err' | ||
3759 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3747 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
3760 | (eval $ac_try) 2>&5 | 3748 | (eval $ac_try) 2>&5 |
3761 | ac_status=$? | 3749 | ac_status=$? |
@@ -3826,8 +3814,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
3826 | cat conftest.err >&5 | 3814 | cat conftest.err >&5 |
3827 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3815 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3828 | (exit $ac_status); } && | 3816 | (exit $ac_status); } && |
3829 | { ac_try='test -z "$ac_c_werror_flag" | 3817 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
3830 | || test ! -s conftest.err' | ||
3831 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3818 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
3832 | (eval $ac_try) 2>&5 | 3819 | (eval $ac_try) 2>&5 |
3833 | ac_status=$? | 3820 | ac_status=$? |
@@ -3879,8 +3866,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
3879 | cat conftest.err >&5 | 3866 | cat conftest.err >&5 |
3880 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 3867 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
3881 | (exit $ac_status); } && | 3868 | (exit $ac_status); } && |
3882 | { ac_try='test -z "$ac_c_werror_flag" | 3869 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
3883 | || test ! -s conftest.err' | ||
3884 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 3870 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
3885 | (eval $ac_try) 2>&5 | 3871 | (eval $ac_try) 2>&5 |
3886 | ac_status=$? | 3872 | ac_status=$? |
@@ -4056,8 +4042,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
4056 | cat conftest.err >&5 | 4042 | cat conftest.err >&5 |
4057 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 4043 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4058 | (exit $ac_status); } && | 4044 | (exit $ac_status); } && |
4059 | { ac_try='test -z "$ac_c_werror_flag" | 4045 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4060 | || test ! -s conftest.err' | ||
4061 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 4046 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
4062 | (eval $ac_try) 2>&5 | 4047 | (eval $ac_try) 2>&5 |
4063 | ac_status=$? | 4048 | ac_status=$? |
@@ -4153,8 +4138,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
4153 | cat conftest.err >&5 | 4138 | cat conftest.err >&5 |
4154 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 4139 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4155 | (exit $ac_status); } && | 4140 | (exit $ac_status); } && |
4156 | { ac_try='test -z "$ac_c_werror_flag" | 4141 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4157 | || test ! -s conftest.err' | ||
4158 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 4142 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
4159 | (eval $ac_try) 2>&5 | 4143 | (eval $ac_try) 2>&5 |
4160 | ac_status=$? | 4144 | ac_status=$? |
@@ -4252,8 +4236,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
4252 | cat conftest.err >&5 | 4236 | cat conftest.err >&5 |
4253 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 4237 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4254 | (exit $ac_status); } && | 4238 | (exit $ac_status); } && |
4255 | { ac_try='test -z "$ac_c_werror_flag" | 4239 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4256 | || test ! -s conftest.err' | ||
4257 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 4240 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
4258 | (eval $ac_try) 2>&5 | 4241 | (eval $ac_try) 2>&5 |
4259 | ac_status=$? | 4242 | ac_status=$? |
@@ -4321,8 +4304,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
4321 | cat conftest.err >&5 | 4304 | cat conftest.err >&5 |
4322 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 4305 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4323 | (exit $ac_status); } && | 4306 | (exit $ac_status); } && |
4324 | { ac_try='test -z "$ac_c_werror_flag" | 4307 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4325 | || test ! -s conftest.err' | ||
4326 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 4308 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
4327 | (eval $ac_try) 2>&5 | 4309 | (eval $ac_try) 2>&5 |
4328 | ac_status=$? | 4310 | ac_status=$? |
@@ -4392,8 +4374,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
4392 | cat conftest.err >&5 | 4374 | cat conftest.err >&5 |
4393 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 4375 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4394 | (exit $ac_status); } && | 4376 | (exit $ac_status); } && |
4395 | { ac_try='test -z "$ac_c_werror_flag" | 4377 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4396 | || test ! -s conftest.err' | ||
4397 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 4378 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
4398 | (eval $ac_try) 2>&5 | 4379 | (eval $ac_try) 2>&5 |
4399 | ac_status=$? | 4380 | ac_status=$? |
@@ -4463,8 +4444,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
4463 | cat conftest.err >&5 | 4444 | cat conftest.err >&5 |
4464 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 4445 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4465 | (exit $ac_status); } && | 4446 | (exit $ac_status); } && |
4466 | { ac_try='test -z "$ac_c_werror_flag" | 4447 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4467 | || test ! -s conftest.err' | ||
4468 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 4448 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
4469 | (eval $ac_try) 2>&5 | 4449 | (eval $ac_try) 2>&5 |
4470 | ac_status=$? | 4450 | ac_status=$? |
@@ -4534,8 +4514,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
4534 | cat conftest.err >&5 | 4514 | cat conftest.err >&5 |
4535 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 4515 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4536 | (exit $ac_status); } && | 4516 | (exit $ac_status); } && |
4537 | { ac_try='test -z "$ac_c_werror_flag" | 4517 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4538 | || test ! -s conftest.err' | ||
4539 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 4518 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
4540 | (eval $ac_try) 2>&5 | 4519 | (eval $ac_try) 2>&5 |
4541 | ac_status=$? | 4520 | ac_status=$? |
@@ -4605,8 +4584,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
4605 | cat conftest.err >&5 | 4584 | cat conftest.err >&5 |
4606 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 4585 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4607 | (exit $ac_status); } && | 4586 | (exit $ac_status); } && |
4608 | { ac_try='test -z "$ac_c_werror_flag" | 4587 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4609 | || test ! -s conftest.err' | ||
4610 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 4588 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
4611 | (eval $ac_try) 2>&5 | 4589 | (eval $ac_try) 2>&5 |
4612 | ac_status=$? | 4590 | ac_status=$? |
@@ -4676,8 +4654,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
4676 | cat conftest.err >&5 | 4654 | cat conftest.err >&5 |
4677 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 4655 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4678 | (exit $ac_status); } && | 4656 | (exit $ac_status); } && |
4679 | { ac_try='test -z "$ac_c_werror_flag" | 4657 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4680 | || test ! -s conftest.err' | ||
4681 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 4658 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
4682 | (eval $ac_try) 2>&5 | 4659 | (eval $ac_try) 2>&5 |
4683 | ac_status=$? | 4660 | ac_status=$? |
@@ -4750,8 +4727,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
4750 | cat conftest.err >&5 | 4727 | cat conftest.err >&5 |
4751 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 4728 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4752 | (exit $ac_status); } && | 4729 | (exit $ac_status); } && |
4753 | { ac_try='test -z "$ac_c_werror_flag" | 4730 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4754 | || test ! -s conftest.err' | ||
4755 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 4731 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
4756 | (eval $ac_try) 2>&5 | 4732 | (eval $ac_try) 2>&5 |
4757 | ac_status=$? | 4733 | ac_status=$? |
@@ -4806,8 +4782,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
4806 | cat conftest.err >&5 | 4782 | cat conftest.err >&5 |
4807 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 4783 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4808 | (exit $ac_status); } && | 4784 | (exit $ac_status); } && |
4809 | { ac_try='test -z "$ac_c_werror_flag" | 4785 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4810 | || test ! -s conftest.err' | ||
4811 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 4786 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
4812 | (eval $ac_try) 2>&5 | 4787 | (eval $ac_try) 2>&5 |
4813 | ac_status=$? | 4788 | ac_status=$? |
@@ -4912,8 +4887,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
4912 | cat conftest.err >&5 | 4887 | cat conftest.err >&5 |
4913 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 4888 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
4914 | (exit $ac_status); } && | 4889 | (exit $ac_status); } && |
4915 | { ac_try='test -z "$ac_c_werror_flag" | 4890 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
4916 | || test ! -s conftest.err' | ||
4917 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 4891 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
4918 | (eval $ac_try) 2>&5 | 4892 | (eval $ac_try) 2>&5 |
4919 | ac_status=$? | 4893 | ac_status=$? |
@@ -5160,8 +5134,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
5160 | cat conftest.err >&5 | 5134 | cat conftest.err >&5 |
5161 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5135 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5162 | (exit $ac_status); } && | 5136 | (exit $ac_status); } && |
5163 | { ac_try='test -z "$ac_c_werror_flag" | 5137 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
5164 | || test ! -s conftest.err' | ||
5165 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5138 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
5166 | (eval $ac_try) 2>&5 | 5139 | (eval $ac_try) 2>&5 |
5167 | ac_status=$? | 5140 | ac_status=$? |
@@ -5267,8 +5240,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
5267 | cat conftest.err >&5 | 5240 | cat conftest.err >&5 |
5268 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5241 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5269 | (exit $ac_status); } && | 5242 | (exit $ac_status); } && |
5270 | { ac_try='test -z "$ac_c_werror_flag" | 5243 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
5271 | || test ! -s conftest.err' | ||
5272 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5244 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
5273 | (eval $ac_try) 2>&5 | 5245 | (eval $ac_try) 2>&5 |
5274 | ac_status=$? | 5246 | ac_status=$? |
@@ -5385,8 +5357,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
5385 | cat conftest.err >&5 | 5357 | cat conftest.err >&5 |
5386 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5358 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5387 | (exit $ac_status); } && | 5359 | (exit $ac_status); } && |
5388 | { ac_try='test -z "$ac_c_werror_flag" | 5360 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
5389 | || test ! -s conftest.err' | ||
5390 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5361 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
5391 | (eval $ac_try) 2>&5 | 5362 | (eval $ac_try) 2>&5 |
5392 | ac_status=$? | 5363 | ac_status=$? |
@@ -5531,8 +5502,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
5531 | cat conftest.err >&5 | 5502 | cat conftest.err >&5 |
5532 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5503 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5533 | (exit $ac_status); } && | 5504 | (exit $ac_status); } && |
5534 | { ac_try='test -z "$ac_c_werror_flag" | 5505 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
5535 | || test ! -s conftest.err' | ||
5536 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5506 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
5537 | (eval $ac_try) 2>&5 | 5507 | (eval $ac_try) 2>&5 |
5538 | ac_status=$? | 5508 | ac_status=$? |
@@ -5814,8 +5784,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
5814 | cat conftest.err >&5 | 5784 | cat conftest.err >&5 |
5815 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5785 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5816 | (exit $ac_status); } && | 5786 | (exit $ac_status); } && |
5817 | { ac_try='test -z "$ac_c_werror_flag" | 5787 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
5818 | || test ! -s conftest.err' | ||
5819 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5788 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
5820 | (eval $ac_try) 2>&5 | 5789 | (eval $ac_try) 2>&5 |
5821 | ac_status=$? | 5790 | ac_status=$? |
@@ -5923,8 +5892,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
5923 | cat conftest.err >&5 | 5892 | cat conftest.err >&5 |
5924 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5893 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5925 | (exit $ac_status); } && | 5894 | (exit $ac_status); } && |
5926 | { ac_try='test -z "$ac_c_werror_flag" | 5895 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
5927 | || test ! -s conftest.err' | ||
5928 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5896 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
5929 | (eval $ac_try) 2>&5 | 5897 | (eval $ac_try) 2>&5 |
5930 | ac_status=$? | 5898 | ac_status=$? |
@@ -5997,8 +5965,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
5997 | cat conftest.err >&5 | 5965 | cat conftest.err >&5 |
5998 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 5966 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
5999 | (exit $ac_status); } && | 5967 | (exit $ac_status); } && |
6000 | { ac_try='test -z "$ac_c_werror_flag" | 5968 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
6001 | || test ! -s conftest.err' | ||
6002 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 5969 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
6003 | (eval $ac_try) 2>&5 | 5970 | (eval $ac_try) 2>&5 |
6004 | ac_status=$? | 5971 | ac_status=$? |
@@ -6231,8 +6198,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
6231 | cat conftest.err >&5 | 6198 | cat conftest.err >&5 |
6232 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6199 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6233 | (exit $ac_status); } && | 6200 | (exit $ac_status); } && |
6234 | { ac_try='test -z "$ac_c_werror_flag" | 6201 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
6235 | || test ! -s conftest.err' | ||
6236 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6202 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
6237 | (eval $ac_try) 2>&5 | 6203 | (eval $ac_try) 2>&5 |
6238 | ac_status=$? | 6204 | ac_status=$? |
@@ -6586,8 +6552,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
6586 | cat conftest.err >&5 | 6552 | cat conftest.err >&5 |
6587 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6553 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6588 | (exit $ac_status); } && | 6554 | (exit $ac_status); } && |
6589 | { ac_try='test -z "$ac_c_werror_flag" | 6555 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
6590 | || test ! -s conftest.err' | ||
6591 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6556 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
6592 | (eval $ac_try) 2>&5 | 6557 | (eval $ac_try) 2>&5 |
6593 | ac_status=$? | 6558 | ac_status=$? |
@@ -6757,8 +6722,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
6757 | cat conftest.err >&5 | 6722 | cat conftest.err >&5 |
6758 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6723 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6759 | (exit $ac_status); } && | 6724 | (exit $ac_status); } && |
6760 | { ac_try='test -z "$ac_c_werror_flag" | 6725 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
6761 | || test ! -s conftest.err' | ||
6762 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6726 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
6763 | (eval $ac_try) 2>&5 | 6727 | (eval $ac_try) 2>&5 |
6764 | ac_status=$? | 6728 | ac_status=$? |
@@ -6888,8 +6852,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
6888 | cat conftest.err >&5 | 6852 | cat conftest.err >&5 |
6889 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 6853 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
6890 | (exit $ac_status); } && | 6854 | (exit $ac_status); } && |
6891 | { ac_try='test -z "$ac_c_werror_flag" | 6855 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
6892 | || test ! -s conftest.err' | ||
6893 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 6856 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
6894 | (eval $ac_try) 2>&5 | 6857 | (eval $ac_try) 2>&5 |
6895 | ac_status=$? | 6858 | ac_status=$? |
@@ -7038,8 +7001,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
7038 | cat conftest.err >&5 | 7001 | cat conftest.err >&5 |
7039 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7002 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7040 | (exit $ac_status); } && | 7003 | (exit $ac_status); } && |
7041 | { ac_try='test -z "$ac_c_werror_flag" | 7004 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
7042 | || test ! -s conftest.err' | ||
7043 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7005 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
7044 | (eval $ac_try) 2>&5 | 7006 | (eval $ac_try) 2>&5 |
7045 | ac_status=$? | 7007 | ac_status=$? |
@@ -7138,8 +7100,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
7138 | cat conftest.err >&5 | 7100 | cat conftest.err >&5 |
7139 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7101 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7140 | (exit $ac_status); } && | 7102 | (exit $ac_status); } && |
7141 | { ac_try='test -z "$ac_c_werror_flag" | 7103 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
7142 | || test ! -s conftest.err' | ||
7143 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7104 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
7144 | (eval $ac_try) 2>&5 | 7105 | (eval $ac_try) 2>&5 |
7145 | ac_status=$? | 7106 | ac_status=$? |
@@ -7205,8 +7166,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
7205 | cat conftest.err >&5 | 7166 | cat conftest.err >&5 |
7206 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7167 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7207 | (exit $ac_status); } && | 7168 | (exit $ac_status); } && |
7208 | { ac_try='test -z "$ac_c_werror_flag" | 7169 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
7209 | || test ! -s conftest.err' | ||
7210 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7170 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
7211 | (eval $ac_try) 2>&5 | 7171 | (eval $ac_try) 2>&5 |
7212 | ac_status=$? | 7172 | ac_status=$? |
@@ -7307,8 +7267,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
7307 | cat conftest.err >&5 | 7267 | cat conftest.err >&5 |
7308 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7268 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7309 | (exit $ac_status); } && | 7269 | (exit $ac_status); } && |
7310 | { ac_try='test -z "$ac_c_werror_flag" | 7270 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
7311 | || test ! -s conftest.err' | ||
7312 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7271 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
7313 | (eval $ac_try) 2>&5 | 7272 | (eval $ac_try) 2>&5 |
7314 | ac_status=$? | 7273 | ac_status=$? |
@@ -7374,8 +7333,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
7374 | cat conftest.err >&5 | 7333 | cat conftest.err >&5 |
7375 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7334 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7376 | (exit $ac_status); } && | 7335 | (exit $ac_status); } && |
7377 | { ac_try='test -z "$ac_c_werror_flag" | 7336 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
7378 | || test ! -s conftest.err' | ||
7379 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7337 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
7380 | (eval $ac_try) 2>&5 | 7338 | (eval $ac_try) 2>&5 |
7381 | ac_status=$? | 7339 | ac_status=$? |
@@ -7481,8 +7439,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
7481 | cat conftest.err >&5 | 7439 | cat conftest.err >&5 |
7482 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7440 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7483 | (exit $ac_status); } && | 7441 | (exit $ac_status); } && |
7484 | { ac_try='test -z "$ac_c_werror_flag" | 7442 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
7485 | || test ! -s conftest.err' | ||
7486 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7443 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
7487 | (eval $ac_try) 2>&5 | 7444 | (eval $ac_try) 2>&5 |
7488 | ac_status=$? | 7445 | ac_status=$? |
@@ -7544,8 +7501,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
7544 | cat conftest.err >&5 | 7501 | cat conftest.err >&5 |
7545 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7502 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7546 | (exit $ac_status); } && | 7503 | (exit $ac_status); } && |
7547 | { ac_try='test -z "$ac_c_werror_flag" | 7504 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
7548 | || test ! -s conftest.err' | ||
7549 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7505 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
7550 | (eval $ac_try) 2>&5 | 7506 | (eval $ac_try) 2>&5 |
7551 | ac_status=$? | 7507 | ac_status=$? |
@@ -7700,8 +7656,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
7700 | cat conftest.err >&5 | 7656 | cat conftest.err >&5 |
7701 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7657 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7702 | (exit $ac_status); } && | 7658 | (exit $ac_status); } && |
7703 | { ac_try='test -z "$ac_c_werror_flag" | 7659 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
7704 | || test ! -s conftest.err' | ||
7705 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7660 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
7706 | (eval $ac_try) 2>&5 | 7661 | (eval $ac_try) 2>&5 |
7707 | ac_status=$? | 7662 | ac_status=$? |
@@ -7834,8 +7789,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
7834 | cat conftest.err >&5 | 7789 | cat conftest.err >&5 |
7835 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7790 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
7836 | (exit $ac_status); } && | 7791 | (exit $ac_status); } && |
7837 | { ac_try='test -z "$ac_c_werror_flag" | 7792 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
7838 | || test ! -s conftest.err' | ||
7839 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7793 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
7840 | (eval $ac_try) 2>&5 | 7794 | (eval $ac_try) 2>&5 |
7841 | ac_status=$? | 7795 | ac_status=$? |
@@ -8024,8 +7978,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
8024 | cat conftest.err >&5 | 7978 | cat conftest.err >&5 |
8025 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 7979 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8026 | (exit $ac_status); } && | 7980 | (exit $ac_status); } && |
8027 | { ac_try='test -z "$ac_c_werror_flag" | 7981 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8028 | || test ! -s conftest.err' | ||
8029 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 7982 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
8030 | (eval $ac_try) 2>&5 | 7983 | (eval $ac_try) 2>&5 |
8031 | ac_status=$? | 7984 | ac_status=$? |
@@ -8090,8 +8043,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
8090 | cat conftest.err >&5 | 8043 | cat conftest.err >&5 |
8091 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8044 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8092 | (exit $ac_status); } && | 8045 | (exit $ac_status); } && |
8093 | { ac_try='test -z "$ac_c_werror_flag" | 8046 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8094 | || test ! -s conftest.err' | ||
8095 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8047 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
8096 | (eval $ac_try) 2>&5 | 8048 | (eval $ac_try) 2>&5 |
8097 | ac_status=$? | 8049 | ac_status=$? |
@@ -8160,8 +8112,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
8160 | cat conftest.err >&5 | 8112 | cat conftest.err >&5 |
8161 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8113 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8162 | (exit $ac_status); } && | 8114 | (exit $ac_status); } && |
8163 | { ac_try='test -z "$ac_c_werror_flag" | 8115 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8164 | || test ! -s conftest.err' | ||
8165 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8116 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
8166 | (eval $ac_try) 2>&5 | 8117 | (eval $ac_try) 2>&5 |
8167 | ac_status=$? | 8118 | ac_status=$? |
@@ -8215,8 +8166,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
8215 | cat conftest.err >&5 | 8166 | cat conftest.err >&5 |
8216 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8167 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8217 | (exit $ac_status); } && | 8168 | (exit $ac_status); } && |
8218 | { ac_try='test -z "$ac_c_werror_flag" | 8169 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8219 | || test ! -s conftest.err' | ||
8220 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8170 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
8221 | (eval $ac_try) 2>&5 | 8171 | (eval $ac_try) 2>&5 |
8222 | ac_status=$? | 8172 | ac_status=$? |
@@ -8322,8 +8272,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
8322 | cat conftest.err >&5 | 8272 | cat conftest.err >&5 |
8323 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8273 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8324 | (exit $ac_status); } && | 8274 | (exit $ac_status); } && |
8325 | { ac_try='test -z "$ac_c_werror_flag" | 8275 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8326 | || test ! -s conftest.err' | ||
8327 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8276 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
8328 | (eval $ac_try) 2>&5 | 8277 | (eval $ac_try) 2>&5 |
8329 | ac_status=$? | 8278 | ac_status=$? |
@@ -8398,8 +8347,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
8398 | cat conftest.err >&5 | 8347 | cat conftest.err >&5 |
8399 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8348 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8400 | (exit $ac_status); } && | 8349 | (exit $ac_status); } && |
8401 | { ac_try='test -z "$ac_c_werror_flag" | 8350 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8402 | || test ! -s conftest.err' | ||
8403 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8351 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
8404 | (eval $ac_try) 2>&5 | 8352 | (eval $ac_try) 2>&5 |
8405 | ac_status=$? | 8353 | ac_status=$? |
@@ -8462,8 +8410,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
8462 | cat conftest.err >&5 | 8410 | cat conftest.err >&5 |
8463 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8411 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8464 | (exit $ac_status); } && | 8412 | (exit $ac_status); } && |
8465 | { ac_try='test -z "$ac_c_werror_flag" | 8413 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8466 | || test ! -s conftest.err' | ||
8467 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8414 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
8468 | (eval $ac_try) 2>&5 | 8415 | (eval $ac_try) 2>&5 |
8469 | ac_status=$? | 8416 | ac_status=$? |
@@ -8738,8 +8685,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
8738 | cat conftest.err >&5 | 8685 | cat conftest.err >&5 |
8739 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8686 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8740 | (exit $ac_status); } && | 8687 | (exit $ac_status); } && |
8741 | { ac_try='test -z "$ac_c_werror_flag" | 8688 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8742 | || test ! -s conftest.err' | ||
8743 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8689 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
8744 | (eval $ac_try) 2>&5 | 8690 | (eval $ac_try) 2>&5 |
8745 | ac_status=$? | 8691 | ac_status=$? |
@@ -8804,8 +8750,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
8804 | cat conftest.err >&5 | 8750 | cat conftest.err >&5 |
8805 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8751 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8806 | (exit $ac_status); } && | 8752 | (exit $ac_status); } && |
8807 | { ac_try='test -z "$ac_c_werror_flag" | 8753 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8808 | || test ! -s conftest.err' | ||
8809 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8754 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
8810 | (eval $ac_try) 2>&5 | 8755 | (eval $ac_try) 2>&5 |
8811 | ac_status=$? | 8756 | ac_status=$? |
@@ -8902,8 +8847,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
8902 | cat conftest.err >&5 | 8847 | cat conftest.err >&5 |
8903 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8848 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8904 | (exit $ac_status); } && | 8849 | (exit $ac_status); } && |
8905 | { ac_try='test -z "$ac_c_werror_flag" | 8850 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8906 | || test ! -s conftest.err' | ||
8907 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8851 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
8908 | (eval $ac_try) 2>&5 | 8852 | (eval $ac_try) 2>&5 |
8909 | ac_status=$? | 8853 | ac_status=$? |
@@ -8968,8 +8912,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
8968 | cat conftest.err >&5 | 8912 | cat conftest.err >&5 |
8969 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8913 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
8970 | (exit $ac_status); } && | 8914 | (exit $ac_status); } && |
8971 | { ac_try='test -z "$ac_c_werror_flag" | 8915 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
8972 | || test ! -s conftest.err' | ||
8973 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8916 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
8974 | (eval $ac_try) 2>&5 | 8917 | (eval $ac_try) 2>&5 |
8975 | ac_status=$? | 8918 | ac_status=$? |
@@ -9040,8 +8983,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
9040 | cat conftest.err >&5 | 8983 | cat conftest.err >&5 |
9041 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 8984 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9042 | (exit $ac_status); } && | 8985 | (exit $ac_status); } && |
9043 | { ac_try='test -z "$ac_c_werror_flag" | 8986 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9044 | || test ! -s conftest.err' | ||
9045 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 8987 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
9046 | (eval $ac_try) 2>&5 | 8988 | (eval $ac_try) 2>&5 |
9047 | ac_status=$? | 8989 | ac_status=$? |
@@ -9194,8 +9136,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
9194 | cat conftest.err >&5 | 9136 | cat conftest.err >&5 |
9195 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9137 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9196 | (exit $ac_status); } && | 9138 | (exit $ac_status); } && |
9197 | { ac_try='test -z "$ac_c_werror_flag" | 9139 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9198 | || test ! -s conftest.err' | ||
9199 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9140 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
9200 | (eval $ac_try) 2>&5 | 9141 | (eval $ac_try) 2>&5 |
9201 | ac_status=$? | 9142 | ac_status=$? |
@@ -9249,8 +9190,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
9249 | cat conftest.err >&5 | 9190 | cat conftest.err >&5 |
9250 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9191 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9251 | (exit $ac_status); } && | 9192 | (exit $ac_status); } && |
9252 | { ac_try='test -z "$ac_c_werror_flag" | 9193 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9253 | || test ! -s conftest.err' | ||
9254 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9194 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
9255 | (eval $ac_try) 2>&5 | 9195 | (eval $ac_try) 2>&5 |
9256 | ac_status=$? | 9196 | ac_status=$? |
@@ -9356,8 +9296,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
9356 | cat conftest.err >&5 | 9296 | cat conftest.err >&5 |
9357 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9297 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9358 | (exit $ac_status); } && | 9298 | (exit $ac_status); } && |
9359 | { ac_try='test -z "$ac_c_werror_flag" | 9299 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9360 | || test ! -s conftest.err' | ||
9361 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9300 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
9362 | (eval $ac_try) 2>&5 | 9301 | (eval $ac_try) 2>&5 |
9363 | ac_status=$? | 9302 | ac_status=$? |
@@ -9459,8 +9398,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
9459 | cat conftest.err >&5 | 9398 | cat conftest.err >&5 |
9460 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9399 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9461 | (exit $ac_status); } && | 9400 | (exit $ac_status); } && |
9462 | { ac_try='test -z "$ac_c_werror_flag" | 9401 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9463 | || test ! -s conftest.err' | ||
9464 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9402 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
9465 | (eval $ac_try) 2>&5 | 9403 | (eval $ac_try) 2>&5 |
9466 | ac_status=$? | 9404 | ac_status=$? |
@@ -9529,8 +9467,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
9529 | cat conftest.err >&5 | 9467 | cat conftest.err >&5 |
9530 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9468 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9531 | (exit $ac_status); } && | 9469 | (exit $ac_status); } && |
9532 | { ac_try='test -z "$ac_c_werror_flag" | 9470 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9533 | || test ! -s conftest.err' | ||
9534 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9471 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
9535 | (eval $ac_try) 2>&5 | 9472 | (eval $ac_try) 2>&5 |
9536 | ac_status=$? | 9473 | ac_status=$? |
@@ -9805,8 +9742,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
9805 | cat conftest.err >&5 | 9742 | cat conftest.err >&5 |
9806 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9743 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9807 | (exit $ac_status); } && | 9744 | (exit $ac_status); } && |
9808 | { ac_try='test -z "$ac_c_werror_flag" | 9745 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9809 | || test ! -s conftest.err' | ||
9810 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9746 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
9811 | (eval $ac_try) 2>&5 | 9747 | (eval $ac_try) 2>&5 |
9812 | ac_status=$? | 9748 | ac_status=$? |
@@ -9904,8 +9840,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
9904 | cat conftest.err >&5 | 9840 | cat conftest.err >&5 |
9905 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9841 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9906 | (exit $ac_status); } && | 9842 | (exit $ac_status); } && |
9907 | { ac_try='test -z "$ac_c_werror_flag" | 9843 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
9908 | || test ! -s conftest.err' | ||
9909 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9844 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
9910 | (eval $ac_try) 2>&5 | 9845 | (eval $ac_try) 2>&5 |
9911 | ac_status=$? | 9846 | ac_status=$? |
@@ -9996,8 +9931,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
9996 | cat conftest.err >&5 | 9931 | cat conftest.err >&5 |
9997 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 9932 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
9998 | (exit $ac_status); } && | 9933 | (exit $ac_status); } && |
9999 | { ac_try='test -z "$ac_c_werror_flag" | 9934 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10000 | || test ! -s conftest.err' | ||
10001 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 9935 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
10002 | (eval $ac_try) 2>&5 | 9936 | (eval $ac_try) 2>&5 |
10003 | ac_status=$? | 9937 | ac_status=$? |
@@ -10089,8 +10023,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
10089 | cat conftest.err >&5 | 10023 | cat conftest.err >&5 |
10090 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10024 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10091 | (exit $ac_status); } && | 10025 | (exit $ac_status); } && |
10092 | { ac_try='test -z "$ac_c_werror_flag" | 10026 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10093 | || test ! -s conftest.err' | ||
10094 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10027 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
10095 | (eval $ac_try) 2>&5 | 10028 | (eval $ac_try) 2>&5 |
10096 | ac_status=$? | 10029 | ac_status=$? |
@@ -10248,8 +10181,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
10248 | cat conftest.err >&5 | 10181 | cat conftest.err >&5 |
10249 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10182 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10250 | (exit $ac_status); } && | 10183 | (exit $ac_status); } && |
10251 | { ac_try='test -z "$ac_c_werror_flag" | 10184 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10252 | || test ! -s conftest.err' | ||
10253 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10185 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
10254 | (eval $ac_try) 2>&5 | 10186 | (eval $ac_try) 2>&5 |
10255 | ac_status=$? | 10187 | ac_status=$? |
@@ -10356,8 +10288,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
10356 | cat conftest.err >&5 | 10288 | cat conftest.err >&5 |
10357 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10289 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10358 | (exit $ac_status); } && | 10290 | (exit $ac_status); } && |
10359 | { ac_try='test -z "$ac_c_werror_flag" | 10291 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10360 | || test ! -s conftest.err' | ||
10361 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10292 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
10362 | (eval $ac_try) 2>&5 | 10293 | (eval $ac_try) 2>&5 |
10363 | ac_status=$? | 10294 | ac_status=$? |
@@ -10463,8 +10394,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
10463 | cat conftest.err >&5 | 10394 | cat conftest.err >&5 |
10464 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10395 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10465 | (exit $ac_status); } && | 10396 | (exit $ac_status); } && |
10466 | { ac_try='test -z "$ac_c_werror_flag" | 10397 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10467 | || test ! -s conftest.err' | ||
10468 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10398 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
10469 | (eval $ac_try) 2>&5 | 10399 | (eval $ac_try) 2>&5 |
10470 | ac_status=$? | 10400 | ac_status=$? |
@@ -10680,8 +10610,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
10680 | cat conftest.err >&5 | 10610 | cat conftest.err >&5 |
10681 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10611 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10682 | (exit $ac_status); } && | 10612 | (exit $ac_status); } && |
10683 | { ac_try='test -z "$ac_c_werror_flag" | 10613 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10684 | || test ! -s conftest.err' | ||
10685 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10614 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
10686 | (eval $ac_try) 2>&5 | 10615 | (eval $ac_try) 2>&5 |
10687 | ac_status=$? | 10616 | ac_status=$? |
@@ -10784,8 +10713,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
10784 | cat conftest.err >&5 | 10713 | cat conftest.err >&5 |
10785 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10714 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10786 | (exit $ac_status); } && | 10715 | (exit $ac_status); } && |
10787 | { ac_try='test -z "$ac_c_werror_flag" | 10716 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10788 | || test ! -s conftest.err' | ||
10789 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10717 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
10790 | (eval $ac_try) 2>&5 | 10718 | (eval $ac_try) 2>&5 |
10791 | ac_status=$? | 10719 | ac_status=$? |
@@ -10850,8 +10778,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
10850 | cat conftest.err >&5 | 10778 | cat conftest.err >&5 |
10851 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10779 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10852 | (exit $ac_status); } && | 10780 | (exit $ac_status); } && |
10853 | { ac_try='test -z "$ac_c_werror_flag" | 10781 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10854 | || test ! -s conftest.err' | ||
10855 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10782 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
10856 | (eval $ac_try) 2>&5 | 10783 | (eval $ac_try) 2>&5 |
10857 | ac_status=$? | 10784 | ac_status=$? |
@@ -10917,8 +10844,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
10917 | cat conftest.err >&5 | 10844 | cat conftest.err >&5 |
10918 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10845 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10919 | (exit $ac_status); } && | 10846 | (exit $ac_status); } && |
10920 | { ac_try='test -z "$ac_c_werror_flag" | 10847 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10921 | || test ! -s conftest.err' | ||
10922 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10848 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
10923 | (eval $ac_try) 2>&5 | 10849 | (eval $ac_try) 2>&5 |
10924 | ac_status=$? | 10850 | ac_status=$? |
@@ -10972,8 +10898,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
10972 | cat conftest.err >&5 | 10898 | cat conftest.err >&5 |
10973 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10899 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
10974 | (exit $ac_status); } && | 10900 | (exit $ac_status); } && |
10975 | { ac_try='test -z "$ac_c_werror_flag" | 10901 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
10976 | || test ! -s conftest.err' | ||
10977 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10902 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
10978 | (eval $ac_try) 2>&5 | 10903 | (eval $ac_try) 2>&5 |
10979 | ac_status=$? | 10904 | ac_status=$? |
@@ -11041,8 +10966,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
11041 | cat conftest.err >&5 | 10966 | cat conftest.err >&5 |
11042 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 10967 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11043 | (exit $ac_status); } && | 10968 | (exit $ac_status); } && |
11044 | { ac_try='test -z "$ac_c_werror_flag" | 10969 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11045 | || test ! -s conftest.err' | ||
11046 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 10970 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
11047 | (eval $ac_try) 2>&5 | 10971 | (eval $ac_try) 2>&5 |
11048 | ac_status=$? | 10972 | ac_status=$? |
@@ -11135,8 +11059,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
11135 | cat conftest.err >&5 | 11059 | cat conftest.err >&5 |
11136 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11060 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11137 | (exit $ac_status); } && | 11061 | (exit $ac_status); } && |
11138 | { ac_try='test -z "$ac_c_werror_flag" | 11062 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11139 | || test ! -s conftest.err' | ||
11140 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11063 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
11141 | (eval $ac_try) 2>&5 | 11064 | (eval $ac_try) 2>&5 |
11142 | ac_status=$? | 11065 | ac_status=$? |
@@ -11202,8 +11125,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
11202 | cat conftest.err >&5 | 11125 | cat conftest.err >&5 |
11203 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11126 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11204 | (exit $ac_status); } && | 11127 | (exit $ac_status); } && |
11205 | { ac_try='test -z "$ac_c_werror_flag" | 11128 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11206 | || test ! -s conftest.err' | ||
11207 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11129 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
11208 | (eval $ac_try) 2>&5 | 11130 | (eval $ac_try) 2>&5 |
11209 | ac_status=$? | 11131 | ac_status=$? |
@@ -11296,8 +11218,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
11296 | cat conftest.err >&5 | 11218 | cat conftest.err >&5 |
11297 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11219 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11298 | (exit $ac_status); } && | 11220 | (exit $ac_status); } && |
11299 | { ac_try='test -z "$ac_c_werror_flag" | 11221 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11300 | || test ! -s conftest.err' | ||
11301 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11222 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
11302 | (eval $ac_try) 2>&5 | 11223 | (eval $ac_try) 2>&5 |
11303 | ac_status=$? | 11224 | ac_status=$? |
@@ -11366,8 +11287,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
11366 | cat conftest.err >&5 | 11287 | cat conftest.err >&5 |
11367 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11288 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11368 | (exit $ac_status); } && | 11289 | (exit $ac_status); } && |
11369 | { ac_try='test -z "$ac_c_werror_flag" | 11290 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11370 | || test ! -s conftest.err' | ||
11371 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11291 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
11372 | (eval $ac_try) 2>&5 | 11292 | (eval $ac_try) 2>&5 |
11373 | ac_status=$? | 11293 | ac_status=$? |
@@ -11465,8 +11385,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
11465 | cat conftest.err >&5 | 11385 | cat conftest.err >&5 |
11466 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11386 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11467 | (exit $ac_status); } && | 11387 | (exit $ac_status); } && |
11468 | { ac_try='test -z "$ac_c_werror_flag" | 11388 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11469 | || test ! -s conftest.err' | ||
11470 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11389 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
11471 | (eval $ac_try) 2>&5 | 11390 | (eval $ac_try) 2>&5 |
11472 | ac_status=$? | 11391 | ac_status=$? |
@@ -11534,8 +11453,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
11534 | cat conftest.err >&5 | 11453 | cat conftest.err >&5 |
11535 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11454 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11536 | (exit $ac_status); } && | 11455 | (exit $ac_status); } && |
11537 | { ac_try='test -z "$ac_c_werror_flag" | 11456 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11538 | || test ! -s conftest.err' | ||
11539 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11457 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
11540 | (eval $ac_try) 2>&5 | 11458 | (eval $ac_try) 2>&5 |
11541 | ac_status=$? | 11459 | ac_status=$? |
@@ -11644,8 +11562,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
11644 | cat conftest.err >&5 | 11562 | cat conftest.err >&5 |
11645 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11563 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11646 | (exit $ac_status); } && | 11564 | (exit $ac_status); } && |
11647 | { ac_try='test -z "$ac_c_werror_flag" | 11565 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11648 | || test ! -s conftest.err' | ||
11649 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11566 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
11650 | (eval $ac_try) 2>&5 | 11567 | (eval $ac_try) 2>&5 |
11651 | ac_status=$? | 11568 | ac_status=$? |
@@ -11795,8 +11712,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
11795 | cat conftest.err >&5 | 11712 | cat conftest.err >&5 |
11796 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11713 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11797 | (exit $ac_status); } && | 11714 | (exit $ac_status); } && |
11798 | { ac_try='test -z "$ac_c_werror_flag" | 11715 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11799 | || test ! -s conftest.err' | ||
11800 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11716 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
11801 | (eval $ac_try) 2>&5 | 11717 | (eval $ac_try) 2>&5 |
11802 | ac_status=$? | 11718 | ac_status=$? |
@@ -11947,8 +11863,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
11947 | cat conftest.err >&5 | 11863 | cat conftest.err >&5 |
11948 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11864 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
11949 | (exit $ac_status); } && | 11865 | (exit $ac_status); } && |
11950 | { ac_try='test -z "$ac_c_werror_flag" | 11866 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
11951 | || test ! -s conftest.err' | ||
11952 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11867 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
11953 | (eval $ac_try) 2>&5 | 11868 | (eval $ac_try) 2>&5 |
11954 | ac_status=$? | 11869 | ac_status=$? |
@@ -12054,8 +11969,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
12054 | cat conftest.err >&5 | 11969 | cat conftest.err >&5 |
12055 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 11970 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12056 | (exit $ac_status); } && | 11971 | (exit $ac_status); } && |
12057 | { ac_try='test -z "$ac_c_werror_flag" | 11972 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12058 | || test ! -s conftest.err' | ||
12059 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 11973 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
12060 | (eval $ac_try) 2>&5 | 11974 | (eval $ac_try) 2>&5 |
12061 | ac_status=$? | 11975 | ac_status=$? |
@@ -12156,8 +12070,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
12156 | cat conftest.err >&5 | 12070 | cat conftest.err >&5 |
12157 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12071 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12158 | (exit $ac_status); } && | 12072 | (exit $ac_status); } && |
12159 | { ac_try='test -z "$ac_c_werror_flag" | 12073 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12160 | || test ! -s conftest.err' | ||
12161 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12074 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
12162 | (eval $ac_try) 2>&5 | 12075 | (eval $ac_try) 2>&5 |
12163 | ac_status=$? | 12076 | ac_status=$? |
@@ -12262,8 +12175,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
12262 | cat conftest.err >&5 | 12175 | cat conftest.err >&5 |
12263 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12176 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12264 | (exit $ac_status); } && | 12177 | (exit $ac_status); } && |
12265 | { ac_try='test -z "$ac_c_werror_flag" | 12178 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12266 | || test ! -s conftest.err' | ||
12267 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12179 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
12268 | (eval $ac_try) 2>&5 | 12180 | (eval $ac_try) 2>&5 |
12269 | ac_status=$? | 12181 | ac_status=$? |
@@ -12365,8 +12277,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
12365 | cat conftest.err >&5 | 12277 | cat conftest.err >&5 |
12366 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12278 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12367 | (exit $ac_status); } && | 12279 | (exit $ac_status); } && |
12368 | { ac_try='test -z "$ac_c_werror_flag" | 12280 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12369 | || test ! -s conftest.err' | ||
12370 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12281 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
12371 | (eval $ac_try) 2>&5 | 12282 | (eval $ac_try) 2>&5 |
12372 | ac_status=$? | 12283 | ac_status=$? |
@@ -12464,8 +12375,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
12464 | cat conftest.err >&5 | 12375 | cat conftest.err >&5 |
12465 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12376 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12466 | (exit $ac_status); } && | 12377 | (exit $ac_status); } && |
12467 | { ac_try='test -z "$ac_c_werror_flag" | 12378 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12468 | || test ! -s conftest.err' | ||
12469 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12379 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
12470 | (eval $ac_try) 2>&5 | 12380 | (eval $ac_try) 2>&5 |
12471 | ac_status=$? | 12381 | ac_status=$? |
@@ -12533,8 +12443,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
12533 | cat conftest.err >&5 | 12443 | cat conftest.err >&5 |
12534 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12444 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12535 | (exit $ac_status); } && | 12445 | (exit $ac_status); } && |
12536 | { ac_try='test -z "$ac_c_werror_flag" | 12446 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12537 | || test ! -s conftest.err' | ||
12538 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12447 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
12539 | (eval $ac_try) 2>&5 | 12448 | (eval $ac_try) 2>&5 |
12540 | ac_status=$? | 12449 | ac_status=$? |
@@ -12635,8 +12544,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
12635 | cat conftest.err >&5 | 12544 | cat conftest.err >&5 |
12636 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12545 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12637 | (exit $ac_status); } && | 12546 | (exit $ac_status); } && |
12638 | { ac_try='test -z "$ac_c_werror_flag" | 12547 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12639 | || test ! -s conftest.err' | ||
12640 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12548 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
12641 | (eval $ac_try) 2>&5 | 12549 | (eval $ac_try) 2>&5 |
12642 | ac_status=$? | 12550 | ac_status=$? |
@@ -12704,8 +12612,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
12704 | cat conftest.err >&5 | 12612 | cat conftest.err >&5 |
12705 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12613 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12706 | (exit $ac_status); } && | 12614 | (exit $ac_status); } && |
12707 | { ac_try='test -z "$ac_c_werror_flag" | 12615 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12708 | || test ! -s conftest.err' | ||
12709 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12616 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
12710 | (eval $ac_try) 2>&5 | 12617 | (eval $ac_try) 2>&5 |
12711 | ac_status=$? | 12618 | ac_status=$? |
@@ -12825,8 +12732,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
12825 | cat conftest.err >&5 | 12732 | cat conftest.err >&5 |
12826 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 12733 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
12827 | (exit $ac_status); } && | 12734 | (exit $ac_status); } && |
12828 | { ac_try='test -z "$ac_c_werror_flag" | 12735 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
12829 | || test ! -s conftest.err' | ||
12830 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 12736 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
12831 | (eval $ac_try) 2>&5 | 12737 | (eval $ac_try) 2>&5 |
12832 | ac_status=$? | 12738 | ac_status=$? |
@@ -13233,8 +13139,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
13233 | cat conftest.err >&5 | 13139 | cat conftest.err >&5 |
13234 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13140 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13235 | (exit $ac_status); } && | 13141 | (exit $ac_status); } && |
13236 | { ac_try='test -z "$ac_c_werror_flag" | 13142 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13237 | || test ! -s conftest.err' | ||
13238 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13143 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
13239 | (eval $ac_try) 2>&5 | 13144 | (eval $ac_try) 2>&5 |
13240 | ac_status=$? | 13145 | ac_status=$? |
@@ -13298,8 +13203,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
13298 | cat conftest.err >&5 | 13203 | cat conftest.err >&5 |
13299 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13204 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13300 | (exit $ac_status); } && | 13205 | (exit $ac_status); } && |
13301 | { ac_try='test -z "$ac_c_werror_flag" | 13206 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13302 | || test ! -s conftest.err' | ||
13303 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13207 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
13304 | (eval $ac_try) 2>&5 | 13208 | (eval $ac_try) 2>&5 |
13305 | ac_status=$? | 13209 | ac_status=$? |
@@ -13386,8 +13290,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
13386 | cat conftest.err >&5 | 13290 | cat conftest.err >&5 |
13387 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13291 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13388 | (exit $ac_status); } && | 13292 | (exit $ac_status); } && |
13389 | { ac_try='test -z "$ac_c_werror_flag" | 13293 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13390 | || test ! -s conftest.err' | ||
13391 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13294 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
13392 | (eval $ac_try) 2>&5 | 13295 | (eval $ac_try) 2>&5 |
13393 | ac_status=$? | 13296 | ac_status=$? |
@@ -13460,8 +13363,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
13460 | cat conftest.err >&5 | 13363 | cat conftest.err >&5 |
13461 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13364 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13462 | (exit $ac_status); } && | 13365 | (exit $ac_status); } && |
13463 | { ac_try='test -z "$ac_c_werror_flag" | 13366 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13464 | || test ! -s conftest.err' | ||
13465 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13367 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
13466 | (eval $ac_try) 2>&5 | 13368 | (eval $ac_try) 2>&5 |
13467 | ac_status=$? | 13369 | ac_status=$? |
@@ -13568,8 +13470,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
13568 | cat conftest.err >&5 | 13470 | cat conftest.err >&5 |
13569 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13471 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13570 | (exit $ac_status); } && | 13472 | (exit $ac_status); } && |
13571 | { ac_try='test -z "$ac_c_werror_flag" | 13473 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13572 | || test ! -s conftest.err' | ||
13573 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13474 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
13574 | (eval $ac_try) 2>&5 | 13475 | (eval $ac_try) 2>&5 |
13575 | ac_status=$? | 13476 | ac_status=$? |
@@ -13670,8 +13571,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
13670 | cat conftest.err >&5 | 13571 | cat conftest.err >&5 |
13671 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13572 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13672 | (exit $ac_status); } && | 13573 | (exit $ac_status); } && |
13673 | { ac_try='test -z "$ac_c_werror_flag" | 13574 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13674 | || test ! -s conftest.err' | ||
13675 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13575 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
13676 | (eval $ac_try) 2>&5 | 13576 | (eval $ac_try) 2>&5 |
13677 | ac_status=$? | 13577 | ac_status=$? |
@@ -13757,8 +13657,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
13757 | cat conftest.err >&5 | 13657 | cat conftest.err >&5 |
13758 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13658 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13759 | (exit $ac_status); } && | 13659 | (exit $ac_status); } && |
13760 | { ac_try='test -z "$ac_c_werror_flag" | 13660 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13761 | || test ! -s conftest.err' | ||
13762 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13661 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
13763 | (eval $ac_try) 2>&5 | 13662 | (eval $ac_try) 2>&5 |
13764 | ac_status=$? | 13663 | ac_status=$? |
@@ -13857,8 +13756,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
13857 | cat conftest.err >&5 | 13756 | cat conftest.err >&5 |
13858 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13757 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13859 | (exit $ac_status); } && | 13758 | (exit $ac_status); } && |
13860 | { ac_try='test -z "$ac_c_werror_flag" | 13759 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13861 | || test ! -s conftest.err' | ||
13862 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13760 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
13863 | (eval $ac_try) 2>&5 | 13761 | (eval $ac_try) 2>&5 |
13864 | ac_status=$? | 13762 | ac_status=$? |
@@ -13916,8 +13814,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
13916 | cat conftest.err >&5 | 13814 | cat conftest.err >&5 |
13917 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 13815 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
13918 | (exit $ac_status); } && | 13816 | (exit $ac_status); } && |
13919 | { ac_try='test -z "$ac_c_werror_flag" | 13817 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
13920 | || test ! -s conftest.err' | ||
13921 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 13818 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
13922 | (eval $ac_try) 2>&5 | 13819 | (eval $ac_try) 2>&5 |
13923 | ac_status=$? | 13820 | ac_status=$? |
@@ -14191,8 +14088,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
14191 | cat conftest.err >&5 | 14088 | cat conftest.err >&5 |
14192 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14089 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14193 | (exit $ac_status); } && | 14090 | (exit $ac_status); } && |
14194 | { ac_try='test -z "$ac_c_werror_flag" | 14091 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
14195 | || test ! -s conftest.err' | ||
14196 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14092 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
14197 | (eval $ac_try) 2>&5 | 14093 | (eval $ac_try) 2>&5 |
14198 | ac_status=$? | 14094 | ac_status=$? |
@@ -14269,8 +14165,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
14269 | cat conftest.err >&5 | 14165 | cat conftest.err >&5 |
14270 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 14166 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
14271 | (exit $ac_status); } && | 14167 | (exit $ac_status); } && |
14272 | { ac_try='test -z "$ac_c_werror_flag" | 14168 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
14273 | || test ! -s conftest.err' | ||
14274 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 14169 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
14275 | (eval $ac_try) 2>&5 | 14170 | (eval $ac_try) 2>&5 |
14276 | ac_status=$? | 14171 | ac_status=$? |
@@ -15329,8 +15224,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
15329 | cat conftest.err >&5 | 15224 | cat conftest.err >&5 |
15330 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15225 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15331 | (exit $ac_status); } && | 15226 | (exit $ac_status); } && |
15332 | { ac_try='test -z "$ac_c_werror_flag" | 15227 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
15333 | || test ! -s conftest.err' | ||
15334 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15228 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
15335 | (eval $ac_try) 2>&5 | 15229 | (eval $ac_try) 2>&5 |
15336 | ac_status=$? | 15230 | ac_status=$? |
@@ -15392,8 +15286,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
15392 | cat conftest.err >&5 | 15286 | cat conftest.err >&5 |
15393 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15287 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15394 | (exit $ac_status); } && | 15288 | (exit $ac_status); } && |
15395 | { ac_try='test -z "$ac_c_werror_flag" | 15289 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
15396 | || test ! -s conftest.err' | ||
15397 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15290 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
15398 | (eval $ac_try) 2>&5 | 15291 | (eval $ac_try) 2>&5 |
15399 | ac_status=$? | 15292 | ac_status=$? |
@@ -15433,8 +15326,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
15433 | cat conftest.err >&5 | 15326 | cat conftest.err >&5 |
15434 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15327 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15435 | (exit $ac_status); } && | 15328 | (exit $ac_status); } && |
15436 | { ac_try='test -z "$ac_c_werror_flag" | 15329 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
15437 | || test ! -s conftest.err' | ||
15438 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15330 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
15439 | (eval $ac_try) 2>&5 | 15331 | (eval $ac_try) 2>&5 |
15440 | ac_status=$? | 15332 | ac_status=$? |
@@ -15490,8 +15382,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
15490 | cat conftest.err >&5 | 15382 | cat conftest.err >&5 |
15491 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15383 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15492 | (exit $ac_status); } && | 15384 | (exit $ac_status); } && |
15493 | { ac_try='test -z "$ac_c_werror_flag" | 15385 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
15494 | || test ! -s conftest.err' | ||
15495 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15386 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
15496 | (eval $ac_try) 2>&5 | 15387 | (eval $ac_try) 2>&5 |
15497 | ac_status=$? | 15388 | ac_status=$? |
@@ -15531,8 +15422,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
15531 | cat conftest.err >&5 | 15422 | cat conftest.err >&5 |
15532 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15423 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15533 | (exit $ac_status); } && | 15424 | (exit $ac_status); } && |
15534 | { ac_try='test -z "$ac_c_werror_flag" | 15425 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
15535 | || test ! -s conftest.err' | ||
15536 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15426 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
15537 | (eval $ac_try) 2>&5 | 15427 | (eval $ac_try) 2>&5 |
15538 | ac_status=$? | 15428 | ac_status=$? |
@@ -15596,8 +15486,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
15596 | cat conftest.err >&5 | 15486 | cat conftest.err >&5 |
15597 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15487 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15598 | (exit $ac_status); } && | 15488 | (exit $ac_status); } && |
15599 | { ac_try='test -z "$ac_c_werror_flag" | 15489 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
15600 | || test ! -s conftest.err' | ||
15601 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15490 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
15602 | (eval $ac_try) 2>&5 | 15491 | (eval $ac_try) 2>&5 |
15603 | ac_status=$? | 15492 | ac_status=$? |
@@ -15628,10 +15517,8 @@ See \`config.log' for more details." >&2;} | |||
15628 | esac | 15517 | esac |
15629 | else | 15518 | else |
15630 | if test "$cross_compiling" = yes; then | 15519 | if test "$cross_compiling" = yes; then |
15631 | { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling | 15520 | { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5 |
15632 | See \`config.log' for more details." >&5 | 15521 | echo "$as_me: error: internal error: not reached in cross-compile" >&2;} |
15633 | echo "$as_me: error: cannot run test program while cross compiling | ||
15634 | See \`config.log' for more details." >&2;} | ||
15635 | { (exit 1); exit 1; }; } | 15522 | { (exit 1); exit 1; }; } |
15636 | else | 15523 | else |
15637 | cat >conftest.$ac_ext <<_ACEOF | 15524 | cat >conftest.$ac_ext <<_ACEOF |
@@ -15743,8 +15630,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
15743 | cat conftest.err >&5 | 15630 | cat conftest.err >&5 |
15744 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15631 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15745 | (exit $ac_status); } && | 15632 | (exit $ac_status); } && |
15746 | { ac_try='test -z "$ac_c_werror_flag" | 15633 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
15747 | || test ! -s conftest.err' | ||
15748 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15634 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
15749 | (eval $ac_try) 2>&5 | 15635 | (eval $ac_try) 2>&5 |
15750 | ac_status=$? | 15636 | ac_status=$? |
@@ -15806,8 +15692,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
15806 | cat conftest.err >&5 | 15692 | cat conftest.err >&5 |
15807 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15693 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15808 | (exit $ac_status); } && | 15694 | (exit $ac_status); } && |
15809 | { ac_try='test -z "$ac_c_werror_flag" | 15695 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
15810 | || test ! -s conftest.err' | ||
15811 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15696 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
15812 | (eval $ac_try) 2>&5 | 15697 | (eval $ac_try) 2>&5 |
15813 | ac_status=$? | 15698 | ac_status=$? |
@@ -15847,8 +15732,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
15847 | cat conftest.err >&5 | 15732 | cat conftest.err >&5 |
15848 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15733 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15849 | (exit $ac_status); } && | 15734 | (exit $ac_status); } && |
15850 | { ac_try='test -z "$ac_c_werror_flag" | 15735 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
15851 | || test ! -s conftest.err' | ||
15852 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15736 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
15853 | (eval $ac_try) 2>&5 | 15737 | (eval $ac_try) 2>&5 |
15854 | ac_status=$? | 15738 | ac_status=$? |
@@ -15904,8 +15788,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
15904 | cat conftest.err >&5 | 15788 | cat conftest.err >&5 |
15905 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15789 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15906 | (exit $ac_status); } && | 15790 | (exit $ac_status); } && |
15907 | { ac_try='test -z "$ac_c_werror_flag" | 15791 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
15908 | || test ! -s conftest.err' | ||
15909 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15792 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
15910 | (eval $ac_try) 2>&5 | 15793 | (eval $ac_try) 2>&5 |
15911 | ac_status=$? | 15794 | ac_status=$? |
@@ -15945,8 +15828,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
15945 | cat conftest.err >&5 | 15828 | cat conftest.err >&5 |
15946 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15829 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
15947 | (exit $ac_status); } && | 15830 | (exit $ac_status); } && |
15948 | { ac_try='test -z "$ac_c_werror_flag" | 15831 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
15949 | || test ! -s conftest.err' | ||
15950 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15832 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
15951 | (eval $ac_try) 2>&5 | 15833 | (eval $ac_try) 2>&5 |
15952 | ac_status=$? | 15834 | ac_status=$? |
@@ -16010,8 +15892,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
16010 | cat conftest.err >&5 | 15892 | cat conftest.err >&5 |
16011 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 15893 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16012 | (exit $ac_status); } && | 15894 | (exit $ac_status); } && |
16013 | { ac_try='test -z "$ac_c_werror_flag" | 15895 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16014 | || test ! -s conftest.err' | ||
16015 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 15896 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
16016 | (eval $ac_try) 2>&5 | 15897 | (eval $ac_try) 2>&5 |
16017 | ac_status=$? | 15898 | ac_status=$? |
@@ -16042,10 +15923,8 @@ See \`config.log' for more details." >&2;} | |||
16042 | esac | 15923 | esac |
16043 | else | 15924 | else |
16044 | if test "$cross_compiling" = yes; then | 15925 | if test "$cross_compiling" = yes; then |
16045 | { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling | 15926 | { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5 |
16046 | See \`config.log' for more details." >&5 | 15927 | echo "$as_me: error: internal error: not reached in cross-compile" >&2;} |
16047 | echo "$as_me: error: cannot run test program while cross compiling | ||
16048 | See \`config.log' for more details." >&2;} | ||
16049 | { (exit 1); exit 1; }; } | 15928 | { (exit 1); exit 1; }; } |
16050 | else | 15929 | else |
16051 | cat >conftest.$ac_ext <<_ACEOF | 15930 | cat >conftest.$ac_ext <<_ACEOF |
@@ -16157,8 +16036,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
16157 | cat conftest.err >&5 | 16036 | cat conftest.err >&5 |
16158 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16037 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16159 | (exit $ac_status); } && | 16038 | (exit $ac_status); } && |
16160 | { ac_try='test -z "$ac_c_werror_flag" | 16039 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16161 | || test ! -s conftest.err' | ||
16162 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16040 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
16163 | (eval $ac_try) 2>&5 | 16041 | (eval $ac_try) 2>&5 |
16164 | ac_status=$? | 16042 | ac_status=$? |
@@ -16220,8 +16098,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
16220 | cat conftest.err >&5 | 16098 | cat conftest.err >&5 |
16221 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16099 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16222 | (exit $ac_status); } && | 16100 | (exit $ac_status); } && |
16223 | { ac_try='test -z "$ac_c_werror_flag" | 16101 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16224 | || test ! -s conftest.err' | ||
16225 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16102 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
16226 | (eval $ac_try) 2>&5 | 16103 | (eval $ac_try) 2>&5 |
16227 | ac_status=$? | 16104 | ac_status=$? |
@@ -16261,8 +16138,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
16261 | cat conftest.err >&5 | 16138 | cat conftest.err >&5 |
16262 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16139 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16263 | (exit $ac_status); } && | 16140 | (exit $ac_status); } && |
16264 | { ac_try='test -z "$ac_c_werror_flag" | 16141 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16265 | || test ! -s conftest.err' | ||
16266 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16142 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
16267 | (eval $ac_try) 2>&5 | 16143 | (eval $ac_try) 2>&5 |
16268 | ac_status=$? | 16144 | ac_status=$? |
@@ -16318,8 +16194,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
16318 | cat conftest.err >&5 | 16194 | cat conftest.err >&5 |
16319 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16195 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16320 | (exit $ac_status); } && | 16196 | (exit $ac_status); } && |
16321 | { ac_try='test -z "$ac_c_werror_flag" | 16197 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16322 | || test ! -s conftest.err' | ||
16323 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16198 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
16324 | (eval $ac_try) 2>&5 | 16199 | (eval $ac_try) 2>&5 |
16325 | ac_status=$? | 16200 | ac_status=$? |
@@ -16359,8 +16234,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
16359 | cat conftest.err >&5 | 16234 | cat conftest.err >&5 |
16360 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16235 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16361 | (exit $ac_status); } && | 16236 | (exit $ac_status); } && |
16362 | { ac_try='test -z "$ac_c_werror_flag" | 16237 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16363 | || test ! -s conftest.err' | ||
16364 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16238 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
16365 | (eval $ac_try) 2>&5 | 16239 | (eval $ac_try) 2>&5 |
16366 | ac_status=$? | 16240 | ac_status=$? |
@@ -16424,8 +16298,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
16424 | cat conftest.err >&5 | 16298 | cat conftest.err >&5 |
16425 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16299 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16426 | (exit $ac_status); } && | 16300 | (exit $ac_status); } && |
16427 | { ac_try='test -z "$ac_c_werror_flag" | 16301 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16428 | || test ! -s conftest.err' | ||
16429 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16302 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
16430 | (eval $ac_try) 2>&5 | 16303 | (eval $ac_try) 2>&5 |
16431 | ac_status=$? | 16304 | ac_status=$? |
@@ -16456,10 +16329,8 @@ See \`config.log' for more details." >&2;} | |||
16456 | esac | 16329 | esac |
16457 | else | 16330 | else |
16458 | if test "$cross_compiling" = yes; then | 16331 | if test "$cross_compiling" = yes; then |
16459 | { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling | 16332 | { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5 |
16460 | See \`config.log' for more details." >&5 | 16333 | echo "$as_me: error: internal error: not reached in cross-compile" >&2;} |
16461 | echo "$as_me: error: cannot run test program while cross compiling | ||
16462 | See \`config.log' for more details." >&2;} | ||
16463 | { (exit 1); exit 1; }; } | 16334 | { (exit 1); exit 1; }; } |
16464 | else | 16335 | else |
16465 | cat >conftest.$ac_ext <<_ACEOF | 16336 | cat >conftest.$ac_ext <<_ACEOF |
@@ -16571,8 +16442,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
16571 | cat conftest.err >&5 | 16442 | cat conftest.err >&5 |
16572 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16443 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16573 | (exit $ac_status); } && | 16444 | (exit $ac_status); } && |
16574 | { ac_try='test -z "$ac_c_werror_flag" | 16445 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16575 | || test ! -s conftest.err' | ||
16576 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16446 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
16577 | (eval $ac_try) 2>&5 | 16447 | (eval $ac_try) 2>&5 |
16578 | ac_status=$? | 16448 | ac_status=$? |
@@ -16634,8 +16504,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
16634 | cat conftest.err >&5 | 16504 | cat conftest.err >&5 |
16635 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16505 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16636 | (exit $ac_status); } && | 16506 | (exit $ac_status); } && |
16637 | { ac_try='test -z "$ac_c_werror_flag" | 16507 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16638 | || test ! -s conftest.err' | ||
16639 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16508 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
16640 | (eval $ac_try) 2>&5 | 16509 | (eval $ac_try) 2>&5 |
16641 | ac_status=$? | 16510 | ac_status=$? |
@@ -16675,8 +16544,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
16675 | cat conftest.err >&5 | 16544 | cat conftest.err >&5 |
16676 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16545 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16677 | (exit $ac_status); } && | 16546 | (exit $ac_status); } && |
16678 | { ac_try='test -z "$ac_c_werror_flag" | 16547 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16679 | || test ! -s conftest.err' | ||
16680 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16548 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
16681 | (eval $ac_try) 2>&5 | 16549 | (eval $ac_try) 2>&5 |
16682 | ac_status=$? | 16550 | ac_status=$? |
@@ -16732,8 +16600,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
16732 | cat conftest.err >&5 | 16600 | cat conftest.err >&5 |
16733 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16601 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16734 | (exit $ac_status); } && | 16602 | (exit $ac_status); } && |
16735 | { ac_try='test -z "$ac_c_werror_flag" | 16603 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16736 | || test ! -s conftest.err' | ||
16737 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16604 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
16738 | (eval $ac_try) 2>&5 | 16605 | (eval $ac_try) 2>&5 |
16739 | ac_status=$? | 16606 | ac_status=$? |
@@ -16773,8 +16640,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
16773 | cat conftest.err >&5 | 16640 | cat conftest.err >&5 |
16774 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16641 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16775 | (exit $ac_status); } && | 16642 | (exit $ac_status); } && |
16776 | { ac_try='test -z "$ac_c_werror_flag" | 16643 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16777 | || test ! -s conftest.err' | ||
16778 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16644 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
16779 | (eval $ac_try) 2>&5 | 16645 | (eval $ac_try) 2>&5 |
16780 | ac_status=$? | 16646 | ac_status=$? |
@@ -16838,8 +16704,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
16838 | cat conftest.err >&5 | 16704 | cat conftest.err >&5 |
16839 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16705 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16840 | (exit $ac_status); } && | 16706 | (exit $ac_status); } && |
16841 | { ac_try='test -z "$ac_c_werror_flag" | 16707 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16842 | || test ! -s conftest.err' | ||
16843 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16708 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
16844 | (eval $ac_try) 2>&5 | 16709 | (eval $ac_try) 2>&5 |
16845 | ac_status=$? | 16710 | ac_status=$? |
@@ -16870,10 +16735,8 @@ See \`config.log' for more details." >&2;} | |||
16870 | esac | 16735 | esac |
16871 | else | 16736 | else |
16872 | if test "$cross_compiling" = yes; then | 16737 | if test "$cross_compiling" = yes; then |
16873 | { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling | 16738 | { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5 |
16874 | See \`config.log' for more details." >&5 | 16739 | echo "$as_me: error: internal error: not reached in cross-compile" >&2;} |
16875 | echo "$as_me: error: cannot run test program while cross compiling | ||
16876 | See \`config.log' for more details." >&2;} | ||
16877 | { (exit 1); exit 1; }; } | 16740 | { (exit 1); exit 1; }; } |
16878 | else | 16741 | else |
16879 | cat >conftest.$ac_ext <<_ACEOF | 16742 | cat >conftest.$ac_ext <<_ACEOF |
@@ -16985,8 +16848,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
16985 | cat conftest.err >&5 | 16848 | cat conftest.err >&5 |
16986 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16849 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
16987 | (exit $ac_status); } && | 16850 | (exit $ac_status); } && |
16988 | { ac_try='test -z "$ac_c_werror_flag" | 16851 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
16989 | || test ! -s conftest.err' | ||
16990 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16852 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
16991 | (eval $ac_try) 2>&5 | 16853 | (eval $ac_try) 2>&5 |
16992 | ac_status=$? | 16854 | ac_status=$? |
@@ -17048,8 +16910,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
17048 | cat conftest.err >&5 | 16910 | cat conftest.err >&5 |
17049 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16911 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17050 | (exit $ac_status); } && | 16912 | (exit $ac_status); } && |
17051 | { ac_try='test -z "$ac_c_werror_flag" | 16913 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17052 | || test ! -s conftest.err' | ||
17053 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16914 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
17054 | (eval $ac_try) 2>&5 | 16915 | (eval $ac_try) 2>&5 |
17055 | ac_status=$? | 16916 | ac_status=$? |
@@ -17089,8 +16950,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
17089 | cat conftest.err >&5 | 16950 | cat conftest.err >&5 |
17090 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 16951 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17091 | (exit $ac_status); } && | 16952 | (exit $ac_status); } && |
17092 | { ac_try='test -z "$ac_c_werror_flag" | 16953 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17093 | || test ! -s conftest.err' | ||
17094 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 16954 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
17095 | (eval $ac_try) 2>&5 | 16955 | (eval $ac_try) 2>&5 |
17096 | ac_status=$? | 16956 | ac_status=$? |
@@ -17146,8 +17006,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
17146 | cat conftest.err >&5 | 17006 | cat conftest.err >&5 |
17147 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17007 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17148 | (exit $ac_status); } && | 17008 | (exit $ac_status); } && |
17149 | { ac_try='test -z "$ac_c_werror_flag" | 17009 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17150 | || test ! -s conftest.err' | ||
17151 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17010 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
17152 | (eval $ac_try) 2>&5 | 17011 | (eval $ac_try) 2>&5 |
17153 | ac_status=$? | 17012 | ac_status=$? |
@@ -17187,8 +17046,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
17187 | cat conftest.err >&5 | 17046 | cat conftest.err >&5 |
17188 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17047 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17189 | (exit $ac_status); } && | 17048 | (exit $ac_status); } && |
17190 | { ac_try='test -z "$ac_c_werror_flag" | 17049 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17191 | || test ! -s conftest.err' | ||
17192 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17050 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
17193 | (eval $ac_try) 2>&5 | 17051 | (eval $ac_try) 2>&5 |
17194 | ac_status=$? | 17052 | ac_status=$? |
@@ -17252,8 +17110,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
17252 | cat conftest.err >&5 | 17110 | cat conftest.err >&5 |
17253 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17111 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17254 | (exit $ac_status); } && | 17112 | (exit $ac_status); } && |
17255 | { ac_try='test -z "$ac_c_werror_flag" | 17113 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17256 | || test ! -s conftest.err' | ||
17257 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17114 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
17258 | (eval $ac_try) 2>&5 | 17115 | (eval $ac_try) 2>&5 |
17259 | ac_status=$? | 17116 | ac_status=$? |
@@ -17284,10 +17141,8 @@ See \`config.log' for more details." >&2;} | |||
17284 | esac | 17141 | esac |
17285 | else | 17142 | else |
17286 | if test "$cross_compiling" = yes; then | 17143 | if test "$cross_compiling" = yes; then |
17287 | { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling | 17144 | { { echo "$as_me:$LINENO: error: internal error: not reached in cross-compile" >&5 |
17288 | See \`config.log' for more details." >&5 | 17145 | echo "$as_me: error: internal error: not reached in cross-compile" >&2;} |
17289 | echo "$as_me: error: cannot run test program while cross compiling | ||
17290 | See \`config.log' for more details." >&2;} | ||
17291 | { (exit 1); exit 1; }; } | 17146 | { (exit 1); exit 1; }; } |
17292 | else | 17147 | else |
17293 | cat >conftest.$ac_ext <<_ACEOF | 17148 | cat >conftest.$ac_ext <<_ACEOF |
@@ -17404,8 +17259,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
17404 | cat conftest.err >&5 | 17259 | cat conftest.err >&5 |
17405 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17260 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17406 | (exit $ac_status); } && | 17261 | (exit $ac_status); } && |
17407 | { ac_try='test -z "$ac_c_werror_flag" | 17262 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17408 | || test ! -s conftest.err' | ||
17409 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17263 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
17410 | (eval $ac_try) 2>&5 | 17264 | (eval $ac_try) 2>&5 |
17411 | ac_status=$? | 17265 | ac_status=$? |
@@ -17468,8 +17322,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
17468 | cat conftest.err >&5 | 17322 | cat conftest.err >&5 |
17469 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17323 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17470 | (exit $ac_status); } && | 17324 | (exit $ac_status); } && |
17471 | { ac_try='test -z "$ac_c_werror_flag" | 17325 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17472 | || test ! -s conftest.err' | ||
17473 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17326 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
17474 | (eval $ac_try) 2>&5 | 17327 | (eval $ac_try) 2>&5 |
17475 | ac_status=$? | 17328 | ac_status=$? |
@@ -17531,8 +17384,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
17531 | cat conftest.err >&5 | 17384 | cat conftest.err >&5 |
17532 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17385 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17533 | (exit $ac_status); } && | 17386 | (exit $ac_status); } && |
17534 | { ac_try='test -z "$ac_c_werror_flag" | 17387 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17535 | || test ! -s conftest.err' | ||
17536 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17388 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
17537 | (eval $ac_try) 2>&5 | 17389 | (eval $ac_try) 2>&5 |
17538 | ac_status=$? | 17390 | ac_status=$? |
@@ -17602,8 +17454,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
17602 | cat conftest.err >&5 | 17454 | cat conftest.err >&5 |
17603 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17455 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17604 | (exit $ac_status); } && | 17456 | (exit $ac_status); } && |
17605 | { ac_try='test -z "$ac_c_werror_flag" | 17457 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17606 | || test ! -s conftest.err' | ||
17607 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17458 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
17608 | (eval $ac_try) 2>&5 | 17459 | (eval $ac_try) 2>&5 |
17609 | ac_status=$? | 17460 | ac_status=$? |
@@ -17665,8 +17516,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
17665 | cat conftest.err >&5 | 17516 | cat conftest.err >&5 |
17666 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17517 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17667 | (exit $ac_status); } && | 17518 | (exit $ac_status); } && |
17668 | { ac_try='test -z "$ac_c_werror_flag" | 17519 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17669 | || test ! -s conftest.err' | ||
17670 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17520 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
17671 | (eval $ac_try) 2>&5 | 17521 | (eval $ac_try) 2>&5 |
17672 | ac_status=$? | 17522 | ac_status=$? |
@@ -17726,8 +17576,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
17726 | cat conftest.err >&5 | 17576 | cat conftest.err >&5 |
17727 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17577 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17728 | (exit $ac_status); } && | 17578 | (exit $ac_status); } && |
17729 | { ac_try='test -z "$ac_c_werror_flag" | 17579 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17730 | || test ! -s conftest.err' | ||
17731 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17580 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
17732 | (eval $ac_try) 2>&5 | 17581 | (eval $ac_try) 2>&5 |
17733 | ac_status=$? | 17582 | ac_status=$? |
@@ -17788,8 +17637,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
17788 | cat conftest.err >&5 | 17637 | cat conftest.err >&5 |
17789 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17638 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17790 | (exit $ac_status); } && | 17639 | (exit $ac_status); } && |
17791 | { ac_try='test -z "$ac_c_werror_flag" | 17640 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17792 | || test ! -s conftest.err' | ||
17793 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17641 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
17794 | (eval $ac_try) 2>&5 | 17642 | (eval $ac_try) 2>&5 |
17795 | ac_status=$? | 17643 | ac_status=$? |
@@ -17849,8 +17697,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
17849 | cat conftest.err >&5 | 17697 | cat conftest.err >&5 |
17850 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17698 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17851 | (exit $ac_status); } && | 17699 | (exit $ac_status); } && |
17852 | { ac_try='test -z "$ac_c_werror_flag" | 17700 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17853 | || test ! -s conftest.err' | ||
17854 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17701 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
17855 | (eval $ac_try) 2>&5 | 17702 | (eval $ac_try) 2>&5 |
17856 | ac_status=$? | 17703 | ac_status=$? |
@@ -17914,8 +17761,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
17914 | cat conftest.err >&5 | 17761 | cat conftest.err >&5 |
17915 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17762 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17916 | (exit $ac_status); } && | 17763 | (exit $ac_status); } && |
17917 | { ac_try='test -z "$ac_c_werror_flag" | 17764 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17918 | || test ! -s conftest.err' | ||
17919 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17765 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
17920 | (eval $ac_try) 2>&5 | 17766 | (eval $ac_try) 2>&5 |
17921 | ac_status=$? | 17767 | ac_status=$? |
@@ -17975,8 +17821,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
17975 | cat conftest.err >&5 | 17821 | cat conftest.err >&5 |
17976 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17822 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
17977 | (exit $ac_status); } && | 17823 | (exit $ac_status); } && |
17978 | { ac_try='test -z "$ac_c_werror_flag" | 17824 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
17979 | || test ! -s conftest.err' | ||
17980 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17825 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
17981 | (eval $ac_try) 2>&5 | 17826 | (eval $ac_try) 2>&5 |
17982 | ac_status=$? | 17827 | ac_status=$? |
@@ -18042,8 +17887,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18042 | cat conftest.err >&5 | 17887 | cat conftest.err >&5 |
18043 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17888 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18044 | (exit $ac_status); } && | 17889 | (exit $ac_status); } && |
18045 | { ac_try='test -z "$ac_c_werror_flag" | 17890 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18046 | || test ! -s conftest.err' | ||
18047 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17891 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
18048 | (eval $ac_try) 2>&5 | 17892 | (eval $ac_try) 2>&5 |
18049 | ac_status=$? | 17893 | ac_status=$? |
@@ -18111,8 +17955,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18111 | cat conftest.err >&5 | 17955 | cat conftest.err >&5 |
18112 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 17956 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18113 | (exit $ac_status); } && | 17957 | (exit $ac_status); } && |
18114 | { ac_try='test -z "$ac_c_werror_flag" | 17958 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18115 | || test ! -s conftest.err' | ||
18116 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 17959 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
18117 | (eval $ac_try) 2>&5 | 17960 | (eval $ac_try) 2>&5 |
18118 | ac_status=$? | 17961 | ac_status=$? |
@@ -18179,8 +18022,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18179 | cat conftest.err >&5 | 18022 | cat conftest.err >&5 |
18180 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18023 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18181 | (exit $ac_status); } && | 18024 | (exit $ac_status); } && |
18182 | { ac_try='test -z "$ac_c_werror_flag" | 18025 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18183 | || test ! -s conftest.err' | ||
18184 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18026 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
18185 | (eval $ac_try) 2>&5 | 18027 | (eval $ac_try) 2>&5 |
18186 | ac_status=$? | 18028 | ac_status=$? |
@@ -18250,8 +18092,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18250 | cat conftest.err >&5 | 18092 | cat conftest.err >&5 |
18251 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18093 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18252 | (exit $ac_status); } && | 18094 | (exit $ac_status); } && |
18253 | { ac_try='test -z "$ac_c_werror_flag" | 18095 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18254 | || test ! -s conftest.err' | ||
18255 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18096 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
18256 | (eval $ac_try) 2>&5 | 18097 | (eval $ac_try) 2>&5 |
18257 | ac_status=$? | 18098 | ac_status=$? |
@@ -18328,8 +18169,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18328 | cat conftest.err >&5 | 18169 | cat conftest.err >&5 |
18329 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18170 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18330 | (exit $ac_status); } && | 18171 | (exit $ac_status); } && |
18331 | { ac_try='test -z "$ac_c_werror_flag" | 18172 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18332 | || test ! -s conftest.err' | ||
18333 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18173 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
18334 | (eval $ac_try) 2>&5 | 18174 | (eval $ac_try) 2>&5 |
18335 | ac_status=$? | 18175 | ac_status=$? |
@@ -18396,8 +18236,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18396 | cat conftest.err >&5 | 18236 | cat conftest.err >&5 |
18397 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18237 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18398 | (exit $ac_status); } && | 18238 | (exit $ac_status); } && |
18399 | { ac_try='test -z "$ac_c_werror_flag" | 18239 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18400 | || test ! -s conftest.err' | ||
18401 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18240 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
18402 | (eval $ac_try) 2>&5 | 18241 | (eval $ac_try) 2>&5 |
18403 | ac_status=$? | 18242 | ac_status=$? |
@@ -18462,8 +18301,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18462 | cat conftest.err >&5 | 18301 | cat conftest.err >&5 |
18463 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18302 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18464 | (exit $ac_status); } && | 18303 | (exit $ac_status); } && |
18465 | { ac_try='test -z "$ac_c_werror_flag" | 18304 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18466 | || test ! -s conftest.err' | ||
18467 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18305 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
18468 | (eval $ac_try) 2>&5 | 18306 | (eval $ac_try) 2>&5 |
18469 | ac_status=$? | 18307 | ac_status=$? |
@@ -18527,8 +18365,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18527 | cat conftest.err >&5 | 18365 | cat conftest.err >&5 |
18528 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18366 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18529 | (exit $ac_status); } && | 18367 | (exit $ac_status); } && |
18530 | { ac_try='test -z "$ac_c_werror_flag" | 18368 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18531 | || test ! -s conftest.err' | ||
18532 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18369 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
18533 | (eval $ac_try) 2>&5 | 18370 | (eval $ac_try) 2>&5 |
18534 | ac_status=$? | 18371 | ac_status=$? |
@@ -18592,8 +18429,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18592 | cat conftest.err >&5 | 18429 | cat conftest.err >&5 |
18593 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18430 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18594 | (exit $ac_status); } && | 18431 | (exit $ac_status); } && |
18595 | { ac_try='test -z "$ac_c_werror_flag" | 18432 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18596 | || test ! -s conftest.err' | ||
18597 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18433 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
18598 | (eval $ac_try) 2>&5 | 18434 | (eval $ac_try) 2>&5 |
18599 | ac_status=$? | 18435 | ac_status=$? |
@@ -18658,8 +18494,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18658 | cat conftest.err >&5 | 18494 | cat conftest.err >&5 |
18659 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18495 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18660 | (exit $ac_status); } && | 18496 | (exit $ac_status); } && |
18661 | { ac_try='test -z "$ac_c_werror_flag" | 18497 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18662 | || test ! -s conftest.err' | ||
18663 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18498 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
18664 | (eval $ac_try) 2>&5 | 18499 | (eval $ac_try) 2>&5 |
18665 | ac_status=$? | 18500 | ac_status=$? |
@@ -18704,8 +18539,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18704 | cat conftest.err >&5 | 18539 | cat conftest.err >&5 |
18705 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18540 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18706 | (exit $ac_status); } && | 18541 | (exit $ac_status); } && |
18707 | { ac_try='test -z "$ac_c_werror_flag" | 18542 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18708 | || test ! -s conftest.err' | ||
18709 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18543 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
18710 | (eval $ac_try) 2>&5 | 18544 | (eval $ac_try) 2>&5 |
18711 | ac_status=$? | 18545 | ac_status=$? |
@@ -18772,8 +18606,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18772 | cat conftest.err >&5 | 18606 | cat conftest.err >&5 |
18773 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18607 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18774 | (exit $ac_status); } && | 18608 | (exit $ac_status); } && |
18775 | { ac_try='test -z "$ac_c_werror_flag" | 18609 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18776 | || test ! -s conftest.err' | ||
18777 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18610 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
18778 | (eval $ac_try) 2>&5 | 18611 | (eval $ac_try) 2>&5 |
18779 | ac_status=$? | 18612 | ac_status=$? |
@@ -18837,8 +18670,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18837 | cat conftest.err >&5 | 18670 | cat conftest.err >&5 |
18838 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18671 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18839 | (exit $ac_status); } && | 18672 | (exit $ac_status); } && |
18840 | { ac_try='test -z "$ac_c_werror_flag" | 18673 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18841 | || test ! -s conftest.err' | ||
18842 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18674 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
18843 | (eval $ac_try) 2>&5 | 18675 | (eval $ac_try) 2>&5 |
18844 | ac_status=$? | 18676 | ac_status=$? |
@@ -18904,8 +18736,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18904 | cat conftest.err >&5 | 18736 | cat conftest.err >&5 |
18905 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18737 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18906 | (exit $ac_status); } && | 18738 | (exit $ac_status); } && |
18907 | { ac_try='test -z "$ac_c_werror_flag" | 18739 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18908 | || test ! -s conftest.err' | ||
18909 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18740 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
18910 | (eval $ac_try) 2>&5 | 18741 | (eval $ac_try) 2>&5 |
18911 | ac_status=$? | 18742 | ac_status=$? |
@@ -18970,8 +18801,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
18970 | cat conftest.err >&5 | 18801 | cat conftest.err >&5 |
18971 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18802 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
18972 | (exit $ac_status); } && | 18803 | (exit $ac_status); } && |
18973 | { ac_try='test -z "$ac_c_werror_flag" | 18804 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
18974 | || test ! -s conftest.err' | ||
18975 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18805 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
18976 | (eval $ac_try) 2>&5 | 18806 | (eval $ac_try) 2>&5 |
18977 | ac_status=$? | 18807 | ac_status=$? |
@@ -19036,8 +18866,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
19036 | cat conftest.err >&5 | 18866 | cat conftest.err >&5 |
19037 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18867 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19038 | (exit $ac_status); } && | 18868 | (exit $ac_status); } && |
19039 | { ac_try='test -z "$ac_c_werror_flag" | 18869 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19040 | || test ! -s conftest.err' | ||
19041 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18870 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
19042 | (eval $ac_try) 2>&5 | 18871 | (eval $ac_try) 2>&5 |
19043 | ac_status=$? | 18872 | ac_status=$? |
@@ -19103,8 +18932,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
19103 | cat conftest.err >&5 | 18932 | cat conftest.err >&5 |
19104 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18933 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19105 | (exit $ac_status); } && | 18934 | (exit $ac_status); } && |
19106 | { ac_try='test -z "$ac_c_werror_flag" | 18935 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19107 | || test ! -s conftest.err' | ||
19108 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18936 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
19109 | (eval $ac_try) 2>&5 | 18937 | (eval $ac_try) 2>&5 |
19110 | ac_status=$? | 18938 | ac_status=$? |
@@ -19166,8 +18994,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
19166 | cat conftest.err >&5 | 18994 | cat conftest.err >&5 |
19167 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 18995 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19168 | (exit $ac_status); } && | 18996 | (exit $ac_status); } && |
19169 | { ac_try='test -z "$ac_c_werror_flag" | 18997 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19170 | || test ! -s conftest.err' | ||
19171 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 18998 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
19172 | (eval $ac_try) 2>&5 | 18999 | (eval $ac_try) 2>&5 |
19173 | ac_status=$? | 19000 | ac_status=$? |
@@ -19232,8 +19059,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
19232 | cat conftest.err >&5 | 19059 | cat conftest.err >&5 |
19233 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19060 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
19234 | (exit $ac_status); } && | 19061 | (exit $ac_status); } && |
19235 | { ac_try='test -z "$ac_c_werror_flag" | 19062 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
19236 | || test ! -s conftest.err' | ||
19237 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19063 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
19238 | (eval $ac_try) 2>&5 | 19064 | (eval $ac_try) 2>&5 |
19239 | ac_status=$? | 19065 | ac_status=$? |
@@ -20118,8 +19944,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
20118 | cat conftest.err >&5 | 19944 | cat conftest.err >&5 |
20119 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19945 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20120 | (exit $ac_status); } && | 19946 | (exit $ac_status); } && |
20121 | { ac_try='test -z "$ac_c_werror_flag" | 19947 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20122 | || test ! -s conftest.err' | ||
20123 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19948 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
20124 | (eval $ac_try) 2>&5 | 19949 | (eval $ac_try) 2>&5 |
20125 | ac_status=$? | 19950 | ac_status=$? |
@@ -20162,8 +19987,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
20162 | cat conftest.err >&5 | 19987 | cat conftest.err >&5 |
20163 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 19988 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20164 | (exit $ac_status); } && | 19989 | (exit $ac_status); } && |
20165 | { ac_try='test -z "$ac_c_werror_flag" | 19990 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20166 | || test ! -s conftest.err' | ||
20167 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 19991 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
20168 | (eval $ac_try) 2>&5 | 19992 | (eval $ac_try) 2>&5 |
20169 | ac_status=$? | 19993 | ac_status=$? |
@@ -20231,8 +20055,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
20231 | cat conftest.err >&5 | 20055 | cat conftest.err >&5 |
20232 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20056 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20233 | (exit $ac_status); } && | 20057 | (exit $ac_status); } && |
20234 | { ac_try='test -z "$ac_c_werror_flag" | 20058 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20235 | || test ! -s conftest.err' | ||
20236 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20059 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
20237 | (eval $ac_try) 2>&5 | 20060 | (eval $ac_try) 2>&5 |
20238 | ac_status=$? | 20061 | ac_status=$? |
@@ -20296,8 +20119,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
20296 | cat conftest.err >&5 | 20119 | cat conftest.err >&5 |
20297 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20120 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20298 | (exit $ac_status); } && | 20121 | (exit $ac_status); } && |
20299 | { ac_try='test -z "$ac_c_werror_flag" | 20122 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20300 | || test ! -s conftest.err' | ||
20301 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20123 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
20302 | (eval $ac_try) 2>&5 | 20124 | (eval $ac_try) 2>&5 |
20303 | ac_status=$? | 20125 | ac_status=$? |
@@ -20361,8 +20183,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
20361 | cat conftest.err >&5 | 20183 | cat conftest.err >&5 |
20362 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20184 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20363 | (exit $ac_status); } && | 20185 | (exit $ac_status); } && |
20364 | { ac_try='test -z "$ac_c_werror_flag" | 20186 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20365 | || test ! -s conftest.err' | ||
20366 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20187 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
20367 | (eval $ac_try) 2>&5 | 20188 | (eval $ac_try) 2>&5 |
20368 | ac_status=$? | 20189 | ac_status=$? |
@@ -20426,8 +20247,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
20426 | cat conftest.err >&5 | 20247 | cat conftest.err >&5 |
20427 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20248 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20428 | (exit $ac_status); } && | 20249 | (exit $ac_status); } && |
20429 | { ac_try='test -z "$ac_c_werror_flag" | 20250 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20430 | || test ! -s conftest.err' | ||
20431 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20251 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
20432 | (eval $ac_try) 2>&5 | 20252 | (eval $ac_try) 2>&5 |
20433 | ac_status=$? | 20253 | ac_status=$? |
@@ -20491,8 +20311,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
20491 | cat conftest.err >&5 | 20311 | cat conftest.err >&5 |
20492 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20312 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20493 | (exit $ac_status); } && | 20313 | (exit $ac_status); } && |
20494 | { ac_try='test -z "$ac_c_werror_flag" | 20314 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20495 | || test ! -s conftest.err' | ||
20496 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20315 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
20497 | (eval $ac_try) 2>&5 | 20316 | (eval $ac_try) 2>&5 |
20498 | ac_status=$? | 20317 | ac_status=$? |
@@ -20555,8 +20374,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
20555 | cat conftest.err >&5 | 20374 | cat conftest.err >&5 |
20556 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20375 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20557 | (exit $ac_status); } && | 20376 | (exit $ac_status); } && |
20558 | { ac_try='test -z "$ac_c_werror_flag" | 20377 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20559 | || test ! -s conftest.err' | ||
20560 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20378 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
20561 | (eval $ac_try) 2>&5 | 20379 | (eval $ac_try) 2>&5 |
20562 | ac_status=$? | 20380 | ac_status=$? |
@@ -20619,8 +20437,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
20619 | cat conftest.err >&5 | 20437 | cat conftest.err >&5 |
20620 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20438 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20621 | (exit $ac_status); } && | 20439 | (exit $ac_status); } && |
20622 | { ac_try='test -z "$ac_c_werror_flag" | 20440 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20623 | || test ! -s conftest.err' | ||
20624 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20441 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
20625 | (eval $ac_try) 2>&5 | 20442 | (eval $ac_try) 2>&5 |
20626 | ac_status=$? | 20443 | ac_status=$? |
@@ -20682,8 +20499,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
20682 | cat conftest.err >&5 | 20499 | cat conftest.err >&5 |
20683 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20500 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20684 | (exit $ac_status); } && | 20501 | (exit $ac_status); } && |
20685 | { ac_try='test -z "$ac_c_werror_flag" | 20502 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20686 | || test ! -s conftest.err' | ||
20687 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20503 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
20688 | (eval $ac_try) 2>&5 | 20504 | (eval $ac_try) 2>&5 |
20689 | ac_status=$? | 20505 | ac_status=$? |
@@ -20748,8 +20564,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
20748 | cat conftest.err >&5 | 20564 | cat conftest.err >&5 |
20749 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20565 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20750 | (exit $ac_status); } && | 20566 | (exit $ac_status); } && |
20751 | { ac_try='test -z "$ac_c_werror_flag" | 20567 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20752 | || test ! -s conftest.err' | ||
20753 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20568 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
20754 | (eval $ac_try) 2>&5 | 20569 | (eval $ac_try) 2>&5 |
20755 | ac_status=$? | 20570 | ac_status=$? |
@@ -20814,8 +20629,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
20814 | cat conftest.err >&5 | 20629 | cat conftest.err >&5 |
20815 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20630 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20816 | (exit $ac_status); } && | 20631 | (exit $ac_status); } && |
20817 | { ac_try='test -z "$ac_c_werror_flag" | 20632 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20818 | || test ! -s conftest.err' | ||
20819 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20633 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
20820 | (eval $ac_try) 2>&5 | 20634 | (eval $ac_try) 2>&5 |
20821 | ac_status=$? | 20635 | ac_status=$? |
@@ -20880,8 +20694,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
20880 | cat conftest.err >&5 | 20694 | cat conftest.err >&5 |
20881 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20695 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20882 | (exit $ac_status); } && | 20696 | (exit $ac_status); } && |
20883 | { ac_try='test -z "$ac_c_werror_flag" | 20697 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20884 | || test ! -s conftest.err' | ||
20885 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20698 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
20886 | (eval $ac_try) 2>&5 | 20699 | (eval $ac_try) 2>&5 |
20887 | ac_status=$? | 20700 | ac_status=$? |
@@ -20944,8 +20757,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
20944 | cat conftest.err >&5 | 20757 | cat conftest.err >&5 |
20945 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20758 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
20946 | (exit $ac_status); } && | 20759 | (exit $ac_status); } && |
20947 | { ac_try='test -z "$ac_c_werror_flag" | 20760 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
20948 | || test ! -s conftest.err' | ||
20949 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20761 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
20950 | (eval $ac_try) 2>&5 | 20762 | (eval $ac_try) 2>&5 |
20951 | ac_status=$? | 20763 | ac_status=$? |
@@ -21009,8 +20821,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
21009 | cat conftest.err >&5 | 20821 | cat conftest.err >&5 |
21010 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20822 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21011 | (exit $ac_status); } && | 20823 | (exit $ac_status); } && |
21012 | { ac_try='test -z "$ac_c_werror_flag" | 20824 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21013 | || test ! -s conftest.err' | ||
21014 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20825 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
21015 | (eval $ac_try) 2>&5 | 20826 | (eval $ac_try) 2>&5 |
21016 | ac_status=$? | 20827 | ac_status=$? |
@@ -21095,8 +20906,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
21095 | cat conftest.err >&5 | 20906 | cat conftest.err >&5 |
21096 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 20907 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21097 | (exit $ac_status); } && | 20908 | (exit $ac_status); } && |
21098 | { ac_try='test -z "$ac_c_werror_flag" | 20909 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21099 | || test ! -s conftest.err' | ||
21100 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 20910 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
21101 | (eval $ac_try) 2>&5 | 20911 | (eval $ac_try) 2>&5 |
21102 | ac_status=$? | 20912 | ac_status=$? |
@@ -21255,8 +21065,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
21255 | cat conftest.err >&5 | 21065 | cat conftest.err >&5 |
21256 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21066 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21257 | (exit $ac_status); } && | 21067 | (exit $ac_status); } && |
21258 | { ac_try='test -z "$ac_c_werror_flag" | 21068 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21259 | || test ! -s conftest.err' | ||
21260 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21069 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
21261 | (eval $ac_try) 2>&5 | 21070 | (eval $ac_try) 2>&5 |
21262 | ac_status=$? | 21071 | ac_status=$? |
@@ -21420,8 +21229,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
21420 | cat conftest.err >&5 | 21229 | cat conftest.err >&5 |
21421 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21230 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21422 | (exit $ac_status); } && | 21231 | (exit $ac_status); } && |
21423 | { ac_try='test -z "$ac_c_werror_flag" | 21232 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21424 | || test ! -s conftest.err' | ||
21425 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21233 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
21426 | (eval $ac_try) 2>&5 | 21234 | (eval $ac_try) 2>&5 |
21427 | ac_status=$? | 21235 | ac_status=$? |
@@ -21475,8 +21283,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
21475 | cat conftest.err >&5 | 21283 | cat conftest.err >&5 |
21476 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21284 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21477 | (exit $ac_status); } && | 21285 | (exit $ac_status); } && |
21478 | { ac_try='test -z "$ac_c_werror_flag" | 21286 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21479 | || test ! -s conftest.err' | ||
21480 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21287 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
21481 | (eval $ac_try) 2>&5 | 21288 | (eval $ac_try) 2>&5 |
21482 | ac_status=$? | 21289 | ac_status=$? |
@@ -21550,8 +21357,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
21550 | cat conftest.err >&5 | 21357 | cat conftest.err >&5 |
21551 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21358 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21552 | (exit $ac_status); } && | 21359 | (exit $ac_status); } && |
21553 | { ac_try='test -z "$ac_c_werror_flag" | 21360 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21554 | || test ! -s conftest.err' | ||
21555 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21361 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
21556 | (eval $ac_try) 2>&5 | 21362 | (eval $ac_try) 2>&5 |
21557 | ac_status=$? | 21363 | ac_status=$? |
@@ -21605,8 +21411,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
21605 | cat conftest.err >&5 | 21411 | cat conftest.err >&5 |
21606 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21412 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21607 | (exit $ac_status); } && | 21413 | (exit $ac_status); } && |
21608 | { ac_try='test -z "$ac_c_werror_flag" | 21414 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21609 | || test ! -s conftest.err' | ||
21610 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21415 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
21611 | (eval $ac_try) 2>&5 | 21416 | (eval $ac_try) 2>&5 |
21612 | ac_status=$? | 21417 | ac_status=$? |
@@ -21676,8 +21481,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
21676 | cat conftest.err >&5 | 21481 | cat conftest.err >&5 |
21677 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21482 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21678 | (exit $ac_status); } && | 21483 | (exit $ac_status); } && |
21679 | { ac_try='test -z "$ac_c_werror_flag" | 21484 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21680 | || test ! -s conftest.err' | ||
21681 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21485 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
21682 | (eval $ac_try) 2>&5 | 21486 | (eval $ac_try) 2>&5 |
21683 | ac_status=$? | 21487 | ac_status=$? |
@@ -21731,8 +21535,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
21731 | cat conftest.err >&5 | 21535 | cat conftest.err >&5 |
21732 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21536 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21733 | (exit $ac_status); } && | 21537 | (exit $ac_status); } && |
21734 | { ac_try='test -z "$ac_c_werror_flag" | 21538 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21735 | || test ! -s conftest.err' | ||
21736 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21539 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
21737 | (eval $ac_try) 2>&5 | 21540 | (eval $ac_try) 2>&5 |
21738 | ac_status=$? | 21541 | ac_status=$? |
@@ -21797,8 +21600,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
21797 | cat conftest.err >&5 | 21600 | cat conftest.err >&5 |
21798 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21601 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21799 | (exit $ac_status); } && | 21602 | (exit $ac_status); } && |
21800 | { ac_try='test -z "$ac_c_werror_flag" | 21603 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21801 | || test ! -s conftest.err' | ||
21802 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21604 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
21803 | (eval $ac_try) 2>&5 | 21605 | (eval $ac_try) 2>&5 |
21804 | ac_status=$? | 21606 | ac_status=$? |
@@ -21841,8 +21643,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
21841 | cat conftest.err >&5 | 21643 | cat conftest.err >&5 |
21842 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21644 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21843 | (exit $ac_status); } && | 21645 | (exit $ac_status); } && |
21844 | { ac_try='test -z "$ac_c_werror_flag" | 21646 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21845 | || test ! -s conftest.err' | ||
21846 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21647 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
21847 | (eval $ac_try) 2>&5 | 21648 | (eval $ac_try) 2>&5 |
21848 | ac_status=$? | 21649 | ac_status=$? |
@@ -21941,8 +21742,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
21941 | cat conftest.err >&5 | 21742 | cat conftest.err >&5 |
21942 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21743 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
21943 | (exit $ac_status); } && | 21744 | (exit $ac_status); } && |
21944 | { ac_try='test -z "$ac_c_werror_flag" | 21745 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
21945 | || test ! -s conftest.err' | ||
21946 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21746 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
21947 | (eval $ac_try) 2>&5 | 21747 | (eval $ac_try) 2>&5 |
21948 | ac_status=$? | 21748 | ac_status=$? |
@@ -22006,8 +21806,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
22006 | cat conftest.err >&5 | 21806 | cat conftest.err >&5 |
22007 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21807 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22008 | (exit $ac_status); } && | 21808 | (exit $ac_status); } && |
22009 | { ac_try='test -z "$ac_c_werror_flag" | 21809 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22010 | || test ! -s conftest.err' | ||
22011 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21810 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
22012 | (eval $ac_try) 2>&5 | 21811 | (eval $ac_try) 2>&5 |
22013 | ac_status=$? | 21812 | ac_status=$? |
@@ -22051,8 +21850,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
22051 | cat conftest.err >&5 | 21850 | cat conftest.err >&5 |
22052 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 21851 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22053 | (exit $ac_status); } && | 21852 | (exit $ac_status); } && |
22054 | { ac_try='test -z "$ac_c_werror_flag" | 21853 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22055 | || test ! -s conftest.err' | ||
22056 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 21854 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
22057 | (eval $ac_try) 2>&5 | 21855 | (eval $ac_try) 2>&5 |
22058 | ac_status=$? | 21856 | ac_status=$? |
@@ -22088,6 +21886,173 @@ fi | |||
22088 | fi | 21886 | fi |
22089 | 21887 | ||
22090 | 21888 | ||
21889 | # Check whether user wants SELinux support | ||
21890 | SELINUX_MSG="no" | ||
21891 | |||
21892 | # Check whether --with-selinux or --without-selinux was given. | ||
21893 | if test "${with_selinux+set}" = set; then | ||
21894 | withval="$with_selinux" | ||
21895 | if test "x$withval" != "xno" ; then | ||
21896 | |||
21897 | cat >>confdefs.h <<\_ACEOF | ||
21898 | #define WITH_SELINUX 1 | ||
21899 | _ACEOF | ||
21900 | |||
21901 | SELINUX_MSG="yes" | ||
21902 | |||
21903 | for ac_header in selinux/selinux.h | ||
21904 | do | ||
21905 | as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` | ||
21906 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | ||
21907 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | ||
21908 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | ||
21909 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | ||
21910 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
21911 | fi | ||
21912 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | ||
21913 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | ||
21914 | else | ||
21915 | # Is the header compilable? | ||
21916 | echo "$as_me:$LINENO: checking $ac_header usability" >&5 | ||
21917 | echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 | ||
21918 | cat >conftest.$ac_ext <<_ACEOF | ||
21919 | /* confdefs.h. */ | ||
21920 | _ACEOF | ||
21921 | cat confdefs.h >>conftest.$ac_ext | ||
21922 | cat >>conftest.$ac_ext <<_ACEOF | ||
21923 | /* end confdefs.h. */ | ||
21924 | $ac_includes_default | ||
21925 | #include <$ac_header> | ||
21926 | _ACEOF | ||
21927 | rm -f conftest.$ac_objext | ||
21928 | if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | ||
21929 | (eval $ac_compile) 2>conftest.er1 | ||
21930 | ac_status=$? | ||
21931 | grep -v '^ *+' conftest.er1 >conftest.err | ||
21932 | rm -f conftest.er1 | ||
21933 | cat conftest.err >&5 | ||
21934 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
21935 | (exit $ac_status); } && | ||
21936 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' | ||
21937 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
21938 | (eval $ac_try) 2>&5 | ||
21939 | ac_status=$? | ||
21940 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
21941 | (exit $ac_status); }; } && | ||
21942 | { ac_try='test -s conftest.$ac_objext' | ||
21943 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | ||
21944 | (eval $ac_try) 2>&5 | ||
21945 | ac_status=$? | ||
21946 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
21947 | (exit $ac_status); }; }; then | ||
21948 | ac_header_compiler=yes | ||
21949 | else | ||
21950 | echo "$as_me: failed program was:" >&5 | ||
21951 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
21952 | |||
21953 | ac_header_compiler=no | ||
21954 | fi | ||
21955 | rm -f conftest.err conftest.$ac_objext conftest.$ac_ext | ||
21956 | echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 | ||
21957 | echo "${ECHO_T}$ac_header_compiler" >&6 | ||
21958 | |||
21959 | # Is the header present? | ||
21960 | echo "$as_me:$LINENO: checking $ac_header presence" >&5 | ||
21961 | echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 | ||
21962 | cat >conftest.$ac_ext <<_ACEOF | ||
21963 | /* confdefs.h. */ | ||
21964 | _ACEOF | ||
21965 | cat confdefs.h >>conftest.$ac_ext | ||
21966 | cat >>conftest.$ac_ext <<_ACEOF | ||
21967 | /* end confdefs.h. */ | ||
21968 | #include <$ac_header> | ||
21969 | _ACEOF | ||
21970 | if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 | ||
21971 | (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 | ||
21972 | ac_status=$? | ||
21973 | grep -v '^ *+' conftest.er1 >conftest.err | ||
21974 | rm -f conftest.er1 | ||
21975 | cat conftest.err >&5 | ||
21976 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | ||
21977 | (exit $ac_status); } >/dev/null; then | ||
21978 | if test -s conftest.err; then | ||
21979 | ac_cpp_err=$ac_c_preproc_warn_flag | ||
21980 | ac_cpp_err=$ac_cpp_err$ac_c_werror_flag | ||
21981 | else | ||
21982 | ac_cpp_err= | ||
21983 | fi | ||
21984 | else | ||
21985 | ac_cpp_err=yes | ||
21986 | fi | ||
21987 | if test -z "$ac_cpp_err"; then | ||
21988 | ac_header_preproc=yes | ||
21989 | else | ||
21990 | echo "$as_me: failed program was:" >&5 | ||
21991 | sed 's/^/| /' conftest.$ac_ext >&5 | ||
21992 | |||
21993 | ac_header_preproc=no | ||
21994 | fi | ||
21995 | rm -f conftest.err conftest.$ac_ext | ||
21996 | echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 | ||
21997 | echo "${ECHO_T}$ac_header_preproc" >&6 | ||
21998 | |||
21999 | # So? What about this header? | ||
22000 | case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in | ||
22001 | yes:no: ) | ||
22002 | { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 | ||
22003 | echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} | ||
22004 | { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 | ||
22005 | echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} | ||
22006 | ac_header_preproc=yes | ||
22007 | ;; | ||
22008 | no:yes:* ) | ||
22009 | { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 | ||
22010 | echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} | ||
22011 | { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 | ||
22012 | echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} | ||
22013 | { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 | ||
22014 | echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} | ||
22015 | { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 | ||
22016 | echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} | ||
22017 | { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 | ||
22018 | echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} | ||
22019 | { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 | ||
22020 | echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} | ||
22021 | ( | ||
22022 | cat <<\_ASBOX | ||
22023 | ## ---------------------------------- ## | ||
22024 | ## Report this to the OpenSSH lists. ## | ||
22025 | ## ---------------------------------- ## | ||
22026 | _ASBOX | ||
22027 | ) | | ||
22028 | sed "s/^/$as_me: WARNING: /" >&2 | ||
22029 | ;; | ||
22030 | esac | ||
22031 | echo "$as_me:$LINENO: checking for $ac_header" >&5 | ||
22032 | echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 | ||
22033 | if eval "test \"\${$as_ac_Header+set}\" = set"; then | ||
22034 | echo $ECHO_N "(cached) $ECHO_C" >&6 | ||
22035 | else | ||
22036 | eval "$as_ac_Header=\$ac_header_preproc" | ||
22037 | fi | ||
22038 | echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 | ||
22039 | echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 | ||
22040 | |||
22041 | fi | ||
22042 | if test `eval echo '${'$as_ac_Header'}'` = yes; then | ||
22043 | cat >>confdefs.h <<_ACEOF | ||
22044 | #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 | ||
22045 | _ACEOF | ||
22046 | |||
22047 | fi | ||
22048 | |||
22049 | done | ||
22050 | |||
22051 | LIBS="$LIBS -lselinux" | ||
22052 | fi | ||
22053 | |||
22054 | fi; | ||
22055 | |||
22091 | # Check whether user wants Kerberos 5 support | 22056 | # Check whether user wants Kerberos 5 support |
22092 | KRB5_MSG="no" | 22057 | KRB5_MSG="no" |
22093 | 22058 | ||
@@ -22158,8 +22123,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
22158 | cat conftest.err >&5 | 22123 | cat conftest.err >&5 |
22159 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22124 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22160 | (exit $ac_status); } && | 22125 | (exit $ac_status); } && |
22161 | { ac_try='test -z "$ac_c_werror_flag" | 22126 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22162 | || test ! -s conftest.err' | ||
22163 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22127 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
22164 | (eval $ac_try) 2>&5 | 22128 | (eval $ac_try) 2>&5 |
22165 | ac_status=$? | 22129 | ac_status=$? |
@@ -22217,8 +22181,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
22217 | cat conftest.err >&5 | 22181 | cat conftest.err >&5 |
22218 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22182 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22219 | (exit $ac_status); } && | 22183 | (exit $ac_status); } && |
22220 | { ac_try='test -z "$ac_c_werror_flag" | 22184 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22221 | || test ! -s conftest.err' | ||
22222 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22185 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
22223 | (eval $ac_try) 2>&5 | 22186 | (eval $ac_try) 2>&5 |
22224 | ac_status=$? | 22187 | ac_status=$? |
@@ -22276,8 +22239,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
22276 | cat conftest.err >&5 | 22239 | cat conftest.err >&5 |
22277 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22240 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22278 | (exit $ac_status); } && | 22241 | (exit $ac_status); } && |
22279 | { ac_try='test -z "$ac_c_werror_flag" | 22242 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22280 | || test ! -s conftest.err' | ||
22281 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22243 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
22282 | (eval $ac_try) 2>&5 | 22244 | (eval $ac_try) 2>&5 |
22283 | ac_status=$? | 22245 | ac_status=$? |
@@ -22356,8 +22318,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
22356 | cat conftest.err >&5 | 22318 | cat conftest.err >&5 |
22357 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22319 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22358 | (exit $ac_status); } && | 22320 | (exit $ac_status); } && |
22359 | { ac_try='test -z "$ac_c_werror_flag" | 22321 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22360 | || test ! -s conftest.err' | ||
22361 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22322 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
22362 | (eval $ac_try) 2>&5 | 22323 | (eval $ac_try) 2>&5 |
22363 | ac_status=$? | 22324 | ac_status=$? |
@@ -22411,8 +22372,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
22411 | cat conftest.err >&5 | 22372 | cat conftest.err >&5 |
22412 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22373 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22413 | (exit $ac_status); } && | 22374 | (exit $ac_status); } && |
22414 | { ac_try='test -z "$ac_c_werror_flag" | 22375 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22415 | || test ! -s conftest.err' | ||
22416 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22376 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
22417 | (eval $ac_try) 2>&5 | 22377 | (eval $ac_try) 2>&5 |
22418 | ac_status=$? | 22378 | ac_status=$? |
@@ -22483,8 +22443,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
22483 | cat conftest.err >&5 | 22443 | cat conftest.err >&5 |
22484 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22444 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22485 | (exit $ac_status); } && | 22445 | (exit $ac_status); } && |
22486 | { ac_try='test -z "$ac_c_werror_flag" | 22446 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22487 | || test ! -s conftest.err' | ||
22488 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22447 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
22489 | (eval $ac_try) 2>&5 | 22448 | (eval $ac_try) 2>&5 |
22490 | ac_status=$? | 22449 | ac_status=$? |
@@ -22554,8 +22513,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
22554 | cat conftest.err >&5 | 22513 | cat conftest.err >&5 |
22555 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22514 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22556 | (exit $ac_status); } && | 22515 | (exit $ac_status); } && |
22557 | { ac_try='test -z "$ac_c_werror_flag" | 22516 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22558 | || test ! -s conftest.err' | ||
22559 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22517 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
22560 | (eval $ac_try) 2>&5 | 22518 | (eval $ac_try) 2>&5 |
22561 | ac_status=$? | 22519 | ac_status=$? |
@@ -22625,8 +22583,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
22625 | cat conftest.err >&5 | 22583 | cat conftest.err >&5 |
22626 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22584 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22627 | (exit $ac_status); } && | 22585 | (exit $ac_status); } && |
22628 | { ac_try='test -z "$ac_c_werror_flag" | 22586 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22629 | || test ! -s conftest.err' | ||
22630 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22587 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
22631 | (eval $ac_try) 2>&5 | 22588 | (eval $ac_try) 2>&5 |
22632 | ac_status=$? | 22589 | ac_status=$? |
@@ -22771,8 +22728,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
22771 | cat conftest.err >&5 | 22728 | cat conftest.err >&5 |
22772 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22729 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22773 | (exit $ac_status); } && | 22730 | (exit $ac_status); } && |
22774 | { ac_try='test -z "$ac_c_werror_flag" | 22731 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22775 | || test ! -s conftest.err' | ||
22776 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22732 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
22777 | (eval $ac_try) 2>&5 | 22733 | (eval $ac_try) 2>&5 |
22778 | ac_status=$? | 22734 | ac_status=$? |
@@ -22929,8 +22885,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
22929 | cat conftest.err >&5 | 22885 | cat conftest.err >&5 |
22930 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 22886 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
22931 | (exit $ac_status); } && | 22887 | (exit $ac_status); } && |
22932 | { ac_try='test -z "$ac_c_werror_flag" | 22888 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
22933 | || test ! -s conftest.err' | ||
22934 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 22889 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
22935 | (eval $ac_try) 2>&5 | 22890 | (eval $ac_try) 2>&5 |
22936 | ac_status=$? | 22891 | ac_status=$? |
@@ -23088,8 +23043,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
23088 | cat conftest.err >&5 | 23043 | cat conftest.err >&5 |
23089 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23044 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23090 | (exit $ac_status); } && | 23045 | (exit $ac_status); } && |
23091 | { ac_try='test -z "$ac_c_werror_flag" | 23046 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23092 | || test ! -s conftest.err' | ||
23093 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23047 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
23094 | (eval $ac_try) 2>&5 | 23048 | (eval $ac_try) 2>&5 |
23095 | ac_status=$? | 23049 | ac_status=$? |
@@ -23239,8 +23193,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
23239 | cat conftest.err >&5 | 23193 | cat conftest.err >&5 |
23240 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23194 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23241 | (exit $ac_status); } && | 23195 | (exit $ac_status); } && |
23242 | { ac_try='test -z "$ac_c_werror_flag" | 23196 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23243 | || test ! -s conftest.err' | ||
23244 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23197 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
23245 | (eval $ac_try) 2>&5 | 23198 | (eval $ac_try) 2>&5 |
23246 | ac_status=$? | 23199 | ac_status=$? |
@@ -23390,8 +23343,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
23390 | cat conftest.err >&5 | 23343 | cat conftest.err >&5 |
23391 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23344 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23392 | (exit $ac_status); } && | 23345 | (exit $ac_status); } && |
23393 | { ac_try='test -z "$ac_c_werror_flag" | 23346 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23394 | || test ! -s conftest.err' | ||
23395 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23347 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
23396 | (eval $ac_try) 2>&5 | 23348 | (eval $ac_try) 2>&5 |
23397 | ac_status=$? | 23349 | ac_status=$? |
@@ -23546,8 +23498,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
23546 | cat conftest.err >&5 | 23498 | cat conftest.err >&5 |
23547 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23499 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23548 | (exit $ac_status); } && | 23500 | (exit $ac_status); } && |
23549 | { ac_try='test -z "$ac_c_werror_flag" | 23501 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23550 | || test ! -s conftest.err' | ||
23551 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23502 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
23552 | (eval $ac_try) 2>&5 | 23503 | (eval $ac_try) 2>&5 |
23553 | ac_status=$? | 23504 | ac_status=$? |
@@ -23601,8 +23552,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
23601 | cat conftest.err >&5 | 23552 | cat conftest.err >&5 |
23602 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23553 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23603 | (exit $ac_status); } && | 23554 | (exit $ac_status); } && |
23604 | { ac_try='test -z "$ac_c_werror_flag" | 23555 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23605 | || test ! -s conftest.err' | ||
23606 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23556 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
23607 | (eval $ac_try) 2>&5 | 23557 | (eval $ac_try) 2>&5 |
23608 | ac_status=$? | 23558 | ac_status=$? |
@@ -23675,8 +23625,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
23675 | cat conftest.err >&5 | 23625 | cat conftest.err >&5 |
23676 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23626 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23677 | (exit $ac_status); } && | 23627 | (exit $ac_status); } && |
23678 | { ac_try='test -z "$ac_c_werror_flag" | 23628 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23679 | || test ! -s conftest.err' | ||
23680 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23629 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
23681 | (eval $ac_try) 2>&5 | 23630 | (eval $ac_try) 2>&5 |
23682 | ac_status=$? | 23631 | ac_status=$? |
@@ -23730,8 +23679,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 | |||
23730 | cat conftest.err >&5 | 23679 | cat conftest.err >&5 |
23731 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 23680 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
23732 | (exit $ac_status); } && | 23681 | (exit $ac_status); } && |
23733 | { ac_try='test -z "$ac_c_werror_flag" | 23682 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
23734 | || test ! -s conftest.err' | ||
23735 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 23683 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
23736 | (eval $ac_try) 2>&5 | 23684 | (eval $ac_try) 2>&5 |
23737 | ac_status=$? | 23685 | ac_status=$? |
@@ -24104,8 +24052,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
24104 | cat conftest.err >&5 | 24052 | cat conftest.err >&5 |
24105 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24053 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24106 | (exit $ac_status); } && | 24054 | (exit $ac_status); } && |
24107 | { ac_try='test -z "$ac_c_werror_flag" | 24055 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
24108 | || test ! -s conftest.err' | ||
24109 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 24056 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
24110 | (eval $ac_try) 2>&5 | 24057 | (eval $ac_try) 2>&5 |
24111 | ac_status=$? | 24058 | ac_status=$? |
@@ -24624,8 +24571,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
24624 | cat conftest.err >&5 | 24571 | cat conftest.err >&5 |
24625 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24572 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24626 | (exit $ac_status); } && | 24573 | (exit $ac_status); } && |
24627 | { ac_try='test -z "$ac_c_werror_flag" | 24574 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
24628 | || test ! -s conftest.err' | ||
24629 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 24575 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
24630 | (eval $ac_try) 2>&5 | 24576 | (eval $ac_try) 2>&5 |
24631 | ac_status=$? | 24577 | ac_status=$? |
@@ -24681,8 +24627,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
24681 | cat conftest.err >&5 | 24627 | cat conftest.err >&5 |
24682 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24628 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24683 | (exit $ac_status); } && | 24629 | (exit $ac_status); } && |
24684 | { ac_try='test -z "$ac_c_werror_flag" | 24630 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
24685 | || test ! -s conftest.err' | ||
24686 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 24631 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
24687 | (eval $ac_try) 2>&5 | 24632 | (eval $ac_try) 2>&5 |
24688 | ac_status=$? | 24633 | ac_status=$? |
@@ -24765,8 +24710,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
24765 | cat conftest.err >&5 | 24710 | cat conftest.err >&5 |
24766 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24711 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24767 | (exit $ac_status); } && | 24712 | (exit $ac_status); } && |
24768 | { ac_try='test -z "$ac_c_werror_flag" | 24713 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
24769 | || test ! -s conftest.err' | ||
24770 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 24714 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
24771 | (eval $ac_try) 2>&5 | 24715 | (eval $ac_try) 2>&5 |
24772 | ac_status=$? | 24716 | ac_status=$? |
@@ -24844,8 +24788,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
24844 | cat conftest.err >&5 | 24788 | cat conftest.err >&5 |
24845 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24789 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24846 | (exit $ac_status); } && | 24790 | (exit $ac_status); } && |
24847 | { ac_try='test -z "$ac_c_werror_flag" | 24791 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
24848 | || test ! -s conftest.err' | ||
24849 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 24792 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
24850 | (eval $ac_try) 2>&5 | 24793 | (eval $ac_try) 2>&5 |
24851 | ac_status=$? | 24794 | ac_status=$? |
@@ -24927,8 +24870,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
24927 | cat conftest.err >&5 | 24870 | cat conftest.err >&5 |
24928 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24871 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
24929 | (exit $ac_status); } && | 24872 | (exit $ac_status); } && |
24930 | { ac_try='test -z "$ac_c_werror_flag" | 24873 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
24931 | || test ! -s conftest.err' | ||
24932 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 24874 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
24933 | (eval $ac_try) 2>&5 | 24875 | (eval $ac_try) 2>&5 |
24934 | ac_status=$? | 24876 | ac_status=$? |
@@ -25001,8 +24943,7 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 | |||
25001 | cat conftest.err >&5 | 24943 | cat conftest.err >&5 |
25002 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 | 24944 | echo "$as_me:$LINENO: \$? = $ac_status" >&5 |
25003 | (exit $ac_status); } && | 24945 | (exit $ac_status); } && |
25004 | { ac_try='test -z "$ac_c_werror_flag" | 24946 | { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' |
25005 | || test ! -s conftest.err' | ||
25006 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 | 24947 | { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 |
25007 | (eval $ac_try) 2>&5 | 24948 | (eval $ac_try) 2>&5 |
25008 | ac_status=$? | 24949 | ac_status=$? |
@@ -25912,11 +25853,6 @@ esac | |||
25912 | *) ac_INSTALL=$ac_top_builddir$INSTALL ;; | 25853 | *) ac_INSTALL=$ac_top_builddir$INSTALL ;; |
25913 | esac | 25854 | esac |
25914 | 25855 | ||
25915 | if test x"$ac_file" != x-; then | ||
25916 | { echo "$as_me:$LINENO: creating $ac_file" >&5 | ||
25917 | echo "$as_me: creating $ac_file" >&6;} | ||
25918 | rm -f "$ac_file" | ||
25919 | fi | ||
25920 | # Let's still pretend it is `configure' which instantiates (i.e., don't | 25856 | # Let's still pretend it is `configure' which instantiates (i.e., don't |
25921 | # use $as_me), people would be surprised to read: | 25857 | # use $as_me), people would be surprised to read: |
25922 | # /* config.h. Generated by config.status. */ | 25858 | # /* config.h. Generated by config.status. */ |
@@ -25955,6 +25891,12 @@ echo "$as_me: error: cannot find input file: $f" >&2;} | |||
25955 | fi;; | 25891 | fi;; |
25956 | esac | 25892 | esac |
25957 | done` || { (exit 1); exit 1; } | 25893 | done` || { (exit 1); exit 1; } |
25894 | |||
25895 | if test x"$ac_file" != x-; then | ||
25896 | { echo "$as_me:$LINENO: creating $ac_file" >&5 | ||
25897 | echo "$as_me: creating $ac_file" >&6;} | ||
25898 | rm -f "$ac_file" | ||
25899 | fi | ||
25958 | _ACEOF | 25900 | _ACEOF |
25959 | cat >>$CONFIG_STATUS <<_ACEOF | 25901 | cat >>$CONFIG_STATUS <<_ACEOF |
25960 | sed "$ac_vpsub | 25902 | sed "$ac_vpsub |
@@ -26277,6 +26219,7 @@ fi | |||
26277 | echo " Manpage format: $MANTYPE" | 26219 | echo " Manpage format: $MANTYPE" |
26278 | echo " PAM support: $PAM_MSG" | 26220 | echo " PAM support: $PAM_MSG" |
26279 | echo " KerberosV support: $KRB5_MSG" | 26221 | echo " KerberosV support: $KRB5_MSG" |
26222 | echo " SELinux support: $SELINUX_MSG" | ||
26280 | echo " Smartcard support: $SCARD_MSG" | 26223 | echo " Smartcard support: $SCARD_MSG" |
26281 | echo " S/KEY support: $SKEY_MSG" | 26224 | echo " S/KEY support: $SKEY_MSG" |
26282 | echo " TCP Wrappers support: $TCPW_MSG" | 26225 | echo " TCP Wrappers support: $TCPW_MSG" |
diff --git a/configure.ac b/configure.ac index 20c8f1587..b938228c5 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -2407,6 +2407,18 @@ int main() | |||
2407 | [#include <arpa/nameser.h>]) | 2407 | [#include <arpa/nameser.h>]) |
2408 | ]) | 2408 | ]) |
2409 | 2409 | ||
2410 | # Check whether user wants SELinux support | ||
2411 | SELINUX_MSG="no" | ||
2412 | AC_ARG_WITH(selinux, | ||
2413 | [ --with-selinux Enable SELinux support], | ||
2414 | [ if test "x$withval" != "xno" ; then | ||
2415 | AC_DEFINE(WITH_SELINUX, 1, [Define if you want SELinux support.]) | ||
2416 | SELINUX_MSG="yes" | ||
2417 | AC_CHECK_HEADERS(selinux/selinux.h) | ||
2418 | LIBS="$LIBS -lselinux" | ||
2419 | fi | ||
2420 | ]) | ||
2421 | |||
2410 | # Check whether user wants Kerberos 5 support | 2422 | # Check whether user wants Kerberos 5 support |
2411 | KRB5_MSG="no" | 2423 | KRB5_MSG="no" |
2412 | AC_ARG_WITH(kerberos5, | 2424 | AC_ARG_WITH(kerberos5, |
@@ -3188,6 +3200,7 @@ fi | |||
3188 | echo " Manpage format: $MANTYPE" | 3200 | echo " Manpage format: $MANTYPE" |
3189 | echo " PAM support: $PAM_MSG" | 3201 | echo " PAM support: $PAM_MSG" |
3190 | echo " KerberosV support: $KRB5_MSG" | 3202 | echo " KerberosV support: $KRB5_MSG" |
3203 | echo " SELinux support: $SELINUX_MSG" | ||
3191 | echo " Smartcard support: $SCARD_MSG" | 3204 | echo " Smartcard support: $SCARD_MSG" |
3192 | echo " S/KEY support: $SKEY_MSG" | 3205 | echo " S/KEY support: $SKEY_MSG" |
3193 | echo " TCP Wrappers support: $TCPW_MSG" | 3206 | echo " TCP Wrappers support: $TCPW_MSG" |
diff --git a/contrib/redhat/sshd.init b/contrib/redhat/sshd.init index 4ee8630c3..ffa66cd52 100755 --- a/contrib/redhat/sshd.init +++ b/contrib/redhat/sshd.init | |||
@@ -35,6 +35,9 @@ do_rsa1_keygen() { | |||
35 | if $KEYGEN -q -t rsa1 -f $RSA1_KEY -C '' -N '' >&/dev/null; then | 35 | if $KEYGEN -q -t rsa1 -f $RSA1_KEY -C '' -N '' >&/dev/null; then |
36 | chmod 600 $RSA1_KEY | 36 | chmod 600 $RSA1_KEY |
37 | chmod 644 $RSA1_KEY.pub | 37 | chmod 644 $RSA1_KEY.pub |
38 | if type restorecon >/dev/null 2>&1; then | ||
39 | restorecon $RSA1_KEY.pub | ||
40 | fi | ||
38 | success $"RSA1 key generation" | 41 | success $"RSA1 key generation" |
39 | echo | 42 | echo |
40 | else | 43 | else |
@@ -51,6 +54,9 @@ do_rsa_keygen() { | |||
51 | if $KEYGEN -q -t rsa -f $RSA_KEY -C '' -N '' >&/dev/null; then | 54 | if $KEYGEN -q -t rsa -f $RSA_KEY -C '' -N '' >&/dev/null; then |
52 | chmod 600 $RSA_KEY | 55 | chmod 600 $RSA_KEY |
53 | chmod 644 $RSA_KEY.pub | 56 | chmod 644 $RSA_KEY.pub |
57 | if type restorecon >/dev/null 2>&1; then | ||
58 | restorecon $RSA_KEY.pub | ||
59 | fi | ||
54 | success $"RSA key generation" | 60 | success $"RSA key generation" |
55 | echo | 61 | echo |
56 | else | 62 | else |
@@ -67,6 +73,9 @@ do_dsa_keygen() { | |||
67 | if $KEYGEN -q -t dsa -f $DSA_KEY -C '' -N '' >&/dev/null; then | 73 | if $KEYGEN -q -t dsa -f $DSA_KEY -C '' -N '' >&/dev/null; then |
68 | chmod 600 $DSA_KEY | 74 | chmod 600 $DSA_KEY |
69 | chmod 644 $DSA_KEY.pub | 75 | chmod 644 $DSA_KEY.pub |
76 | if type restorecon >/dev/null 2>&1; then | ||
77 | restorecon $DSA_KEY.pub | ||
78 | fi | ||
70 | success $"DSA key generation" | 79 | success $"DSA key generation" |
71 | echo | 80 | echo |
72 | else | 81 | else |
diff --git a/debian/changelog b/debian/changelog index 671a44922..aae858b96 100644 --- a/debian/changelog +++ b/debian/changelog | |||
@@ -2,6 +2,17 @@ openssh (1:4.1p1-4) UNRELEASED; urgency=low | |||
2 | 2 | ||
3 | * openssh-client and openssh-server conflict with ssh-krb5, as ssh-krb5 | 3 | * openssh-client and openssh-server conflict with ssh-krb5, as ssh-krb5 |
4 | only conflicts with ssh (closes: #312475). | 4 | only conflicts with ssh (closes: #312475). |
5 | * Manoj Srivastava: | ||
6 | - Added SELinux capability, and turned it on be default. Added | ||
7 | restorecon calls in preinst and postinst (should not matter if the | ||
8 | machine is not SELinux aware). By and large, the changes made should | ||
9 | have no effect unless the rules file calls --with-selinux; and even | ||
10 | then there should be no performance hit for machines not actively | ||
11 | running SELinux. | ||
12 | - Modified the preinst and postinst to call restorecon to set the | ||
13 | security context for the generated public key files. | ||
14 | - Added a comment to /etc/pam.d/ssh to indicate that an SELinux system | ||
15 | may want to also include pam_selinux.so. | ||
5 | * debconf template translations: | 16 | * debconf template translations: |
6 | - Update German (thanks, Jens Seidel; closes: #313949). | 17 | - Update German (thanks, Jens Seidel; closes: #313949). |
7 | 18 | ||
diff --git a/debian/control b/debian/control index 4e7cfd1b1..de945cf9c 100644 --- a/debian/control +++ b/debian/control | |||
@@ -2,7 +2,7 @@ Source: openssh | |||
2 | Section: net | 2 | Section: net |
3 | Priority: standard | 3 | Priority: standard |
4 | Maintainer: Matthew Vernon <matthew@debian.org> | 4 | Maintainer: Matthew Vernon <matthew@debian.org> |
5 | Build-Depends: libwrap0-dev | libwrap-dev, zlib1g-dev | libz-dev, libssl-dev, libpam0g-dev | libpam-dev, libgnomeui-dev (>= 2.0.0) [!hurd-i386] | libgnome-dev [!hurd-i386], libedit-dev, groff, debhelper (>= 2), sharutils [!hurd-i386] | 5 | Build-Depends: libwrap0-dev | libwrap-dev, zlib1g-dev | libz-dev, libssl-dev, libpam0g-dev | libpam-dev, libgnomeui-dev (>= 2.0.0) [!hurd-i386] | libgnome-dev [!hurd-i386], libedit-dev, groff, debhelper (>= 2), sharutils [!hurd-i386], libselinux1-dev [alpha amd64 arm hppa i386 ia64 m68k mips mipsel powerpc s390 sparc] |
6 | Standards-Version: 3.6.1 | 6 | Standards-Version: 3.6.1 |
7 | Uploaders: Colin Watson <cjwatson@debian.org> | 7 | Uploaders: Colin Watson <cjwatson@debian.org> |
8 | 8 | ||
diff --git a/debian/openssh-server.postinst b/debian/openssh-server.postinst index 9beb373b7..e6fe65ffa 100644 --- a/debian/openssh-server.postinst +++ b/debian/openssh-server.postinst | |||
@@ -94,6 +94,9 @@ create_key() { | |||
94 | echo -n $msg | 94 | echo -n $msg |
95 | ssh-keygen -q -f "$file" -N '' "$@" | 95 | ssh-keygen -q -f "$file" -N '' "$@" |
96 | echo | 96 | echo |
97 | if type restorecon >/dev/null 2>&1; then | ||
98 | restorecon "$file.pub" | ||
99 | fi | ||
97 | fi | 100 | fi |
98 | } | 101 | } |
99 | 102 | ||
diff --git a/debian/openssh-server.preinst b/debian/openssh-server.preinst index 320d4df2a..1ae85c7e8 100644 --- a/debian/openssh-server.preinst +++ b/debian/openssh-server.preinst | |||
@@ -72,6 +72,9 @@ EOF | |||
72 | # case the key is encrypted, which we need to fix | 72 | # case the key is encrypted, which we need to fix |
73 | chmod 600 $key | 73 | chmod 600 $key |
74 | ssh-keygen -u -f $key >/dev/null | 74 | ssh-keygen -u -f $key >/dev/null |
75 | if type restorecon >/dev/null 2>&1; then | ||
76 | restorecon "$key.pub" | ||
77 | fi | ||
75 | } | 78 | } |
76 | fi | 79 | fi |
77 | fi | 80 | fi |
diff --git a/debian/openssh-server.ssh.pam b/debian/openssh-server.ssh.pam index 1332a267e..ce33b9347 100644 --- a/debian/openssh-server.ssh.pam +++ b/debian/openssh-server.ssh.pam | |||
@@ -22,5 +22,8 @@ session optional pam_mail.so standard noenv # [1] | |||
22 | # Set up user limits from /etc/security/limits.conf. | 22 | # Set up user limits from /etc/security/limits.conf. |
23 | session required pam_limits.so | 23 | session required pam_limits.so |
24 | 24 | ||
25 | # Set up SELinux capabilities (need modified pam) | ||
26 | # session required pam_selinux.so multiple | ||
27 | |||
25 | # Standard Un*x password updating. | 28 | # Standard Un*x password updating. |
26 | @include common-password | 29 | @include common-password |
diff --git a/debian/rules b/debian/rules index 452b7fdbf..772d08f84 100755 --- a/debian/rules +++ b/debian/rules | |||
@@ -57,6 +57,11 @@ ifeq ($(DEB_HOST_ARCH_OS),hurd) | |||
57 | FORCE_LIBS := LIBS=-lcrypt | 57 | FORCE_LIBS := LIBS=-lcrypt |
58 | endif | 58 | endif |
59 | 59 | ||
60 | # SELinux support? | ||
61 | ifeq ($(DEB_HOST_ARCH_OS),linux) | ||
62 | SELINUX := --with-selinux | ||
63 | endif | ||
64 | |||
60 | # Change the version string to include the Debian version | 65 | # Change the version string to include the Debian version |
61 | SSH_EXTRAVERSION := Debian-$(shell dpkg-parsechangelog | sed -n -e '/^Version:/s/Version: //p' | sed -e 's/[^-]*-//') | 66 | SSH_EXTRAVERSION := Debian-$(shell dpkg-parsechangelog | sed -n -e '/^Version:/s/Version: //p' | sed -e 's/[^-]*-//') |
62 | 67 | ||
@@ -66,7 +71,7 @@ build-deb: build-deb-stamp | |||
66 | build-deb-stamp: | 71 | build-deb-stamp: |
67 | dh_testdir | 72 | dh_testdir |
68 | mkdir -p build-deb | 73 | mkdir -p build-deb |
69 | cd build-deb && $(FORCE_LIBS) ../configure --prefix=/usr --sysconfdir=/etc/ssh --libexecdir=/usr/lib/openssh --mandir=/usr/share/man --with-tcp-wrappers --with-xauth=/usr/bin/X11/xauth --with-default-path=/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin --with-superuser-path=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin --with-pam --with-4in6 --with-privsep-path=/var/run/sshd --without-rand-helper --with-libedit | 74 | cd build-deb && $(FORCE_LIBS) ../configure --prefix=/usr --sysconfdir=/etc/ssh --libexecdir=/usr/lib/openssh --mandir=/usr/share/man --with-tcp-wrappers --with-xauth=/usr/bin/X11/xauth --with-default-path=/usr/local/bin:/bin:/usr/bin:/usr/X11R6/bin --with-superuser-path=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin --with-pam --with-4in6 --with-privsep-path=/var/run/sshd --without-rand-helper --with-libedit $(SELINUX) |
70 | 75 | ||
71 | ifeq ($(DEB_HOST_ARCH_OS),linux) | 76 | ifeq ($(DEB_HOST_ARCH_OS),linux) |
72 | # Some 2.2 kernels have trouble with setres[ug]id() (bug #239999). | 77 | # Some 2.2 kernels have trouble with setres[ug]id() (bug #239999). |
@@ -659,14 +659,20 @@ mm_answer_authserv(int sock, Buffer *m) | |||
659 | 659 | ||
660 | authctxt->service = buffer_get_string(m, NULL); | 660 | authctxt->service = buffer_get_string(m, NULL); |
661 | authctxt->style = buffer_get_string(m, NULL); | 661 | authctxt->style = buffer_get_string(m, NULL); |
662 | debug3("%s: service=%s, style=%s", | 662 | authctxt->role = buffer_get_string(m, NULL); |
663 | __func__, authctxt->service, authctxt->style); | 663 | debug3("%s: service=%s, style=%s, role=%s", |
664 | __func__, authctxt->service, authctxt->style, authctxt->role); | ||
664 | 665 | ||
665 | if (strlen(authctxt->style) == 0) { | 666 | if (strlen(authctxt->style) == 0) { |
666 | xfree(authctxt->style); | 667 | xfree(authctxt->style); |
667 | authctxt->style = NULL; | 668 | authctxt->style = NULL; |
668 | } | 669 | } |
669 | 670 | ||
671 | if (strlen(authctxt->role) == 0) { | ||
672 | xfree(authctxt->role); | ||
673 | authctxt->role = NULL; | ||
674 | } | ||
675 | |||
670 | return (0); | 676 | return (0); |
671 | } | 677 | } |
672 | 678 | ||
diff --git a/monitor_wrap.c b/monitor_wrap.c index e1b6512b4..e005a4505 100644 --- a/monitor_wrap.c +++ b/monitor_wrap.c | |||
@@ -257,10 +257,10 @@ mm_auth2_read_banner(void) | |||
257 | return (banner); | 257 | return (banner); |
258 | } | 258 | } |
259 | 259 | ||
260 | /* Inform the privileged process about service and style */ | 260 | /* Inform the privileged process about service, style, and role */ |
261 | 261 | ||
262 | void | 262 | void |
263 | mm_inform_authserv(char *service, char *style) | 263 | mm_inform_authserv(char *service, char *style, char *role) |
264 | { | 264 | { |
265 | Buffer m; | 265 | Buffer m; |
266 | 266 | ||
@@ -269,6 +269,7 @@ mm_inform_authserv(char *service, char *style) | |||
269 | buffer_init(&m); | 269 | buffer_init(&m); |
270 | buffer_put_cstring(&m, service); | 270 | buffer_put_cstring(&m, service); |
271 | buffer_put_cstring(&m, style ? style : ""); | 271 | buffer_put_cstring(&m, style ? style : ""); |
272 | buffer_put_cstring(&m, role ? role : ""); | ||
272 | 273 | ||
273 | mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHSERV, &m); | 274 | mm_request_send(pmonitor->m_recvfd, MONITOR_REQ_AUTHSERV, &m); |
274 | 275 | ||
diff --git a/monitor_wrap.h b/monitor_wrap.h index 310b42513..5e8d4bf5a 100644 --- a/monitor_wrap.h +++ b/monitor_wrap.h | |||
@@ -43,7 +43,7 @@ struct Authctxt; | |||
43 | int mm_is_monitor(void); | 43 | int mm_is_monitor(void); |
44 | DH *mm_choose_dh(int, int, int); | 44 | DH *mm_choose_dh(int, int, int); |
45 | int mm_key_sign(Key *, u_char **, u_int *, u_char *, u_int); | 45 | int mm_key_sign(Key *, u_char **, u_int *, u_char *, u_int); |
46 | void mm_inform_authserv(char *, char *); | 46 | void mm_inform_authserv(char *, char *, char *); |
47 | struct passwd *mm_getpwnamallow(const char *); | 47 | struct passwd *mm_getpwnamallow(const char *); |
48 | char *mm_auth2_read_banner(void); | 48 | char *mm_auth2_read_banner(void); |
49 | int mm_auth_password(struct Authctxt *, char *); | 49 | int mm_auth_password(struct Authctxt *, char *); |
diff --git a/selinux.c b/selinux.c new file mode 100644 index 000000000..697c2910a --- /dev/null +++ b/selinux.c | |||
@@ -0,0 +1,111 @@ | |||
1 | #include "includes.h" | ||
2 | |||
3 | #include "auth.h" | ||
4 | #include "log.h" | ||
5 | |||
6 | #ifdef WITH_SELINUX | ||
7 | |||
8 | #include <selinux/selinux.h> | ||
9 | #include <selinux/flask.h> | ||
10 | #include <selinux/context.h> | ||
11 | #include <selinux/get_context_list.h> | ||
12 | #include <selinux/get_default_type.h> | ||
13 | |||
14 | extern Authctxt *the_authctxt; | ||
15 | |||
16 | static const security_context_t | ||
17 | selinux_get_user_context(const char *name) | ||
18 | { | ||
19 | security_context_t user_context = NULL; | ||
20 | char *role = NULL; | ||
21 | int ret = 0; | ||
22 | |||
23 | if (the_authctxt) | ||
24 | role = the_authctxt->role; | ||
25 | if (role != NULL && role[0]) | ||
26 | ret = get_default_context_with_role(name, role, NULL, | ||
27 | &user_context); | ||
28 | else | ||
29 | ret = get_default_context(name, NULL, &user_context); | ||
30 | if (ret < 0) { | ||
31 | if (security_getenforce() > 0) | ||
32 | fatal("Failed to get default security context for %s.", | ||
33 | name); | ||
34 | else | ||
35 | error("Failed to get default security context for %s. " | ||
36 | "Continuing in permissive mode", | ||
37 | name); | ||
38 | } | ||
39 | return user_context; | ||
40 | } | ||
41 | |||
42 | void | ||
43 | setup_selinux_pty(const char *name, const char *tty) | ||
44 | { | ||
45 | security_context_t new_tty_context, user_context, old_tty_context; | ||
46 | |||
47 | if (is_selinux_enabled() <= 0) | ||
48 | return; | ||
49 | |||
50 | new_tty_context = old_tty_context = NULL; | ||
51 | user_context = selinux_get_user_context(name); | ||
52 | |||
53 | if (getfilecon(tty, &old_tty_context) < 0) { | ||
54 | error("getfilecon(%.100s) failed: %.100s", | ||
55 | tty, strerror(errno)); | ||
56 | } else { | ||
57 | if (security_compute_relabel(user_context, old_tty_context, | ||
58 | SECCLASS_CHR_FILE, &new_tty_context) != 0) { | ||
59 | error("security_compute_relabel(%.100s) failed: " | ||
60 | "%.100s", tty, strerror(errno)); | ||
61 | } else { | ||
62 | if (setfilecon(tty, new_tty_context) != 0) | ||
63 | error("setfilecon(%.100s, %s) failed: %.100s", | ||
64 | tty, new_tty_context, strerror(errno)); | ||
65 | freecon(new_tty_context); | ||
66 | } | ||
67 | freecon(old_tty_context); | ||
68 | } | ||
69 | if (user_context) | ||
70 | freecon(user_context); | ||
71 | } | ||
72 | |||
73 | void | ||
74 | setup_selinux_exec_context(const char *name) | ||
75 | { | ||
76 | security_context_t user_context; | ||
77 | |||
78 | if (is_selinux_enabled() <= 0) | ||
79 | return; | ||
80 | |||
81 | user_context = selinux_get_user_context(name); | ||
82 | |||
83 | if (setexeccon(user_context)) { | ||
84 | if (security_getenforce() > 0) | ||
85 | fatal("Failed to set exec security context %s for %s.", | ||
86 | user_context, name); | ||
87 | else | ||
88 | error("Failed to set exec security context %s for %s. " | ||
89 | "Continuing in permissive mode", | ||
90 | user_context, name); | ||
91 | } | ||
92 | if (user_context) | ||
93 | freecon(user_context); | ||
94 | } | ||
95 | |||
96 | #else /* WITH_SELINUX */ | ||
97 | |||
98 | void | ||
99 | setup_selinux_pty(const char *name, const char *tty) | ||
100 | { | ||
101 | (void) name; | ||
102 | (void) tty; | ||
103 | } | ||
104 | |||
105 | void | ||
106 | setup_selinux_exec_context(const char *name) | ||
107 | { | ||
108 | (void) name; | ||
109 | } | ||
110 | |||
111 | #endif /* WITH_SELINUX */ | ||
diff --git a/selinux.h b/selinux.h new file mode 100644 index 000000000..53fc155f2 --- /dev/null +++ b/selinux.h | |||
@@ -0,0 +1,7 @@ | |||
1 | #ifndef SELINUX_H | ||
2 | #define SELINUX_H | ||
3 | |||
4 | extern void setup_selinux_pty(const char *, const char *); | ||
5 | extern void setup_selinux_exec_context(const char *); | ||
6 | |||
7 | #endif /* SELINUX_H */ | ||
@@ -58,6 +58,8 @@ RCSID("$OpenBSD: session.c,v 1.181 2004/12/23 17:35:48 markus Exp $"); | |||
58 | #include "session.h" | 58 | #include "session.h" |
59 | #include "monitor_wrap.h" | 59 | #include "monitor_wrap.h" |
60 | 60 | ||
61 | #include "selinux.h" | ||
62 | |||
61 | #if defined(KRB5) && defined(USE_AFS) | 63 | #if defined(KRB5) && defined(USE_AFS) |
62 | #include <kafs.h> | 64 | #include <kafs.h> |
63 | #endif | 65 | #endif |
@@ -1342,6 +1344,8 @@ do_setusercontext(struct passwd *pw) | |||
1342 | #endif | 1344 | #endif |
1343 | if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid) | 1345 | if (getuid() != pw->pw_uid || geteuid() != pw->pw_uid) |
1344 | fatal("Failed to set uids to %u.", (u_int) pw->pw_uid); | 1346 | fatal("Failed to set uids to %u.", (u_int) pw->pw_uid); |
1347 | |||
1348 | setup_selinux_exec_context(pw->pw_name); | ||
1345 | } | 1349 | } |
1346 | 1350 | ||
1347 | static void | 1351 | static void |
@@ -22,6 +22,8 @@ RCSID("$OpenBSD: sshpty.c,v 1.12 2004/06/21 17:36:31 avsm Exp $"); | |||
22 | #include "log.h" | 22 | #include "log.h" |
23 | #include "misc.h" | 23 | #include "misc.h" |
24 | 24 | ||
25 | #include "selinux.h" | ||
26 | |||
25 | #ifdef HAVE_PTY_H | 27 | #ifdef HAVE_PTY_H |
26 | # include <pty.h> | 28 | # include <pty.h> |
27 | #endif | 29 | #endif |
@@ -200,6 +202,8 @@ pty_setowner(struct passwd *pw, const char *tty) | |||
200 | fatal("stat(%.100s) failed: %.100s", tty, | 202 | fatal("stat(%.100s) failed: %.100s", tty, |
201 | strerror(errno)); | 203 | strerror(errno)); |
202 | 204 | ||
205 | setup_selinux_pty(pw->pw_name, tty); | ||
206 | |||
203 | if (st.st_uid != pw->pw_uid || st.st_gid != gid) { | 207 | if (st.st_uid != pw->pw_uid || st.st_gid != gid) { |
204 | if (chown(tty, pw->pw_uid, gid) < 0) { | 208 | if (chown(tty, pw->pw_uid, gid) < 0) { |
205 | if (errno == EROFS && | 209 | if (errno == EROFS && |