lmms with Fedora – compile source

March 29, 2009
Tags: , , ,

lmms has some dependencies that are not so easy to determine for Fedora
Basic setup :

yum install cmake git
yum install qt qt-devel

Synth extras :

yum install libsndfile libsndfile-devel
yum install fluidsynth fluidsynth-devel
yum install stk stk-devel
yum install fftw-devel

Importantly for wine VST(i) :

yum install wine wine-devel
yum install glibc-devel.i386

Hope this helps

2

Reset MythTV music database

August 22, 2008
Tags: , ,

mysql -u mythtv -p mythconverg
delete from music_directories;delete from music_genres;delete from music_artists;delete from music_albums;delete from music_albumart;delete from music_songs;
and then reload all the music files by :
Utilities/Setup – Music Tools (which then rescans the files)

Comments Off

Hydrogen on FC6

January 27, 2007
Tags: , ,

# yum install qt-devel# QTDIR=/usr/lib/qt-3.3; export QTDIR
# yum install libsndfile-devel# yum install flac-devel# ./configure
# make
src/lib/xml/tinyxml.h:828: error: extra qualification ‘TiXmlDeclaration::’ on member ‘TiXmlDeclaration’
Problem : GCC 4 is giving us problems with hydrogen-0.9.3
Patch :
# scite src/lib/xml/tinyxml.h &
@@ -823,7 +823,7 @@ /// Construct.- TiXmlDeclaration::TiXmlDeclaration( const char * _version,+ TiXmlDeclaration( const char * _version,
make
now completes, [...]

Comments Off