about summary refs log tree commit diff
path: root/sysdeps/sparc/sparc64/configure
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-09-27 03:23:45 +0000
committerRoland McGrath <roland@gnu.org>2002-09-27 03:23:45 +0000
commit8243d6f1b70a506419329c81d862b80e9104ca9b (patch)
tree162d6357e85a897c5710e4945d3e11c503811928 /sysdeps/sparc/sparc64/configure
parent9a88a2d7b35b7f08c07a9a189a176e7ca49d82b4 (diff)
downloadglibc-8243d6f1b70a506419329c81d862b80e9104ca9b.tar.gz
glibc-8243d6f1b70a506419329c81d862b80e9104ca9b.tar.xz
glibc-8243d6f1b70a506419329c81d862b80e9104ca9b.zip
2002-09-24 Jakub Jelinek <jakub@redhat.com>
	* sysdeps/sparc/sparc32/dl-machine.h (elf_machine_load_address): Don't
	rely on *r_offset of R_SPARC_RELATIVE reloc in .got to contain the
	addend.
	* sysdeps/sparc/sparc64/dl-machine.h (elf_machine_load_address): Use
	the same l_addr computation.
	* sysdeps/sparc/sparc64/configure.in: Removed.
	* sysdeps/sparc/sparc64/configure: Removed.
	* config.h.in (SPARC64_DYNAMIC_BEFORE_GOT): Remove.
Diffstat (limited to 'sysdeps/sparc/sparc64/configure')
-rw-r--r--sysdeps/sparc/sparc64/configure33
1 files changed, 0 insertions, 33 deletions
diff --git a/sysdeps/sparc/sparc64/configure b/sysdeps/sparc/sparc64/configure
index 954ff7a03d..e69de29bb2 100644
--- a/sysdeps/sparc/sparc64/configure
+++ b/sysdeps/sparc/sparc64/configure
@@ -1,33 +0,0 @@
- # Local configure fragment for sysdeps/sparc/sparc64.
-
-# Check whether .got section comes before or after .dynamic
-echo $ac_n "checking where sparc64 .dynamic section comes before .got""... $ac_c" 1>&6
-echo "configure:6: checking where sparc64 .dynamic section comes before .got" >&5
-if eval "test \"`echo '$''{'libc_cv_sparc64_dynamic_before_got'+set}'`\" = set"; then
-  echo $ac_n "(cached) $ac_c" 1>&6
-else
-  
-${CC-cc} $CFLAGS -shared -Wl,--verbose 2>&1 \
-  | grep '^[ 	]*\.\(got\|dynamic\)[^A-Za-z0-9_]' > conftest.order
-
-if test `cat conftest.order | wc -l` != 2; then
-  { echo "configure: error: Couldn't figure .got/.dynamic relative placement" 1>&2; exit 1; }
-else
-  
-  if head -n 1 conftest.order | grep '^[ 	]*\.got'; then
-    libc_cv_sparc64_dynamic_before_got=no
-  else
-    libc_cv_sparc64_dynamic_before_got=yes
-  fi
-  
-fi
-rm -f conftest*
-fi
-
-echo "$ac_t""$libc_cv_sparc64_dynamic_before_got" 1>&6
-if test $libc_cv_sparc64_dynamic_before_got = yes; then
-  cat >> confdefs.h <<\EOF
-#define SPARC64_DYNAMIC_BEFORE_GOT 1
-EOF
-
-fi