diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-10-30 00:41:07 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-10-30 00:41:07 +0000 |
commit | edece8f10161ced3bed66845b7bee64f7e9fea4b (patch) | |
tree | 6e5b38ebdb9bc98d00555a62cd886e5093e77141 /configure | |
parent | 536e40e287df5438683e78e64867009f7a0d2698 (diff) | |
download | glibc-edece8f10161ced3bed66845b7bee64f7e9fea4b.tar.gz glibc-edece8f10161ced3bed66845b7bee64f7e9fea4b.tar.xz glibc-edece8f10161ced3bed66845b7bee64f7e9fea4b.zip |
* sysdeps/ia64/pthread_spin_unlock.c (pthread_spin_unlock): Use
__sync_lock_release instead of __sync_lock_release_si.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure index c9d321abd1..d19d5d3e73 100755 --- a/configure +++ b/configure @@ -5652,7 +5652,7 @@ else libc_cv_z_relro=yes else case "$base_machine" in - i3456786 | x86_64 | powerpc* | s390* | sparc* | alpha*) ;; + i[34567]86 | x86_64 | powerpc* | s390* | sparc* | alpha*) ;; *) libc_cv_z_relro="not required" ;; esac fi @@ -5660,7 +5660,7 @@ else fi echo "$as_me:$LINENO: result: $libc_cv_z_relro" >&5 echo "${ECHO_T}$libc_cv_z_relro" >&6 - if test $libc_cv_z_relro = no; then + if test "$libc_cv_z_relro" = no; then { { echo "$as_me:$LINENO: error: linker with -z relro support required" >&5 echo "$as_me: error: linker with -z relro support required" >&2;} { (exit 1); exit 1; }; } |