summaryrefslogtreecommitdiff
path: root/audio/madman/files/patch-SConstruct
diff options
context:
space:
mode:
authorRenato Botelho <garga@FreeBSD.org>2005-10-13 18:13:52 +0000
committerRenato Botelho <garga@FreeBSD.org>2005-10-13 18:13:52 +0000
commit38e17d36fc99c21a2a727e8a8f84cd4472196100 (patch)
tree818441b538d01204d91da720ae22d5952faf13c2 /audio/madman/files/patch-SConstruct
parent- Don't link statically to libpng. (diff)
Madman is an advanced digital music organizer. It can catalogue huge amounts
of digital music in different formats, including MP3 and Ogg Vorbis. It has flexible querying, tagging, intelligent scoring, and more. Author: Andreas Kloeckner <inducer@users.sf.net> WWW: http://madman.sourceforge.net/ PR: ports/87301 Submitted by: Daniel Roethlisberger <daniel@roe.ch>
Diffstat (limited to 'audio/madman/files/patch-SConstruct')
-rw-r--r--audio/madman/files/patch-SConstruct20
1 files changed, 20 insertions, 0 deletions
diff --git a/audio/madman/files/patch-SConstruct b/audio/madman/files/patch-SConstruct
new file mode 100644
index 000000000000..742f44e73d21
--- /dev/null
+++ b/audio/madman/files/patch-SConstruct
@@ -0,0 +1,20 @@
+--- SConstruct.orig Thu May 20 16:03:14 2004
++++ SConstruct Wed Oct 12 01:01:10 2005
+@@ -1,6 +1,8 @@
+ import os
+ import glob
+
++SConsignFile()
++
+ opts = Options( "my_options.py")
+
+ opts.Add("qt_directory", "Path to Qt directory", "not specified")
+@@ -112,7 +114,7 @@
+ def CheckForQtAt(context, qtdir):
+ context.Message('Checking for Qt at %s... ' % qtdir)
+ result = AttemptLinkWithVariables(context,
+- { "LIBS": "qt-mt", "LIBPATH": qtdir + '/lib', "CPPPATH": qtdir + '/include' },
++ { "LINKFLAGS": "-pthread", "LIBS": "qt-mt", "LIBPATH": qtdir + '/lib', "CPPPATH": qtdir + '/include' },
+ """
+ #include <qapplication.h>
+ int main(int argc, char **argv) {