I'm looking at instructions to compile VLC, and I have to say which modules I want to include.
Well, I'd like to include everything it's possible to compile with. Can I do this?
I'm looking at instructions to compile VLC, and I have to say which modules I want to include.
Well, I'd like to include everything it's possible to compile with. Can I do this?
Based on the output of
./configure --help
, there's no config option to enable every input/video/audio/interface etc pp plugin in a single step.But you could restrict the output of
./configure --help
to those options that are disabled by default:./configure --help |grep disabled
. This will return something likeThis list may be a good starting point to decide what to enable. Just enabling every option without checking the consequences won't be wise, the build will likely fail due to missing libs. Additionally, you should double-check if that list does cover all important options; i didn't check the full output of
./configure --help
en detail.