---------- Forwarded message ----------
From: Justin Smith <noisesmith(a)gmail.com>
Date: Sun, May 18, 2008 at 7:31 PM
Subject: Re: [LAU] Compiling Patchage...dependencies - Raul and FlowCanvas
To: Roger Wakeman <rwakeman(a)hushmail.com>
On Sun, May 18, 2008 at 7:20 PM, Roger Wakeman <rwakeman(a)hushmail.com> wrote:
> I just installed 64studio--UbuntuStudio 8.04 wasn't doing for me--
> and was surprised that Patchage wasn't included. Based completely
> on the screenshot from http://wiki.drobilla.net/Patchage I decided
> to compile 0.4.0 instead of 0.2.3 from the repositories.
>
> I get stuck on installing the dependency Raul-0.4.0.
> ./configure breaks here:
>
> checking for JACK... configure: error: Package requirements (jack
>>= 0.107.0) were not met:
>
> Requested 'jack >= 0.107.0' but version of jack is 0.103.0
>
> No problem...I installed the latest versions of jackd, jack
> libraries and qjackctrl. My jackd version is now 0.109.0, but the
> configure command still thinks that jack is version 0.103.0. I ran
> sudo updatedb...I admit I don't know what it does...and it didn't
> help anyway. Did anyone else encounter this or has anyone a
> suggestion?
>
> Roger
> http://www.linuxstudiopro.com
>
>
>
> --
> Save up to 10% - 30% on Visual Basic. Click here.
> http://tagline.hushmail.com/fc/Ioyw6h4dGIsgLTAGlNKrYDT3uOh768soIAvJtmZYHQPg…
>
> _______________________________________________
> Linux-audio-user mailing list
> Linux-audio-user(a)lists.linuxaudio.org
> http://lists.linuxaudio.org/mailman/listinfo/linux-audio-user
>
Did you make and install the new jack by hand or from a package?
If from a package, you will of course need the matching -dev package.
If by hand, you will need to make sure that the location of the new
jack headers is before your old ones in the include path, and that the
version of the new jack libraries is before the old ones in your
ld.so.conf (also make sure to run ldconfig after installing the libs
if the install target did not do that). I assume you know that getting
the newer jack lib means getting new versions of many of the programs
that use jack (otherwise you will discover many an inexplicable bug in
the applications compiled with an out of date jack.h, or apps that are
smart enough to check for a jack version refusing to run and
complaining that they cannot connect to this jack version). Out of
synch versions of jack is not as bad as out of synch libc versions,
but it can be tricky nonetheless.
Updatedb manages the database that man uses to find man pages.
I don't understand the "pay for free music" bit. Is it free or subscription based futures trading? Lots of luck with your project, but its a bit too close to spam to sell stuff like this on the list.
Are you from Nigeria? :)
Free People, have a good day, I'm now waiting for your letters, mail,
> and/or payment confirmation on Paypal
I just installed 64studio--UbuntuStudio 8.04 wasn't doing for me--
and was surprised that Patchage wasn't included. Based completely
on the screenshot from http://wiki.drobilla.net/Patchage I decided
to compile 0.4.0 instead of 0.2.3 from the repositories.
I get stuck on installing the dependency Raul-0.4.0.
./configure breaks here:
checking for JACK... configure: error: Package requirements (jack
>= 0.107.0) were not met:
Requested 'jack >= 0.107.0' but version of jack is 0.103.0
No problem...I installed the latest versions of jackd, jack
libraries and qjackctrl. My jackd version is now 0.109.0, but the
configure command still thinks that jack is version 0.103.0. I ran
sudo updatedb...I admit I don't know what it does...and it didn't
help anyway. Did anyone else encounter this or has anyone a
suggestion?
Roger
http://www.linuxstudiopro.com
--
Save up to 10% - 30% on Visual Basic. Click here.
http://tagline.hushmail.com/fc/Ioyw6h4dGIsgLTAGlNKrYDT3uOh768soIAvJtmZYHQPg…
>Did you make and install the new jack by hand or from a package?
bare hands
>If by hand, you will need to make sure that the location of the new
>jack headers is before your old ones in the include path, and that
the
>version of the new jack libraries is before the old ones in your
>ld.so.conf (also make sure to run ldconfig after installing the
libs
>.if the install target did not do that). I assume you know that
getting
>the newer jack lib means getting new versions of many of the
programs
>that use jack (otherwise you will discover many an inexplicable
bug in
>the applications compiled with an out of date jack.h, or apps that
are
>smart enough to check for a jack version refusing to run and
>complaining that they cannot connect to this jack version). Out of
>synch versions of jack is not as bad as out of synch libc versions,
>but it can be tricky nonetheless.
You give me too much credit, sir. The contents of my
/etc/lib.so.conf is as follows
include /etc/ld.so.conf.d/*.conf
...and the included file is x86_64-linux-gnu.conf, which contains
# Multiarch support
/lib/x86_64-linux-gnu
/usr/lib/x86_64-linux-gnu
Also, this happens
robeast@64studio:/etc/ld.so.conf.d$ ldconfig
bash: ldconfig: command not found
>Updatedb manages the database that man uses to find man pages.
Haha! I thought that might be helpful from some flailing googling I
had done. Seems like ldconfig will do what I thought updatedb did.
I did manage to make some progress but it's such a hack that it
can't be any good. First I found that I had both versions of jack
installed, 0.103.0 in /usr/bin from the package manager and 0.109.0
in /usr/local/bin from my own source install. I tried some silly
things like moving files around, such as /usr/local/bin/jackd to
/usr/bin/jackd, which did change the version number when running
/usr/bin/jackd from the terminal but didn't fool the configure
command for raul.
I ended up going into the configure file and replacing all "jack >=
0.107.0" to "jack >= 0.103.0" which tricked the configure into
completing so I could continue. Not advisable, but it was the best
idea I had at the time. After that raul installed fine, flowcanvas
installed fine, patchage complained about the jack version as well,
I executed the same brute force hack and now patchage hits an error
when I run "sudo make":
Patchage.cpp: In constructor ‘Patchage::Patchage(int, char**)’:
Patchage.cpp:149: error: ‘class Gtk::AboutDialog’ has no member
named ‘property_program_name’
make[1]: *** [Patchage.o] Error 1
make[1]: Leaving directory `/home/robeast/Desktop/patchage/src'
make: *** [all-recursive] Error 1
I know that my changes to the configure file don't get at the root
of my problem, but I figured I'd see how far I could go. Should I
even bother working with these new versions of jack and patchage?
The new patchage looks great and I'm hoping that it will have some
performance improvements over an older version I've been using, but
I don't want to end up with audio apps that are incompatible with
the new version of jack. With the current versions I have
previously installed (I just installed patchage 0.2.3 from the
repos) everything works fine...so I don't know why I'm bothering
with this other than for cool bezier curves and to put off making
an actual recording.
Roger
--
Earn your associates degree. Find a school near you.
http://tagline.hushmail.com/fc/Ioyw6h4dDtIaVyp065MgX6jhNqlENzJPXBtfyzKrnyIB…
After a forum discussion, I've found that chrt does not seem to be working.
(At least not on my system or on the systems of the others involved)
Specifically, it doesn't seem like it can be used to launch a program using a
scheduling policy other than SCHED_OTHER.
It does work if I change the scheduling policy of a process after the process
is already started, but it doesn't seem to work when using it to start a
process.
Something like "chrt -f 40 foobar" still starts foobar using the SCHED_OTHER
policy. Is this a known issue?
-Reuben
I've been fiddling around with the command line version of fluidsynth and I
can't, for the life of me, figure out how to change the program. I have the
PC
fonts
ID Name
1 PC51f.sf2
>
> channels -verbose
chan 0, sfont 1, bank 0, preset 1, Bright Piano
chan 1, sfont 1, bank 0, preset 5, Epiano 2
chan 2, sfont 1, bank 0, preset 2, Electric Grand
chan 3, sfont 1, bank 0, preset 3, Honky Tonk Piano
chan 4, sfont 1, bank 0, preset 2, Electric Grand
chan 5, sfont 1, bank 0, preset 1, Bright Piano
chan 6, sfont 1, bank 0, preset 6, Ger. Harpsichord
chan 7, sfont 1, bank 0, preset 7, Clavinet
chan 8, sfont 1, bank 0, preset 8, Celesta
chan 9, sfont 1, bank 128, preset 0, Standard
chan 10, sfont 1, bank 0, preset 10, Music Box
chan 11, sfont 1, bank 0, preset 11, Vibraphone
chan 12, sfont 1, bank 0, preset 12, Marimba
chan 13, sfont 1, bank 0, preset 13, Xylophone
chan 14, sfont 1, bank 0, preset 14, Tubular Bell
chan 15, sfont 1, bank 0, preset 15, Dulcimer-Hammered
>
yet I can't find any combination of the command 'prog' that changes to a
different soundfont other than 'bright piano'. Sucks, because there is a
really good rhodes in here.. (which is also weird because it isn't in the
list above. Using fluidsynth-dssi, the rhodes patch shows up in program 4).
thanks if you can help,
rich
I'm trying to compile Aliki and I'm coming across this error:
impdata.cc:264: error: 'SFC_WAVEX_GET_AMBISONIC' was not declared in this scope
impdata.cc:264: error: 'SF_AMBISONIC_B_FORMAT' was not declared in this scope
I see a sndfile.h reference on the web mentions a declaration which is
close (for instance)
SFC_SET_AMBISONIC - Modify a WAVEX header for Ambisonic format
but not exactly correct.
To go further, my particular sndfile.h has neither listed.
Versioning issues? Any help much appreciated.
brad
media-libs/libsndfile-1.0.17-r1
--
Brad Fuller
www.bradfuller.com
Hello,
Sebkha-Chott (Mekanik Meta Disco & Post Anticipation Burlesque Peplum -
Ohreland - France - www.sebkhachott.net) will record their third and
fourth albums this summer, on the very new AMMD's (www.ammd.net) free
studio for free art. Both these albums will be released by the end of
October, and will then be distributed by a label I'll let you know when
the time will come.
Here are the names of both of them:
*Nigla[h]*
Tapisseries Fines en XXX Strips et LXX/X Trompettes
*De la Persistance...*
... de la Mythologie Chottienne en ??? Cycles
you'll find more informations about them here: http://preorders.ammd.net
These albums are already available in preorders at a very lower price (9
€ for Nigla[h] and 7 € for De la Persistance), on the page linked before
(http://preorders.ammd.net) with online payment solution, or by check,
if you prefer.
Why do we use preorders? Because the AMMD - the label Sebkha-Chott which
was created by Sebhka-Chott a few years ago and which still produces
Sebkha-Chott releases - wants the audience and the artists to be closer
one to the other. That's why every AMMD's artists use free licenses
(mainly free art license), and that's why we propose the albums in
preorder, so that the audience becomes a part of the financial
production, finally.
The albums can be purchased on preorders till the end of October, but
actually, at this time, we'd need as many as possible preorders for the
end of May, as the new AMMD's free studio for free arts will arrive
around early June, and preorders will thus help the AMMD supporting its
financial weight.
The idea of this studio is to produce Free Arts ONLY (audio and videos),
with a free software solution, but though professionnal (some bands of
the AMMD already are distributed worldwidely, and we have to get proper
productions!). The final project will be presented soon to everyone, and
I'll let you know at that time, in what way we're gonna work with it.
By that time, the emergency is on the preorders, so, don't hesitate, if
you want to support us, or if you like Sebkha-Chott, or both, just
preorder the albums right now (it's possible to preorder only one, of
course).
Free People, have a good day, I'm now waiting for your letters, mail,
and/or payment confirmation on Paypal!!!
See you.
--
==============================
ORL /// AMMD Booking (www.ammd.net)
° Sebkha-Chott (www.sebkhachott.net - Ohreland [FR]) - next touring period: 04-06/2008
° Unexpect (www.unexpect.com - Montréal [CA]) - Europe tour w/ Sebkha-Chott period: 09-12/2008
° La Muette (www.myspace.com/muette - Paris [FR]) - next touring period: 05/2008 (Bretagne)
° Mel-P (www.mel-p.net - Le Mans [FR]) - next touring period: 09/2008
Phone: +33 (0)2 43 52 15 77
Guess I'll get to try it out when I reinstall next week (hard drive is
dying, new drive arrives next week). I want to find the Easter egg that
shows me the developers' faces in glorious 3D color! ;-)
--
David
gnome(a)hawaii.rr.com
authenticity, honesty, community