did somebody successfully compiled film plugins for new gem in arch linux 64? i tried svn, and 0.93.0, but with same results seems like not possible for me. i did it last time with 0.92.3. i really dont know, how to treat theese plugins. how should i know, which is configured, and is going to be compiled? or how to sonfigure/compile only plugins?
./configure --with-pd=../../pd/src/pd-0.43-0/src --enable-sse2 --with-ImageMagick-includes=/usr/include/ImageMagick/ --with-libquicktime-includes=/usr/include/lqt --with-ftgl-includes=/usr/include/FTGL
Result: Target : Gem.pd_linux Objects :
Configuration: Compiler : g++ CXXFLAGS : -g -O2 -freg-struct-return -O3 -falign-loops -falign-functions -falign-jumps -funroll-loops -ffast-math -mmmx -msse2 : -I/usr/include/avifile-0.7 INCLUDES : DEFINES :
LIBS : -lXxf86vm -ldl -lz -lm -L/home/kubriel/Downloads/pd/src/pd-0.43-0/src : -Wl,-rpath,/usr/lib -laviplay LDFLAGS : :
Install path : /usr/local
pure-data: version : 0.43 extension : pd_linux
used optional libraries:
font-rendering : FTGL
image-support use ImageMagick : yes use TIFF : yes use JPEG : yes moviefile-support use PLUGINS : yes use mpeg : no use mpeg-3 : no use QuickTime : no use aviplay : yes use gmerlin : no capture-support use PLUGINS : yes use v4l : yes (libv4l) use v4l2 : yes (libv4l) use ieee1394 : yes ( libdc1394 )
for moviefile support - if i have plugins: yes, doest it depense about if i have mpeg and mpeg3 in this results? seems like configure couldnt find library for mpeg3 (but i checked libmpeg3-dev from debian, and i have all the files on right place) and mpeg. the same with quicktime what im doing wrong? i cant open mjpeg files, which im using the most, as they seems like best solution for codec in linux for gem.
i do make with -j 4 argument to have faster result with my 4core machine, and i have to add -I /usr/include/ImageMagick to find all headers (maybe i have mess in imagemagick, but why?...) but every time it ends with: make[2]: Entering directory `/home/kubriel/Downloads/Gem-0.93.0/extra' make[2]: Nothing to be done for `all-am'. make[2]: Leaving directory `/home/kubriel/Downloads/Gem-0.93.0/extra' make[1]: Leaving directory `/home/kubriel/Downloads/Gem-0.93.0/extra' make[1]: Entering directory `/home/kubriel/Downloads/Gem-0.93.0' make[1]: Nothing to be done for `all-am'. make[1]: Leaving directory `/home/kubriel/Downloads/Gem-0.93.0' make: *** [all-recursive] Error 1
the same error with make install. i have to add -I /usr/include/ImageMagick to find image magick headers shouldnt make install just copy compiled stuff to prefix directory?
there is another confusion. in README.txt in gem directory seems like old. it says it is 0.91 version, and that: "To install GEM on linux: chdir into <Gemdir>/src/ read the README.<os> (like README.linux) etc..." but there is not README.linux anymore in src directory
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On 2011-10-11 19:17, kubro bubro wrote:
did somebody successfully compiled film plugins for new gem in arch linux 64? i tried svn, and 0.93.0, but with same results seems like not possible for me. i did it last time with 0.92.3. i really dont know, how to treat theese plugins. how should i know, which is configured, and is going to be compiled? or how to sonfigure/compile only plugins?
./configure --with-pd=../../pd/src/pd-0.43-0/src --enable-sse2 --with-ImageMagick-includes=/usr/include/ImageMagick/ --with-libquicktime-includes=/usr/include/lqt --with-ftgl-includes=/usr/include/FTGL
the header directories for imagemagick, lqt and ftgl look pretty standard to me. assuming that on arch, those libraries come with pkg-config files, all paths should be found automatically. in short: try ommitting the "--with-..." flags
if it doesn't work, it might be a good idea to post the full output of ./configure and the config.log to pastie.org and give us the links.
fgasmdr IOhannes
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On 2011-10-11 19:17, kubro bubro wrote:
i do make with -j 4 argument to have faster result with my 4core
[...]
but every time it ends with: make[2]: Entering directory `/home/kubriel/Downloads/Gem-0.93.0/extra' make[2]: Nothing to be done for `all-am'. make[2]: Leaving directory `/home/kubriel/Downloads/Gem-0.93.0/extra' make[1]: Leaving directory `/home/kubriel/Downloads/Gem-0.93.0/extra' make[1]: Entering directory `/home/kubriel/Downloads/Gem-0.93.0' make[1]: Nothing to be done for `all-am'. make[1]: Leaving directory `/home/kubriel/Downloads/Gem-0.93.0' make: *** [all-recursive] Error 1
using "-j4" is nice to speed up things, but it makes finding errors harder. in order to get reasonable information at a reasonable speed, run a non-parallelized make right after the failed build with "-j4".
something like $ make -j4 $ make
then you should be able to give us information where it actually failed.
the same error with make install. i have to add -I /usr/include/ImageMagick to find image magick headers shouldnt make install just copy compiled stuff to prefix directory?
it will do so, if the build has succeeded. if the build is not complete yet, it will first try to finish it. since your build stopped with an error, it did not complete yet.
fgasdr IOhannes
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On 2011-10-11 19:17, kubro bubro wrote:
there is another confusion. in README.txt in gem directory seems like old. it says it is 0.91 version, and that: "To install GEM on linux: chdir into <Gemdir>/src/ read the README.<os> (like README.linux) etc..." but there is not README.linux anymore in src directory
yes, that file has been deleted :-) the documentation was unfortunately not updated before the 0.93.0 release.
speaking of which: why are you using 0.93.0? there is a 0.93.1 release available. micro release numbers indicate bugfixes...
fgmasdr IOhannes
because here http://sourceforge.net/projects/pd-gem/ is big green button with download gem 0.93.0
but just now i compiled ver: 0.93.SVN rev4516 everything work just fine
2011/10/13 IOhannes m zmoelnig zmoelnig@iem.at:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On 2011-10-11 19:17, kubro bubro wrote:
there is another confusion. in README.txt in gem directory seems like old. it says it is 0.91 version, and that: "To install GEM on linux: chdir into <Gemdir>/src/ read the README.<os> (like README.linux) etc..." but there is not README.linux anymore in src directory
yes, that file has been deleted :-) the documentation was unfortunately not updated before the 0.93.0 release.
speaking of which: why are you using 0.93.0? there is a 0.93.1 release available. micro release numbers indicate bugfixes...
fgmasdr IOhannes -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/
iEYEARECAAYFAk6Wom8ACgkQkX2Xpv6ydvR0iACg9KhcfnhYTNUixFBKsL1zkRh9 OOcAnjkWe7XOjlGIIJHIYkAQmm+1dXGz =aTzj -----END PGP SIGNATURE-----