diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2011-03-21 13:03:34 +0000 |
---|---|---|
committer | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2011-03-21 13:03:34 +0000 |
commit | 0e8ad34f4dcf33bfc81bd85a8190756691aed9bc (patch) | |
tree | d8edde47ec9b1c9d0894163ec792b81e0a78e8bf /configure | |
parent | 629bdbdaf47e37e27ae2206a5c0ff6771254b550 (diff) | |
download | gdb-0e8ad34f4dcf33bfc81bd85a8190756691aed9bc.zip gdb-0e8ad34f4dcf33bfc81bd85a8190756691aed9bc.tar.gz gdb-0e8ad34f4dcf33bfc81bd85a8190756691aed9bc.tar.bz2 |
PR bootstrap/48120:
* configure.ac (pwllib): Use LIBS instead of LDFLAGS.
Add -lstdc++ -lm to LIBS.
* configure: Regenerate.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5725,8 +5725,8 @@ fi if test "x$with_ppl" != xno; then if test "x$pwllib" = x; then - saved_LDFLAGS="$LDFLAGS" - LDFLAGS="$LDFLAGS $ppllibs" + saved_LIBS="$LIBS" + LIBS="$LIBS $ppllibs -lstdc++ -lm" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for PWL_handle_timeout in -lpwl" >&5 $as_echo_n "checking for PWL_handle_timeout in -lpwl... " >&6; } if test "${ac_cv_lib_pwl_PWL_handle_timeout+set}" = set; then : @@ -5767,7 +5767,7 @@ if test "x$ac_cv_lib_pwl_PWL_handle_timeout" = x""yes; then : pwllib="-lpwl" fi - LDFLAGS="$saved_LDFLAGS" + LIBS="$saved_LIBS" fi ppllibs="$ppllibs -lppl_c -lppl $pwllib -lgmpxx" |