diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-03-14 16:08:16 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-03-14 16:08:16 +0000 |
commit | f802accba41c85a2c122f7461282f8a1b5328379 (patch) | |
tree | 99c5bf2c35fd5819f6f681473b42790cd71c66a9 /configure.in | |
parent | 76fbcfdd66556dfe8e813cda50ac28071d0da573 (diff) | |
download | glibc-f802accba41c85a2c122f7461282f8a1b5328379.tar glibc-f802accba41c85a2c122f7461282f8a1b5328379.tar.gz glibc-f802accba41c85a2c122f7461282f8a1b5328379.tar.bz2 glibc-f802accba41c85a2c122f7461282f8a1b5328379.zip |
Update.
1998-03-14 11:47 H.J. Lu <hjl@gnu.org>
* elf/dl-close.c (_dl_close): Stop unmapping the segments after
unmapping the last loaded segment.
1998-03-14 15:54 Ulrich Drepper <drepper@cygnus.com>
* configure.in: Set base_os for Irix6.
Correct test for .weakext.
1998-03-14 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* elf/dl-deps.c (_dl_map_object_deps): Add first parameter
(new_line) to _dl_debug_message call.
* locale/programs/linereader.c (lr_token): Return EOF token at EOF.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 0406eacaab..0f3a9a70d5 100644 --- a/configure.in +++ b/configure.in @@ -234,6 +234,8 @@ osf* | sunos* | ultrix* | newsos* | dynix* | *bsd*) base_os=unix/bsd ;; sysv* | isc* | esix* | sco* | minix* | irix4* | linux*) base_os=unix/sysv ;; +irix6*) + base_os=unix/sysv/irix6/$os ;; solaris[2-9]*) base_os=unix/sysv/sysv4 ;; none) @@ -800,8 +802,9 @@ cat > conftest.s <<EOF .text ${libc_cv_asm_global_directive} foo foo: -.weakext foo -.weakext foo, bar +.weakext bar foo +.weakext baz +${libc_cv_asm_global_directive} baz EOF if ${CC-cc} $CFLAGS -c conftest.s 2>/dev/null; then libc_cv_asm_weakext_directive=yes |