diff options
author | midipix <writeonce@midipix.org> | 2021-04-09 13:31:49 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-10 20:54:33 +0000 |
commit | 3ce1cc0245ace763c31001394c9f9762f645b468 (patch) | |
tree | 33f9c391703b7e3bcd045ef5488c3b79eb31cfdd /configure | |
parent | 9e66d439da9e7a7a2c4b9a93e7f4c87a5b229952 (diff) | |
download | apimagic-3ce1cc0245ace763c31001394c9f9762f645b468.tar.bz2 apimagic-3ce1cc0245ace763c31001394c9f9762f645b468.tar.xz |
build system: posix make support: refactored build-flavor dependency schemes.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 34 |
1 files changed, 34 insertions, 0 deletions
@@ -657,6 +657,40 @@ config_opts() else mb_version_opt='used' fi + + if [ "$mb_custom_install_headers" = 'yes' ]; then + mb_install_headers_opt='custom' + else + mb_install_headers_opt='default' + fi + + if [ "$mb_disable_static" = 'yes' ]; then + mb_static_library_opt='disabled' + else + mb_static_library_opt='enabled' + fi + + if [ "$mb_disable_shared" = 'yes' ]; then + mb_shared_library_opt='disabled' + else + mb_shared_library_opt='enabled' + fi + + if [ "$mb_disable_frontend" = 'yes' ]; then + mb_app_frontend_opt='disabled' + else + mb_app_frontend_opt='enabled' + fi + + if [ "$mb_all_static" = 'yes' ]; then + mb_app_linking_opt='all_static' + + elif [ "$mb_all_shared" = 'yes' ]; then + mb_app_linking_opt='all_shared' + + else + mb_app_linking_opt='default' + fi } config_copy() |