hi all,
Being very new (<24Hrs) to linux I'm trying to get pd and Gem running on a Mandrake 8.2 system.
I managed to compile pd (which was pretty easy) but now I'm stuck with Gem: when giving the "make" command in ../src/Gnu I get the following error:
---------start
for d in ../Manips  ../Particles ../Base ../MarkEx ../Pixes ../Controls
../Nongeos  ../Geos ../tv; do
  echo ""
  echo "----------$d----------";
  cd $d && make || exit -1;
done
 echo ----------../Manips----------
make[1]: Entering directory /home/rr/gem-0.87/src/Manips' c++ -c -g  -fPIC  -I../ -I/usr/include/glib-1.2 -I/usr/lib/glib/include -I../../../gem-0.87/gltt-2.5.2 -I../../../Desktop/Trash/GemLibs/particle -I../../../Desktop/Trash/GemLibs/liborb -I../../../Desktop/Trash/GemLibs/glm -I/usr/local/include -I..  ortho.cpp -o ortho.o In file included from ortho.h:18,          from ortho.cpp:17: ../Base/GemBase.h:27:8: warning: extra tokens at end of #endif directive In file included from ortho.cpp:19: ../Base/GemMan.h:24:20: GL/glu.h: No such file or directory ortho.cpp:21:20: GL/glu.h: No such file or directory make[1]: *** [ortho.o] Error 1 make[1]: Leaving directory
/home/rr/gem-0.87/src/Manips'
make: *** [subdirs] Error 255
---------end
I downloaded and extracted glut-3.6 into the gem-0.87 directory..... What should I do?
thx in advance, kurt
kurt stockman wrote:
hi all,
hi!
../Base/GemMan.h:24:20: GL/glu.h: No such file or directory ortho.cpp:21:20: GL/glu.h: No such file or directory
GL/glu.h is not part of glut but should come with your mesa-developer packages. try to install this package (on my debian system it is xlibmesa-dev, on mandrake i do not know) additionally the whole <gem>/src/Gnu -directory is buggy, download the ftp://iem.kug.ac.at/pd/Externals/GEM/Gnu.tgz and overwrite the old Gnu-directory. Then do "make distclean" (or at lease delete any traces of config.cache) "./configure" "make"
the configure will most probably (hopefully) bail out at all the missing libraries (like openGL, glut, libpng, etc)
I downloaded and extracted glut-3.6 into the gem-0.87 directory..... What should I do?
no libraries are searched for in the gem-0.87-path. Libraries like gltt, glut, openGL/mesaGL are expected to be installed on the system (in /usr/include), however it is not encouraged to install the libraries (like glut) by hand into /usr/include but rather via the package-manager of your system. For compilation, you will need the GemLibs too, which can also be found at http://gem.iem.at
mfg.cdsa.rsd IOhannes
On Tue, 3 Sep 2002, kurt stockman wrote:
../Base/GemMan.h:24:20: GL/glu.h: No such file or directory ortho.cpp:21:20: GL/glu.h: No such file or directory
try putting this in your shell config (~/.bash_profile):
export LD_LIBRARY_PATH= $LD_LIBRARY_PATH:/usr/X11R6/lib export LIBRARY_PATH= $LIBRARY_PATH:/usr/X11R6/lib export C_INCLUDE_PATH= $C_INCLUDE_PATH:/usr/X11R6/include export CPLUS_INCLUDE_PATH=$CPLUS_INCLUDE_PATH:/usr/X11R6/include
Mathieu Bouchard http://artengine.ca/matju
hello i'm trying GEM on a ibook 600, it works fine,
Is there any possibility go get the sound from a movie with GEM ?
best jb
hello i'm trying GEM on a ibook 600, it works fine,
Is there any possibility go get the sound from a movie with GEM ?
best jb
hello jb,
...well, yes there is a possibility of getting sound from a movie with GEM, but I think it'd require a rewrite of the pix_movie and pix_film, at least the darwin versions...right now, they only open up the video track of a particular movie and decompress that to an offscreen buffer for manipulation: nothing is done with the sound track, or any other stuff for that matter...
...definitely something to add later, but don't expect it too soon!
l8r, jamie
Reliable sound from movies in GEM would also require that GEM derive its timing from the audio in PD. Otherwise the audio and video from the movie will not be synchronised.
This would require a bit of work. Definitely a good idea in the end tho.
daniel
-----Original Message----- From: pd-list-admin@iem.kug.ac.at [mailto:pd-list-admin@iem.kug.ac.at]On Behalf Of tigital Sent: Thursday, 5 September 2002 7:23 AM To: Pure Data Soup Cc: pd-list@iem.kug.ac.at Subject: Re: [PD] GEM on os X
hello i'm trying GEM on a ibook 600, it works fine,
Is there any possibility go get the sound from a movie with GEM ?
best jb
hello jb,
...well, yes there is a possibility of getting sound from a movie with GEM, but I think it'd require a rewrite of the pix_movie and pix_film, at least the darwin versions...right now, they only open up the video track of a particular movie and decompress that to an offscreen buffer for manipulation: nothing is done with the sound track, or any other stuff for that matter...
...definitely something to add later, but don't expect it too soon!
l8r, jamie
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
Hi can someone remind me of the process for installing TCL/TK on OSX so i may use PD on my iBook cheers~
Pat Pagano, Director South East Just Intonation Society http://www.screwmusicforever.com/SHREESWIFT/ http://www.digitalworlds.ufl.edu
a quick google produced this:
http://sourceforge.net/project/showfiles.php?group_id=10894
8.4-a4-1.tgz works for me.
cgc
Hi can someone remind me of the process for installing TCL/TK on OSX so i may use PD on my iBook cheers~
Pat Pagano, Director South East Just Intonation Society http://www.screwmusicforever.com/SHREESWIFT/ http://www.digitalworlds.ufl.edu
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
how about ability to load the audio track from the video file to an array onload, but the video would still play without sound in gem, like it is now. less work ?!
-andre
----- Original Message ----- From: "Daniel Heckenberg" daniel@bogusfront.org To: "tigital" tigital@mac.com; "Pure Data Soup" misosoup@altern.org Cc: pd-list@iem.kug.ac.at Sent: Thursday, September 05, 2002 1:35 AM Subject: RE: [PD] GEM on os X
Reliable sound from movies in GEM would also require that GEM derive its timing from the audio in PD. Otherwise the audio and video from the movie will not be synchronised.
This would require a bit of work. Definitely a good idea in the end tho.
daniel
-----Original Message----- From: pd-list-admin@iem.kug.ac.at [mailto:pd-list-admin@iem.kug.ac.at]On Behalf Of tigital Sent: Thursday, 5 September 2002 7:23 AM To: Pure Data Soup Cc: pd-list@iem.kug.ac.at Subject: Re: [PD] GEM on os X
hello i'm trying GEM on a ibook 600, it works fine,
Is there any possibility go get the sound from a movie with GEM ?
best jb
hello jb,
...well, yes there is a possibility of getting sound from a movie with GEM, but I think it'd require a rewrite of the pix_movie and pix_film, at least the darwin versions...right now, they only open up the video track of a particular movie and decompress that to an offscreen buffer for manipulation: nothing is done with the sound track, or any other stuff for that matter...
...definitely something to add later, but don't expect it too soon!
l8r, jamie
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
Andre Schmidt wrote:
how about ability to load the audio track from the video file to an array onload, but the video would still play without sound in gem, like it is now. less work ?!
this might be a good idea. but: esp under linux with mpeg-*streams* we might have a problem because we do not know the audio of the next frame
i will have a look at this anyhow
mfg.c.sa IOhannes