Am Freitag, 22. Februar 2008 22:34:36 schrieb Robert Daniels:
> Oops, wrote all that and forgot to actually attach the patch.
>
> Here it is.

Well done!   This animates me again to activly work on the xmls as you did 
instead of just reporting that there are new versions...  Thanks! Hopefully 
those patches gets applied.

Let me just add my 2 cents: This is what i have in my scripts for 3.5.8. This 
also deals with the linking issue you mentioned:

kdelibs:
    ./configure --prefix=$KDE_PREFIX \
                --sysconfdir=/etc/kde \
                --disable-debug \
                --disable-dependency-tracking &&
    find . -name Makefile \
           -exec sed -i -e "s;-lqt-mt;& -L$QTDIR/lib;g" \
           '{}' ';'
    make &&
    make install && ...

kdebase:
    LIBS=-L$KDE_PREFIX/lib \
    ./configure --prefix=$KDE_PREFIX --sysconfdir=/etc/kde \
        --disable-debug --disable-dependency-tracking $OPTIONS &&
    make &&
    make install && ...

Prefixing the configure with the LIBS= statement, solves the linking issue in 
kdebase

-- 
Thomas
-- 
http://linuxfromscratch.org/mailman/listinfo/blfs-dev
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to