Hello I'm trying to build ffmpeg under the LGPL license but I'm having trouble creating the dll's.

I'm building the source on the Windows platform using MinGW and I use the configure options below to build the latest snapshot

./configure --enable-memalign-hack --enable-pthreads --disable-shared

However when I make and install from this I only get the "avdevice-53.dll" and none of the others such as avcodec or avformat. Is there something else I need to do to be able to make these files?

link|improve this question
You need to remove the --disable-shared as that prevents shared libraries (DLLs) from being built. – DarkDust Jan 14 at 17:20
I tried making it again using "./configure --enable-memalign-hack --enable-pthreads --enable-shared --disable-static" but that still only creates "avdevice-53.dll" and none of the others? – user1149520 Jan 14 at 17:56
Make sure you clean your workspace first with 'make distclean'. – satuon Jan 18 at 16:00
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.