diff options
author | joerg <joerg@pkgsrc.org> | 2006-05-26 07:47:03 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-05-26 07:47:03 +0000 |
commit | 662e468165de8d453a20869d816048b01b198005 (patch) | |
tree | c01a2795caa836e7c970ecbef3367c7e5b59ce96 /audio | |
parent | c4c1fb921ac15dd8bd0a0cc0cdb7d78b334c6399 (diff) | |
download | pkgsrc-662e468165de8d453a20869d816048b01b198005.tar.gz |
Correct pthread linkage and C++ usage.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/qsynth/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/audio/qsynth/Makefile b/audio/qsynth/Makefile index 17ed15f6bbe..df55e447ee7 100644 --- a/audio/qsynth/Makefile +++ b/audio/qsynth/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2006/04/22 09:22:06 rillig Exp $ +# $NetBSD: Makefile,v 1.8 2006/05/26 07:47:03 joerg Exp $ DISTNAME= qsynth-0.2.4 PKGREVISION= 4 @@ -11,9 +11,12 @@ COMMENT= Qt GUI Interface to FluidSynth PKG_INSTALLATION_TYPES= overwrite pkgviews +USE_LANGUAGES= c c++ USE_LIBTOOL= yes GNU_CONFIGURE= yes +PTHREAD_AUTO_VARS= yes + # a fix for qt-3.3.5, please remove if qt-3.3.6 (or newer) solves the problem SUBST_CLASSES+= hints SUBST_STAGE.hints= post-patch @@ -27,4 +30,5 @@ do-install: .include "../../audio/fluidsynth/buildlink3.mk" .include "../../x11/qt3-tools/buildlink3.mk" +.include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |