diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-09-05 13:53:13 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-09-05 13:53:13 +0000 |
commit | b28284007838c5802930691f1bd0aa77627ae7a2 (patch) | |
tree | 1ec2300308f02bd1bf00428eb207ff1ec76dc9f7 /source3/configure | |
parent | f5e6f03389e53c6575c68f7bde5f9fa7dc496240 (diff) | |
download | samba-b28284007838c5802930691f1bd0aa77627ae7a2.tar.gz samba-b28284007838c5802930691f1bd0aa77627ae7a2.tar.bz2 samba-b28284007838c5802930691f1bd0aa77627ae7a2.zip |
added a configuration summary at the end of ./configure. It also
aborts if essential functions are not available.
(This used to be commit 5c7717f033f670f587b4a250d0a663cad30824e5)
Diffstat (limited to 'source3/configure')
-rwxr-xr-x | source3/configure | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/source3/configure b/source3/configure index 91fbc65506..a57723f209 100755 --- a/source3/configure +++ b/source3/configure @@ -4892,6 +4892,28 @@ EOF fi fi +echo "checking configure summary" +if test "$cross_compiling" = yes; then + { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } +else + cat > conftest.$ac_ext <<EOF +#line 4901 "configure" +#include "confdefs.h" +#include "tests/summary.c" +EOF +if { (eval echo configure:4905: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null +then + echo "configure OK"; +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -fr conftest* + echo ERROR - summary failure. Aborting config; exit 1 +fi +rm -fr conftest* +fi + + trap '' 1 2 15 cat > confcache <<\EOF |