about summary refs log tree commit diff
path: root/configure.in
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-09-29 11:32:03 +0000
committerRoland McGrath <roland@gnu.org>2002-09-29 11:32:03 +0000
commit72d4c33d4ca847466c4557024376a2234838a505 (patch)
treeb70c0f620bad07d791245282d18b40a6826193aa /configure.in
parent5bbfc1ea7069630149c5fc1b3cec4a044d43a9cd (diff)
downloadglibc-72d4c33d4ca847466c4557024376a2234838a505.tar.gz
glibc-72d4c33d4ca847466c4557024376a2234838a505.tar.xz
glibc-72d4c33d4ca847466c4557024376a2234838a505.zip
* sysdeps/unix/sysv/linux/sparc/sysdep.h (inline_syscall0): Make asm
	volatile.
	(inline_syscall1, inline_syscall2, inline_syscall3, inline_syscall4,
	inline_syscall5, inline_syscall6): Likewise.
	* sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h (INLINE_SYSCALL):
	Likewise.
	* sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h (INLINE_SYSCALL):
	Likewise.

2002-09-29  Roland McGrath  <roland@redhat.com>

	* configure.in (libc_cv_ranlib_necessary check): Put the .o file in
	the archive, not the .c file.
	* configure: Regenerated.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 2293f7538f..d3d713148b 100644
--- a/configure.in
+++ b/configure.in
@@ -651,7 +651,7 @@ char b;
 void c(void) {}
 EOF
 $CC $CFLAGS -c conftest.c
-$AR cr conftest.a conftest.c
+$AR cr conftest.a conftest.o
 cp conftest.a conftest2.a
 $RANLIB conftest.a
 if cmp -s conftest.a conftest2.a; then
@@ -1588,7 +1588,7 @@ fi
 
 dnl Check whether the compiler supports the __thread keyword.
 AC_CACHE_CHECK([for __thread], libc_cv_gcc___thread,
-[cat > conftest.c <<EOF
+[cat > conftest.c <<\EOF
 __thread int a = 42;
 EOF
 if AC_TRY_COMMAND([${CC-cc} $CFLAGS -c conftest.c >&AC_FD_CC]); then