Hi,
Ok. I tried to install Imagemagick by source, but for some reason i can't get it to ./configure. The file i had was: ImageMagick-powerpc-apple-darwin7.0.0.tar.gz I moved the directory ImageMagick -5.5.7 to /usr/local/lib but when i try to cd into it and run ./configure, it says:
[okaras:local/lib/ImageMagick-5.5.7] sara# ./configure --enable-shared ./configure: Command not found
Maybe this is a really stupid question, but i've no idea why it's doing this. Or is it already configured for some reason?
some information:
[okaras:local/lib/ImageMagick-5.5.7] sara# ls bin include lib man share
[okaras:local/lib/ImageMagick-5.5.7/bin] sara# ls Magick++config animate conjure display import montage Magick-config composite convert identity magrify
libMagick.dylib is found in: [okaras:local/lib/ImageMagick-5.5.7/lib]
Any suggestions anyone?
Sara
Hi,
Finally i succeeded in installing Imagemagick in the right place, with --enable-shared. I installed the lib by source. Now i'm at the point of changing my .pdrc file, but i cannot find it. It's a hidden file; i tried lots of find-commands, but all of them didn't work out. It is not located in my home-directory.
Another question that i had; Do i have to ./configure / make install pdp_pidip after moving the folder pdp_pidip_osx to the directory: /usr/local/lib/pd?
Sorry, it's not clear to me if it is a binary or not.
Sara
my pd-directory looks like this: INSTALL_NOTES.txt buildall copying include scaf Makefile changes.log debug modules system Makefile.config config.og doc opengl tags Makefile.config.in config.status externs pdp.pd_darwin todo abstractions configure extra pidip-modules todo.exp bin configure.ac guile readme
Hallo Sara, sara@x-i.net hat gesagt: // sara@x-i.net wrote:
Now i'm at the point of changing my .pdrc file, but i cannot find it. It's a hidden file; i tried lots of find-commands, but all of them didn't work out. It is not located in my home-directory.
You'd have to create the .pdrc file yourself, Pd doesn't create it on its own. It's simply a list of options that you'd otherwise put on the command line, when you start Pd.
Frank Barknecht _ ______footils.org__
Hi Frank,
But how do you create such a file [.pdrc] then?
Sara
Citeren Frank Barknecht fbar@footils.org:
Hallo Sara, sara@x-i.net hat gesagt: // sara@x-i.net wrote:
Now i'm at the point of changing my .pdrc file, but i cannot find it. It's a hidden file; i tried lots of find-commands, but all of them didn't work out. It is not located in my home-directory.
You'd have to create the .pdrc file yourself, Pd doesn't create it on its own. It's simply a list of options that you'd otherwise put on the command line, when you start Pd.
ciao
Frank Barknecht _ ______footils.org__
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
Open your favorite text editor, add one command-line option per line,
save the file as ".pdrc" in your home directory. Voila.
.hc
On Saturday, Dec 20, 2003, at 14:23 America/New_York, sara@x-i.net
wrote:
Hi Frank,
But how do you create such a file [.pdrc] then?
Sara
Citeren Frank Barknecht fbar@footils.org:
Hallo Sara, sara@x-i.net hat gesagt: // sara@x-i.net wrote:
Now i'm at the point of changing my .pdrc file, but i cannot find it. It's a hidden file; i tried lots of find-commands, but all of them didn't work out. It is not located in my home-directory.
You'd have to create the .pdrc file yourself, Pd doesn't create it on its own. It's simply a list of options that you'd otherwise put on
the command line, when you start Pd.ciao
Frank Barknecht _ ______footils.org__
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
"[W]e have invented the technology to eliminate scarcity, but we are
deliberately throwing it away
to benefit those who profit from scarcity."
-John Gilmore
Saar,
sara@x-i.net wrote:
But how do you create such a file [.pdrc] then?
in your home directory:
$ pico .pdrc
or
$ nano .pdrc
[as usual, can't remember which text editor you have in OSX]
my .pdrc looks like this:
-lib /usr/local/lib/pd/extra/zexy -lib /usr/local/lib/pd/extra/bonk~ -lib /usr/local/lib/pd/extra/choice -lib /usr/local/lib/pd/extra/expr~ -lib /usr/local/lib/pd/extra/fexpr~ -lib /usr/local/lib/pd/extra/fiddle~ -lib /usr/local/lib/pd/extra/lrshift~ -lib /usr/local/lib/pd/extra/loop~ -lib /usr/local/lib/pd/extra/pique -lib /usr/local/lib/pd/extra/maxlib -lib /usr/local/lib/pd/extra/iem_mp3 -lib /usr/local/lib/pd/extra/iem_t3_lib -lib /usr/local/lib/pd/extra/iemlib1 -lib /usr/local/lib/pd/extra/iemlib2 -lib /usr/local/lib/pd/extra/pdp -lib /usr/local/lib/pd/extra/pidip -lib /usr/local/lib/pd/extra/plugin~ -lib /usr/local/lib/pd/extra/OSC
yours will be a bit different becuase you might not have all these externals, and they may be in a slightly different place. the important thing is to have absolute paths to your libraries and externals, as well as including any other startup options [type $ pd --help to see all] you want.
d.
Hallo, derek holzer hat gesagt: // derek holzer wrote:
my .pdrc looks like this:
-lib /usr/local/lib/pd/extra/zexy -lib /usr/local/lib/pd/extra/bonk~
...
-lib /usr/local/lib/pd/extra/plugin~ -lib /usr/local/lib/pd/extra/OSC
To make this a bit shorter you could also use:
-path /usr/local/lib/pd/extra -lib zexy:bonk~:choice:expr~:fexpr~:fiddle~:lrshift~:loop~ -lib pique:maxlib:iem_mp3:iem_t3_lib:iemlib1:iemlib2:pdp:pidip -lib plugin~:OSC
This first sets a path, where a lot of libraries and externals are, and after that it loads the libraries at Pd-start. Pd then looks for them in the "-path" and hopefully finds them there.
(And to make it even shorter again, one could also omit things, that aren't libraries, like fiddle~ or bonk~, but differentiating libraries from single externals can be a bit tricky sometimes, and as often: It doesn't hurt.)
Frank Barknecht _ ______footils.org__
Another question that i had; Do i have to ./configure / make install pdp_pidip after moving the folder pdp_pidip_osx to the directory: /usr/local/lib/pd?
Sorry, it's not clear to me if it is a binary or not.
good point, yes it's a binary distribution so you don't need to recompile ( otherwise, you would need to install more packages )
ciao, sevy