diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-05-06 23:17:13 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-05-06 23:17:13 +0000 |
commit | 607c351a149e23617e14c8fd583fcb4f4e9d2aeb (patch) | |
tree | dd43de3d47a813e07a53d89514430c4a89e7df56 /sysdeps/unix/common | |
parent | cbd57e25288e1803e4db5f5503f9d75a55f7d024 (diff) | |
download | glibc-607c351a149e23617e14c8fd583fcb4f4e9d2aeb.tar glibc-607c351a149e23617e14c8fd583fcb4f4e9d2aeb.tar.gz glibc-607c351a149e23617e14c8fd583fcb4f4e9d2aeb.tar.bz2 glibc-607c351a149e23617e14c8fd583fcb4f4e9d2aeb.zip |
Update.
1999-05-06 Ulrich Drepper <drepper@cygnus.com>
* nss/digits_dots.c: Correct return value interpretation of
inet_ntoa. Fix PR libc/1109.
Diffstat (limited to 'sysdeps/unix/common')
-rwxr-xr-x | sysdeps/unix/common/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/common/configure b/sysdeps/unix/common/configure index 9e26b276f2..acd4ef23fe 100755 --- a/sysdeps/unix/common/configure +++ b/sysdeps/unix/common/configure @@ -15,7 +15,7 @@ int main() { extern char *sys_siglist[]; puts(*sys_siglist); ; return 0; } EOF -if { (eval echo configure:19: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then +if { (eval echo configure:19: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_check_symbol_sys_siglist=yes else @@ -48,7 +48,7 @@ int main() { extern char *_sys_siglist[]; puts(*_sys_siglist); ; return 0; } EOF -if { (eval echo configure:52: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then +if { (eval echo configure:52: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_check_symbol__sys_siglist=yes else @@ -85,7 +85,7 @@ int main() { $ctype[13]; ; return 0; } EOF -if { (eval echo configure:89: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then +if { (eval echo configure:89: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* libc_cv_ctype_glue="$ctype"; break else |