diff options
author | midipix <writeonce@midipix.org> | 2021-04-09 13:31:49 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-04-10 20:54:42 +0000 |
commit | 09e9f270788fce645b110706c0caacfdc0993beb (patch) | |
tree | 68b0e3484aa9ef3f6eb774d4570f3346047a6f03 /configure | |
parent | a667411997d8886afa12eae341571f1427af1073 (diff) | |
download | mmglue-09e9f270788fce645b110706c0caacfdc0993beb.tar.bz2 mmglue-09e9f270788fce645b110706c0caacfdc0993beb.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() |