<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
FONT-SIZE: 10pt;
FONT-FAMILY:Tahoma
}
</style>
</head>
<body class='hmmessage'>
Hello,<br><br>I'm trying to compile a simple program using libvlc, but some functions are not found.<br>I'm using libvlc 0.8.6c under Ubuntu 7.04 (Feisty).<br>This is what I did:<br><br>1) Configure vlc:<br>./configure --with-ffmpeg-config-path=/home/projetao/ffmpeg/ --with-live555-tree=/home/projetao/live/ --with-ffmpeg-tree=/home/projetao/ffmpeg --disable-mad --disable-libmpeg2 --disable-wxwidgets --disable-skins2 --enable-v4l --enable-release --enable-live555 --enable-static<br><br>(where /home/projetao is where are the other libs)<br><br>2) Make VLC:<br>make<br><br>3) Copied the source code for linux from http://wiki.videolan.org/LibVLC_Tutorial_086c<br><br>4) Tried to compile the code using the following lines:<br>export VLC_SRC=/home/projetao/vlc-0.8.6c<br>gcc -I ${VLC_SRC}/include/ -lvlc -L ${VLC_SRC}/src/.libs/ demo.c -o demo<br><br>But the second line didn't work (the path ${VLC_SRC}/src/.libs/ doesn't even exist), so I tried to change the -L option to the path where the libvlc.a is:<br>gcc -I ${VLC_SRC}/include/ -lvlc -L ${VLC_SRC}/src/ demo.c -o demo<br><br>Then the following errors showed up:<br>/tmp/ccOW4Ahx.o: In function `quit_on_exception':<br>demo.c:(.text+0xd): undefined reference to `libvlc_exception_raised'<br>demo.c:(.text+0x1c): undefined reference to `libvlc_exception_get_message'<br>/tmp/ccOW4Ahx.o: In function `main':<br>demo.c:(.text+0x6a): undefined reference to `libvlc_exception_init'<br>demo.c:(.text+0x82): undefined reference to `libvlc_new'<br>demo.c:(.text+0xb1): undefined reference to `libvlc_playlist_add'<br>demo.c:(.text+0xe8): undefined reference to `libvlc_playlist_play'<br>demo.c:(.text+0x10a): undefined reference to `libvlc_destroy'<br>collect2: ld returned 1 exit status<br><br>Can someone please help me to compile this simple demo?<br><br /><hr />Connect to the next generation of MSN Messenger   <a href='http://imagine-msn.com/messenger/launch80/default.aspx?locale=en-us&source=wlmailtagline' target='_new'>Get it now! </a></body>
</html>