This is the mail archive of the
java-patches@sourceware.cygnus.com
mailing list for the Java project.
Patch: typo in configure.in
- To: Java Patch List <java-patches@sourceware.cygnus.com>
- Subject: Patch: typo in configure.in
- From: Tom Tromey <tromey@cygnus.com>
- Date: 09 Sep 1999 18:06:00 -0600
- Reply-To: tromey@cygnus.com
I'm checking in the appended patch. It fixes a typo that prevented
-lrt/-lposix4 from being put into libgcj.spec. I'm putting this on
the trunk and on the 2.95 branch (we might do a 2.95.2 when gcc 2.95.2
is released).
1999-09-09 Tom Tromey <tromey@cygnus.com>
* configure: Rebuilt.
* configure.in: Fixed typo; variable is THREADSPEC and not
THREADSPECS.
Tom
Index: configure.in
===================================================================
RCS file: /cvs/java/libgcj/libjava/configure.in,v
retrieving revision 1.11.2.8
diff -u -r1.11.2.8 configure.in
--- configure.in 1999/08/09 18:53:10 1.11.2.8
+++ configure.in 1999/09/10 00:03:24
@@ -376,11 +376,11 @@
AC_CHECK_LIB(rt, sched_yield, [
AC_DEFINE(HAVE_SCHED_YIELD)
THREADLIBS="$THREADLIBS -lrt"
- THREADSPECS="$THREADSPECS -lrt"], [
+ THREADSPEC="$THREADSPEC -lrt"], [
AC_CHECK_LIB(posix4, sched_yield, [
AC_DEFINE(HAVE_SCHED_YIELD)
THREADLIBS="$THREADLIBS -lposix4"
- THREADSPECS="$THREADSPECS -lposix4"])])])
+ THREADSPEC="$THREADSPEC -lposix4"])])])
LIBS="$save_LIBS"
# We require a way to get the time.