diff options
author | midipix <writeonce@midipix.org> | 2016-05-06 07:01:01 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-05-06 11:02:25 -0400 |
commit | 97381db77533ae56efb627c80211b9cc4b4f30e3 (patch) | |
tree | f8d6ab625810f415f63397c883cd196c64966605 /configure | |
parent | 5651ec442e4349770113c59213da16ecc17bee7d (diff) | |
download | sofort-97381db77533ae56efb627c80211b9cc4b4f30e3.tar.bz2 sofort-97381db77533ae56efb627c80211b9cc4b4f30e3.tar.xz |
build system: configure: added config_support()
* test supported features as needed.
- shared library support.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -405,6 +405,27 @@ config_copy() } +config_support() +{ + [ "$mb_disable_shared" = 'yes' ] && return 0 + + mbt_cc=`make .display-cc` + mbt_cflags=`make .display-cflags` + mbt_source='int foo(int x){return ++x;}' + mbt_result='no' + + rm -f a.out + echo "$mbt_source" | "$mbt_cc" -shared -o a.out -xc - + stat a.out >/dev/null 2>&1 && mbt_result='yes' + rm -f a.out + + if [ "$mbt_result" = 'no' ]; then + mb_disable_shared='yes' + config_copy + fi +} + + config_host() { make -s host.tag && return 0 @@ -536,6 +557,7 @@ cross_defaults # four: config config_flags config_copy +config_support config_host config_status |