Commit dfd8572b by Tom Tromey Committed by Tom Tromey

configure: Rebuilt.

	* configure: Rebuilt.
	* configure.ac (HAVE_CLOCK_GETTIME): Put -lrt in THREADLIBS as
	well.

From-SVN: r111912
parent f243cee6
2006-03-09 Tom Tromey <tromey@redhat.com>
* configure: Rebuilt.
* configure.ac (HAVE_CLOCK_GETTIME): Put -lrt in THREADLIBS as
well.
2006-03-09 Tom Tromey <tromey@redhat.com>
PR libgcj/24461:
* java/util/zip/InflaterInputStream.java (fill): Throw exception
if stream is truncated.
......
......@@ -12456,7 +12456,10 @@ _ACEOF
case "$THREADSPEC" in
*-lrt*) ;;
*) THREADSPEC="$THREADSPEC -lrt" ;;
*)
THREADSPEC="$THREADSPEC -lrt"
THREADLIBS="$THREADLIBS -lrt"
;;
esac
fi
......
......@@ -1021,7 +1021,10 @@ else
AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if you have clock_gettime()])
case "$THREADSPEC" in
*-lrt*) ;;
*) THREADSPEC="$THREADSPEC -lrt" ;;
*)
THREADSPEC="$THREADSPEC -lrt"
THREADLIBS="$THREADLIBS -lrt"
;;
esac])
LIBS="$save_LIBS"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment