On Saturday 07 April 2007 19:44:30 SAthEfRere Nomatogo wrote: > linking ./renderer/kdenlive_renderer > /bin/bash ./libtool --silent --mode=link --tag=CC gcc -std=iso9899:1990 -W > -Wall -Wchar-subscripts -Wshadow -Wpointer-arith -Wmissing-prototypes > -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2 -Wformat-security > -Wmissing-format-attribute -DQT_THREAD_SUPPORT -D_REENTRANT > -L/usr/share/qt3/lib -o ./renderer/kdenlive_renderer > ../renderer/kdenlive_renderer.o > ../renderer/kdenlive_renderer.o: In function `create_consumer': > kdenlive_renderer.c:(.text+0x34): undefined reference to > `mlt_factory_consumer'
If you installed MLT in the default location, it should be in /usr/local By default, *ubuntu does not look for libraries in that place, you will need to do the following: edit the file /etc/ld.so.conf (as root, create it if it does not exist). add the following lines at the end of the file: /usr/lib /usr/local/lib save it and do "ldconfig" as root. Linking should work after that... jb
