Your message dated Tue, 30 Nov 1999 16:43:38 +0100 with message-id <3843F0AA.838B881A@kde.org> and subject line thanks has caused the attached bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I'm talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Stephan Kulow (administrator, KDE bugs database) Received: (at submit) by bugs.kde.org; 5 May 1999 18:36:20 +0000 From xelah@ferret.lmh.ox.ac.uk Wed May 5 20:36:20 1999 Received: from ferret.lmh.ox.ac.uk ([163.1.138.204]:32781 "HELO ferret.lmh.ox.ac.uk" ident: "qmailr") by alpha.tat.physik.uni-tuebingen.de with SMTP id <47065-26526>; Wed, 5 May 1999 20:36:10 +0200 Received: (qmail 27039 invoked by uid 2036); 5 May 1999 18:36:10 -0000 Received: from localhost (sendmail-bs@127.0.0.1) by localhost with SMTP; 5 May 1999 18:36:10 -0000 Date: Wed, 5 May 1999 19:36:10 +0100 (GMT) From: Alex Hayward To: submit@bugs.kde.org Subject: kdesupport/QwSpriteField/Makefile.am ignores USER_LDFLAGS Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Return-Path: X-Orcpt: rfc822;submit@bugs.kde.org Package: configure Version: HEAD, 99/05/05 On my system (FreeBSD-STABLE) certain libraries (in particular, the png library) are stored in /usr/local/lib. The KDE configure scripts appear not to look there so I use --with-extra-libs=/usr/local/lib when configuring KDE packages. kdesupport/QwSpriteField, however, ignores this with the result that the link fails since it can't find libpng. The patch I use: --- Makefile.am.orig Wed May 5 20:33:30 1999 +++ Makefile.am Wed May 5 20:33:38 1999 @@ -1,5 +1,5 @@ -LDFLAGS = $(QT_LDFLAGS) $(X_LDFLAGS) +LDFLAGS = $(QT_LDFLAGS) $(X_LDFLAGS) $(USER_LDFLAGS) # the difference between the first and the last, is the major number # the last is the minor number