diff options
author | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-09 23:49:58 +0000 |
---|---|---|
committer | tromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-03-09 23:49:58 +0000 |
commit | 770e2bf4d4dc06bf9b929687eb024444247adf46 (patch) | |
tree | 9a0c6f059a7734327bc8f6f205ed5ea698e98fd1 /libjava/configure | |
parent | 6b84145cd2b7281aae13710912b1f9c1b4026e94 (diff) | |
download | gcc-770e2bf4d4dc06bf9b929687eb024444247adf46.tar.gz |
* configure: Rebuilt.
* configure.ac (HAVE_CLOCK_GETTIME): Put -lrt in THREADLIBS as
well.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@111912 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/configure')
-rwxr-xr-x | libjava/configure | 5 |
1 files changed, 4 insertions, 1 deletions
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 |