2011-02-19 the hydrogen team <hydrogen-devel@lists.sourceforge.net> * Release 0.9.5.1 * Compatible with linux 3.0 kernels * Compiles now with gcc 4.7 * Added greek translation * Updated czech translation * Few small bugfixes 2011-03-15 the hydrogen team <hydrogen-devel@lists.sourceforge.net> * Release 0.9.5 * load playlists at startup * midi-learn works now with shift-click on some gui elements * multi-track export * LADI support * maximum number of bars is now configurable * added czech translation * fixed serveral export song failures * added ogg, flac, aiff export support * added some new commandline parameter for no_gui version * added rubberband-cli support * several improvements on sample editor * added NO_GUI_SUPPORT to build a version of hydrogen without a gui * added support for app bundles on OSX * non destructive sample editor * piano roll editor * instrument midi out * destructive midi recording * support for midi "note off" messages * virtual patterns * time line to change song tempo and add tags * director * and at least several small changes * Xml handling is now done by QtXml instead of TinyXML * improved support for non-ascii filenames / strings * remove direct dependencies to libflac
11 lines
514 B
Text
11 lines
514 B
Text
--- qt4.py.orig 2012-01-21 04:06:58.000000000 -0800
|
|
+++ qt4.py 2012-11-13 02:59:06.000000000 -0800
|
|
@@ -444,7 +444,7 @@
|
|
try : self.AppendUnique(CPPDEFINES=moduleDefines[module])
|
|
except: pass
|
|
debugSuffix = ''
|
|
- if sys.platform.startswith("linux") and not crosscompiling :
|
|
+ if (sys.platform.startswith("linux") and not crosscompiling) or (sys.platform.startswith("netbsd") and not crosscompiling):
|
|
if debug : debugSuffix = '_debug'
|
|
for module in modules :
|
|
if module not in pclessModules : continue
|