From: Tom Tromey Date: Thu, 9 Mar 2006 23:49:58 +0000 (+0000) Subject: configure: Rebuilt. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dfd8572bf7694449540906dcba569b9fb2f3d347;p=gcc.git configure: Rebuilt. * configure: Rebuilt. * configure.ac (HAVE_CLOCK_GETTIME): Put -lrt in THREADLIBS as well. From-SVN: r111912 --- diff --git a/libjava/ChangeLog b/libjava/ChangeLog index bde6b45470e..af25e325abb 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,9 @@ +2006-03-09 Tom Tromey + + * configure: Rebuilt. + * configure.ac (HAVE_CLOCK_GETTIME): Put -lrt in THREADLIBS as + well. + 2006-03-09 Tom Tromey PR libgcj/24461: diff --git a/libjava/configure b/libjava/configure index 91e7318868d..3b80ce1a164 100755 --- a/libjava/configure +++ b/libjava/configure @@ -12456,7 +12456,10 @@ _ACEOF case "$THREADSPEC" in *-lrt*) ;; - *) THREADSPEC="$THREADSPEC -lrt" ;; + *) + THREADSPEC="$THREADSPEC -lrt" + THREADLIBS="$THREADLIBS -lrt" + ;; esac fi diff --git a/libjava/configure.ac b/libjava/configure.ac index 5816efec28d..113b9ba97c2 100644 --- a/libjava/configure.ac +++ b/libjava/configure.ac @@ -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"