1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
freebsd-ports/audio/madman/files/patch-SConstruct
Renato Botelho 38e17d36fc 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>
2005-10-13 18:13:52 +00:00

21 lines
676 B
Plaintext

--- 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) {