mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
38e17d36fc
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>
21 lines
676 B
Plaintext
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) {
|