thanks hans,
in planetccrma fc4 i had to create the following symbolic links in /usr/lib/ to get pd-extended to load:
ln -s libjack.so.0.0.23 libjack-0.80.0.so.0 ln -s libtk8.4.so libtk8.4.so.0 ln -s libtcl8.4.so libtcl8.4.so.0
now when i try to start pd with jack by typing: /home/robcanning/software/pd_extended/bin/pd -jack
i get the usage error
usage: pd [-flags] [file]...
audio configuration flags: -r <n> -- specify sample rate etc. etc.
as if -jack is an invalid flag. other flags work fine eg. -noaudio
any ideas?
thanks,
rob
On Mon, 2006-02-20 at 20:07 -0500, Hans-Christoph Steiner wrote:
It was compiled on Debian/stable, so its looking for a file called
libjack-0.80.0.so.0. You can just symlink it to your libjack and try
it that way..hc
On Feb 20, 2006, at 10:16 AM, rob canning wrote:
hi, i'm running planetccrma on FC4 an am trying to run pd-extended instead of the pd that comes with the ccrma package when i try to run cd /home/robcanning/software/pd_extended/bin/ && ./pd -jack i get: ./pd: error while loading shared libraries: libjack-0.80.0.so.0: cannot open shared object file: No such file or directory
ldd gives:
cd /home/robcanning/software/pd_extended/bin/ && ldd ./pd linux-gate.so.1 => (0x00b83000) libasound.so.2 => /lib/libasound.so.2 (0x06834000) librt.so.1 => /lib/librt.so.1 (0x007b8000) libjack-0.80.0.so.0 => not found libdl.so.2 => /lib/libdl.so.2 (0x00968000) libm.so.6 => /lib/libm.so.6 (0x00941000) libpthread.so.0 => /lib/libpthread.so.0 (0x00983000) libc.so.6 => /lib/libc.so.6 (0x00816000) /lib/ld-linux.so.2 (0x007f8000)
whereas the other pd gives: ldd /usr/bin/pd linux-gate.so.1 => (0x00244000) libasound.so.2 => /lib/libasound.so.2 (0x06834000) librt.so.1 => /lib/librt.so.1 (0x007b8000) libjack.so.0 => /usr/lib/libjack.so.0 (0x06516000) libdl.so.2 => /lib/libdl.so.2 (0x00968000) libm.so.6 => /lib/libm.so.6 (0x00941000) libpthread.so.0 => /lib/libpthread.so.0 (0x00983000) libc.so.6 => /lib/libc.so.6 (0x00816000) /lib/ld-linux.so.2 (0x007f8000)
how do i point the pd-extended to the libjack that i have installed? or is this the wrong approach? thanks, rob