Pierre:  Found it, and installed, reran configure and got back a dozen
dependencies missing.  Looks like FC5 didn't want to tackle the
multimedia, and leave that to a group to develop a fedora multimedia
niche distribution, or something.
I personally use FC5.. it does suck a bit, but I am fairly used to it now... FC5 is quite scared of patent issues involved with many multi-media apps, (lame, mpeg, etc..)

I personally use the livna yum repository, and most of the dependencies I was able to be fixed from there..
Well, fooey on that.  I shall use this as a learning experience, and see
if I can get a clean ./configure in the next few days.
If you decided to do the yum method, can you keep track of what packages you installed, and send me a list. I'll add them to a list somewhere later...

Just quickly going through the configure.in script myself, and rpm-querying my system to see the package names, I obtained the following steps.. You might start with

rpm -ivh http://rpm.livna.org/livna-release-5.rpm

and then yum install for each of the following:

nasm
glibc-kernheaders    # for /usr/include/linux/videodev2.h
xorg-x11-proto-devel # I am guessing this is needed
xvidcore-devel       # I am guessing this is needed
libXxf86vm-devel
alsa-lib-devel
mjpegtools-libs      # Naughty!! they don't follow the -devel notation!!
libjpeg-devel
fftw-devel
djbfft
e2fsprogs-devel     # for libuuid
libdv-devel
libpng-devel
freetype-devel
a52dec-devel
libsndfile-devel
OpenEXR
faac-devel
faad2-devel
libraw1394-devel
libiec61883-devel
libavc1394-devel
librom1394-devel
libogg-devel
libvorbis-devel
lame-devel

(you could place them all on one line!) And then manually install:

x264 - I manually installed this from their website..

This should satisfy many of your dependancy problems... Let me know what extra 
needed, and I'll cut and paste it into the compile instructions on our website.

j6t: "xorg-x11-proto-devel" could be what needs to be added to:    
AC_MSG_WARN([Please install xlib-dev or xorg-x11-devel.])

since I couldn't find either xlib-dev or xorg-xll-devel on my system..

By the way,
should I be doing something between running configure?  I saw some
install instructions that recommend doing a make clean sometimes.
Tom
Umm, I wouldn't do it too often. If the build fails because a file missing in "faad.h" (i.e. you don't have the devel package installed for faad) or something like that, I usually install the devel package and try to make again... It should compile. If it gets to the end and complains when linking, then I do a make clean.

In terms of the configure, I personally use:
./configure --prefix=/usr --enable-x86 --enable-mmx --enable-freetype2 \
CFLAGS='-O3 -pipe -fomit-frame-pointer -funroll-all-loops -falign-loops=2 -falign-jumps=2 -falign-functions=2 -ffast-math -march=pentium-m -mfpmath=sse,387 -mmmx -msse'

when compiling, (I actually placed this in a file ~/bin/cinelerra_conf.sh cause I got sick of typeing it so much!!) to ensure I get a version optimised for my cpu (pentium-m). You may want to investigate this at a later date.

Also, don't forget, the latest svn is crashy, (since it's undergoing a merge with the new upstream source) Use the 836 for best luck compiling without any error messages!

Pierre


_______________________________________________
Cinelerra mailing list
[email protected]
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra

Reply via email to