diff options
author | midipix <writeonce@midipix.org> | 2019-01-01 01:46:21 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-01-01 01:47:56 -0500 |
commit | 8f077638232c74749f1cc2cefba164ed160bc2cb (patch) | |
tree | 3320993a456552b6288c179e15d9ae484dceac7c /configure | |
parent | 185910e2d271b5b20e992951c5e3a9d1aef87c93 (diff) | |
download | slibtool-8f077638232c74749f1cc2cefba164ed160bc2cb.tar.bz2 slibtool-8f077638232c74749f1cc2cefba164ed160bc2cb.tar.xz |
build system: replace config_support() with ccenv_dso_verify().
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 22 |
1 files changed, 0 insertions, 22 deletions
@@ -460,27 +460,6 @@ config_cfghost() } -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 - printf '%s' "$mbt_source" | $mbt_cc -shared -o a.out -xc - - [ -f a.out ] && 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 @@ -787,7 +766,6 @@ config_copy config_ccenv config_custom config_cfghost -config_support config_host config_status |