pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/x11/qt3-libs/files Set QMAKE_LFLAGS based on the value...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/33ba63038069
branches:  trunk
changeset: 478881:33ba63038069
user:      markd <markd%pkgsrc.org@localhost>
date:      Sat Jul 31 22:23:40 2004 +0000

description:
Set QMAKE_LFLAGS based on the value of LDFLAGS at the point that qmake is
run rather than when the qmake.conf was generated.  Should be effectively
equivalent to what was happening under buildlink2 and fixes linking
problems of audio/kmp and other qmake using packages.

diffstat:

 x11/qt3-libs/files/qmake.conf |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r bb9d8ca82fbd -r 33ba63038069 x11/qt3-libs/files/qmake.conf
--- a/x11/qt3-libs/files/qmake.conf     Sat Jul 31 22:13:38 2004 +0000
+++ b/x11/qt3-libs/files/qmake.conf     Sat Jul 31 22:23:40 2004 +0000
@@ -1,5 +1,5 @@
-# $NetBSD: qmake.conf,v 1.13 2004/07/06 16:01:10 reed Exp $
-# $Id: qmake.conf,v 1.13 2004/07/06 16:01:10 reed Exp $
+# $NetBSD: qmake.conf,v 1.14 2004/07/31 22:23:40 markd Exp $
+# $Id: qmake.conf,v 1.14 2004/07/31 22:23:40 markd Exp $
 #
 # qmake configuration for netbsd-g++
 #
@@ -56,7 +56,7 @@
                -rpath $(if $(TARGET0), \
                        $(QTPREFIX)/lib, \
                        $(subst ../../..,$(QTPREFIX)/plugins,$(DESTDIR)))
-QMAKE_LFLAGS           = @LDFLAGS@ -L$(QTDIR)/lib
+QMAKE_LFLAGS           = $(LDFLAGS) -L$(QTDIR)/lib
 QMAKE_LFLAGS_RELEASE   =
 QMAKE_LFLAGS_DEBUG     =
 QMAKE_LFLAGS_SHLIB     = 



Home | Main Index | Thread Index | Old Index