http://artengine.ca/desiredata/download/desiredata-2007.06.27.tar.gz
This release marks the return of DesireData after essentially five months of absence. Almost all changes of this release have been made prior to mid-January. This release also is the first to not be labeled with traditional version numbers like "0.40.pre242".
ChangeLog:
_ _ __ ___ _____ ________ _____________ _____________________ ... | Mathieu Bouchard - tél:+1.514.383.3801, Montréal QC Canada
PD-announce mailing list PD-announce@iem.at http://lists.puredata.info/listinfo/pd-announce
Yo dd,
I am really excited to try desiredata, looks like everything compiled ok, did a make install and messed up my existing pd install I guess :) I should have read more carefully before make install.
Anyway now I am getting a "can't connect.. wait a second" error in the console after desire starts with an error in the terminal: "/usr/local/bin/pd: error while loading shared libraries: libpd.so: cannot open shared object file: No such file or directory"
libpd.so is in /usr/local/lib
Any ideas on how to get it connected and usable? I am on Ubuntu Studio 7.04
Thanks, Kevin
On 6/27/07, Mathieu Bouchard matju@artengine.ca wrote:
http://artengine.ca/desiredata/download/desiredata-2007.06.27.tar.gz
This release marks the return of DesireData after essentially five months of absence. Almost all changes of this release have been made prior to mid-January. This release also is the first to not be labeled with traditional version numbers like "0.40.pre242".
ChangeLog:
- merged new loader from Miller's pd 0.40-2
- merged (but not tested) the rest of the [declare] code from pd 0.40-2
- added gensym2 (support for NUL in symbols)
- most of the code now uses C++,PD_PLUSPLUS_FACE,class_new2,etc
- auto show/hide scrollbars
- menu bar can be disabled
- new Find widget (FireFox style)
- added "subpatcherize" (turn a selection into a subpatch)
- IEMGUI can now by controled with keyboard
- more general keyboard control
- merged t_alist and t_binbuf together and aliased them to t_list
- delay uploading until #X restore or #X pop
- don't upload all abstractions instances to client (much faster)
- introduced zombie objects to deal with dead objects
- Command evaluator per canvas window
- Added locale for Euskara (Basque) by Ibon Rodriguez Garcia
- PureUnity is now part of the DesireData project (but is designed to run also on Miller's 0.40).
- added -port option in desire.tk so that server and client may be started separately.
- PureUnity has type suffixes for some class families; for each $1 in f,~,# (float,signal,grid) there is [inlet.$1] [outlet.$1] [taa.$1] [op2.$1] [rand.$1] [norm.$1] [swap.$1] [packunpack3.$1]
- Other new PureUnity classes: [^] [commutator] [associator] [invertor] [distributor] [tree] [protocols-tree]
_ _ __ ___ _____ ________ _____________ _____________________ ... | Mathieu Bouchard - tél:+1.514.383.3801, Montréal QC Canada _______________________________________________ PD-announce mailing list PD-announce@iem.at http://lists.puredata.info/listinfo/pd-announce
PD-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
On Thu, 28 Jun 2007, Kevin McCoy wrote:
I am really excited to try desiredata, looks like everything compiled ok, did a make install and messed up my existing pd install I guess :) I should have read more carefully before make install.
What you can do is use a different prefix. For example, distro packages are configured with --prefix=/usr while the default is --prefix=/usr/local so you can install desiredata while still running pd by typing /usr/bin/pd explicitly.
Instead you may also use the same --prefix with two or more manually installed versions of a program, e.g. pd-0.40, pd-devel-0.39, desiredata-cvs. They will share the same filenames in the same locations and you can switch between them quite quickly by typing "make install" in the source folder of the version that you want to use. (It's quick if it doesn't have to be recompiled)
"/usr/local/bin/pd: error while loading shared libraries: libpd.so: cannot open shared object file: No such file or directory" libpd.so is in /usr/local/lib Any ideas on how to get it connected and usable? I am on Ubuntu Studio 7.04
Edit /etc/ld.so.conf or equivalent and add /usr/local/lib to it. I don't understand why any distro would avoid supporting something as common as /usr/local but that's exactly what it does. Another way to support that directory without having to be root (sudo...) and without having to use ldconfig, is to set (or modify) the LD_LIBRARY_PATH environment variable instead.
_ _ __ ___ _____ ________ _____________ _____________________ ... | Mathieu Bouchard - tél:+1.514.383.3801, Montréal QC Canada