Hello-<br><br>I am trying to follow the basic instructions up at:<br><br><a href="http://wiki.videolan.org/LibVLC_Tutorial_086c">http://wiki.videolan.org/LibVLC_Tutorial_086c</a><br><br>to start writing program using libvlc on linux (RHEL5).  Here's how I configured my build of 
0.8.6c:<br><br>./bootstrap<br>./configure --prefix=/usr/local/vlc-0.8.6c --enable-wxwindows --enable-debug --enable-shared<br><br>Note that this does not install a libvlc.so.  It only installs a libvlc.a.  If instead I do:
<br><br>./configure --prefix=/usr/local/vlc-0.8.6c --enable-wxwindows --enable-debug --enable-shared --enable-shared-libvlc<br><br>The build fails.  Not sure why.<br><br>OK, so I decided to try to go ahead using libvlc.a, which must be why the regular vlc binary is doing.  However, when I write the small sample app and try to build it using the given commands, it fails because /usr/local/src/vlc-
0.8.6c/.libs is an empty directory.  If I try to use the libs that are in /usr/local/vlc-0.8.6c/lib instead, I get all kinds of unresolved symbol errors.<br><br>So I went one more step, and include every single .so and .a from the /usr/local/vlc/0.8.6c/lib directory on the build line, and that clears up some of the errors but not all of them.
<br><br>Any ideas as to what I'm doing wrong?  I've spent several hours doing google searches but just cannot find anything related to this problem.  I'd really appreciate any help from someone who is able to build and run the sample program from that wiki page.
<br><br>Thanks,<br><br>Chad<br>