[swift-users] Unable to find sound

Thomas Klausner tk at giga.or.at
Sat Apr 26 13:45:31 CEST 2014


On Sat, Apr 26, 2014 at 11:23:07AM +0200, Remko Tronçon wrote:
> In case you haven't found it yet: this is all done in the
> ApplicationPathProviders in SwifTools/Application. In your case, this
> should be the UnixApplicationPathProvider.
> Let me know if you need more help.

Thank you, that was helpful.

I've needed one patch to make it compile on NetBSD, it is attached.
Please integrate some version of it.

I've added a package for it to pkgsrc, a webpage for it will appear
shortly at

	http://pkgsrc.se/chat/swift

It'd be great if you could link to that from http://swift.im/download/

Thanks,
 Thomas
-------------- next part --------------
$NetBSD$

Handle NetBSD like Linux.

--- BuildTools/SCons/Tools/qt4.py.orig	2012-12-22 12:23:58.000000000 +0000
+++ BuildTools/SCons/Tools/qt4.py
@@ -448,7 +448,7 @@ def enable_modules(self, modules, debug=
 		except: pass
 	debugSuffix = ''
 
-	if sys.platform.startswith("linux") and not crosscompiling :
+	if (sys.platform.startswith("linux") or sys.platform.startswith("netbsd")) and not crosscompiling :
 		if debug : debugSuffix = '_debug'
 		self.AppendUnique(CPPPATH=[os.path.join("$QTDIR","include", "phonon")])
 		for module in modules :


More information about the swift-users mailing list