diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-12-31 17:46:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-12-31 17:46:59 +0000 |
commit | 84fb7c8c26edf479ad40cc27c41d2a0b1b452b99 (patch) | |
tree | 5795a9c99a1376b836c31665cd67b5cefcc9d704 /configure | |
parent | f8580b753aceb4e6fe2e32bebd33320abe717d33 (diff) | |
download | glibc-84fb7c8c26edf479ad40cc27c41d2a0b1b452b99.tar glibc-84fb7c8c26edf479ad40cc27c41d2a0b1b452b99.tar.gz glibc-84fb7c8c26edf479ad40cc27c41d2a0b1b452b99.tar.bz2 glibc-84fb7c8c26edf479ad40cc27c41d2a0b1b452b99.zip |
Update.
2001-12-31 Ulrich Drepper <drepper@redhat.com>
* sysdeps/unix/sysv/linux/getloadavg.c (getloadavg): Always use C
locale to parse /proc/loadavg.
2001-12-31 Jakub Jelinek <jakub@redhat.com>
* elf/dl-conflict.c: Include sys/param.h.
(RESOLVE_CONFLICT_FIND_MAP): Cast r_offset to ElfW(Addr).
* sysdeps/alpha/dl-machine.h (elf_machine_runtime_setup): Avoid
warning.
(TRAMPOLINE_TEMPLATE, RTLD_START): Don't use multi-line string
literals to avoid warnings.
* configure.in: Don't check for gsed since we do not use it anywhere.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2277,7 +2277,7 @@ else fi -for ac_prog in mawk gawk nawk awk +for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 @@ -3455,12 +3455,12 @@ else #line 3456 "configure" #include "confdefs.h" #include <stdio.h> -main() +int main() { FILE *f=fopen("conftestval", "w"); - if (!f) exit(1); + if (!f) return(1); fprintf(f, "%d\n", sizeof(long double)); - exit(0); + return(0); } EOF if { (eval echo configure:3467: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null |