mirror of git://gcc.gnu.org/git/gcc.git
configure: Rebuilt.
* configure: Rebuilt. * configure.ac (HAVE_CLOCK_GETTIME): Put -lrt in THREADLIBS as well. From-SVN: r111912
This commit is contained in:
parent
f243cee6f1
commit
dfd8572bf7
|
@ -1,3 +1,9 @@
|
||||||
|
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>
|
2006-03-09 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
PR libgcj/24461:
|
PR libgcj/24461:
|
||||||
|
|
|
@ -12456,7 +12456,10 @@ _ACEOF
|
||||||
|
|
||||||
case "$THREADSPEC" in
|
case "$THREADSPEC" in
|
||||||
*-lrt*) ;;
|
*-lrt*) ;;
|
||||||
*) THREADSPEC="$THREADSPEC -lrt" ;;
|
*)
|
||||||
|
THREADSPEC="$THREADSPEC -lrt"
|
||||||
|
THREADLIBS="$THREADLIBS -lrt"
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
@ -1021,7 +1021,10 @@ else
|
||||||
AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if you have clock_gettime()])
|
AC_DEFINE(HAVE_CLOCK_GETTIME, 1, [Define if you have clock_gettime()])
|
||||||
case "$THREADSPEC" in
|
case "$THREADSPEC" in
|
||||||
*-lrt*) ;;
|
*-lrt*) ;;
|
||||||
*) THREADSPEC="$THREADSPEC -lrt" ;;
|
*)
|
||||||
|
THREADSPEC="$THREADSPEC -lrt"
|
||||||
|
THREADLIBS="$THREADLIBS -lrt"
|
||||||
|
;;
|
||||||
esac])
|
esac])
|
||||||
|
|
||||||
LIBS="$save_LIBS"
|
LIBS="$save_LIBS"
|
||||||
|
|
Loading…
Reference in New Issue