On Tue, Apr 04, 2006 at 05:37:44AM -0500, Alexandre Julliard wrote:
Module: wine Branch: refs/heads/master Commit: 197a7d0422b2dd60009e405bc254ca616327fbf0 URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=197a7d0422b2dd60009e405b...
Author: Alexandre Julliard <julliard(a)winehq.org> Date: Tue Apr 4 12:08:30 2006 +0200
configure: Filter out garbage from arts-config --libs too.
---
configure | 9 ++++++++- configure.ac | 9 ++++++++- 2 files changed, 16 insertions(+), 2 deletions(-)
diff --git a/configure b/configure index 9bffafd..c825171 100755 --- a/configure +++ b/configure @@ -10855,7 +10855,14 @@ then -I*) ARTSC_CFLAGS="$ARTSC_CFLAGS $i";; esac done - ARTSC_LIBS=`$ARTSCCONFIG --libs` + ARTSC_LIBS="" + for i in `$ARTSCCONFIG --libs` + do + case "$i" in + -L/usr/lib|-L/usr/lib64) ;; + -L*|-l*) ARTSC_LIBS="$ARTSC_LIBS $i";; + esac + done
It also adds -L/opt/kde/lib64 for me, so this will likely not fully work. I would say we just do not configure arts and esd on 64->32 compiles. :/ Ciao, Marcus