-
Notifications
You must be signed in to change notification settings - Fork 272
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
autotools: Add a flag to enable or disable all plugins #236
Conversation
This allows to change the default for whether every plugins are enabled or disabled, effectively allowing to easily select either all, or only a specific set of plugins. To force enable all plugins: configure --enable-all-plugins To force enable all plugins, but disable Addons: configure --enable-all-plugins --disable-addons To force enable all plugins, but Addons which is checked automatically: configure --enable-all-plugins --enable-addons=auto To disable all plugins, but force enable Addons: configure --disable-all-plugins --enable-addons
It's not clear (to me) from the M4 whether Other than that, I think this is a really good idea. |
I think someone said this is already supported by Waf build system, but it might be useful to add |
You can pass |
Shall we put this into 1.25? |
Added some docs |
1b82b04
to
4f2f2bd
Compare
4f2f2bd
to
fed3478
Compare
Add a flag to the Autotools build system to enable or disable all plugins at once.
This allows to change the default for whether every plugins are enabled or disabled, effectively allowing to easily select either all, or only a specific set of plugins.
To force enable all plugins:
configure --enable-all-plugins
To force enable all plugins, but disable Addons:
configure --enable-all-plugins --disable-addons
To force enable all plugins, but Addons which is checked automatically:
configure --enable-all-plugins --enable-addons=auto
To disable all plugins, but force enable Addons:
configure --disable-all-plugins --enable-addons