diff options
author | Mark Wielaard <mjw@redhat.com> | 2015-05-01 09:23:57 +0200 |
---|---|---|
committer | Mark Wielaard <mjw@redhat.com> | 2015-05-01 09:50:31 +0200 |
commit | 7702a3c1060247a0389fa684454c749e29acf663 (patch) | |
tree | 8b75b337ab8f9e05077b265c625b1053bc1de344 /m4 | |
parent | bcefec514e69a4b51d87ba798e3b761ed9b4f648 (diff) | |
download | elfutils-7702a3c1060247a0389fa684454c749e29acf663.tar.gz |
configure: print feature settings overview
elfutils can be configured in various ways. But we expect certain
settings for the features that we explicitly support. Print an
overview of all settings, plus their recommended setting, at the
end of the configure run.
=====================================================================
elfutils: 0.161 (eu_version: 161)
=====================================================================
Prefix : /opt/local/install/elfutils
Program prefix ("eu-" recommended) : eu-
Source code location : /home/mark/src/elfutils
Maintainer mode : yes
libebl modules subdirectory : elfutils
build arch : x86_64-unknown-linux-gnu
RECOMMENDED FEATURES (should all be yes)
gzip support : yes
bzip2 support : yes
lzma/xz support : yes
libstdc++ demangle support : yes
File textrel check : yes
Symbol versioning : yes
NOT RECOMMENDED FEATURES (should all be no)
Experimental thread safety : no
OTHER FEATURES
Deterministic archives by default : false
Native language support : yes
EXTRA TEST FEATURES (used with make check)
debug branch prediction : no
gprof support : no
gcov support : no
run all tests under valgrind : no
use rpath in tests : no
test biarch : yes
Signed-off-by: Mark Wielaard <mjw@redhat.com>
Diffstat (limited to 'm4')
-rw-r--r-- | m4/ChangeLog | 4 | ||||
-rw-r--r-- | m4/zip.m4 | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/m4/ChangeLog b/m4/ChangeLog index 163ee734..9ee06d75 100644 --- a/m4/ChangeLog +++ b/m4/ChangeLog @@ -1,3 +1,7 @@ +2015-05-01 Mark Wielaard <mjw@redhat.com> + + * zip.m4: Explicitly set with_ to no, if not yes. + 2014-07-14 Mark Wielaard <mjw@redhat.com> * biarch.m4 (utrace_BIARCH): Set biarch-no for cross-compile using @@ -14,5 +14,7 @@ fi AM_CONDITIONAL([$2], test $with_[$1] = yes) if test $with_[$1] = yes; then AC_DEFINE(USE_[$2]) +else + with_[$1]=no fi AH_TEMPLATE(USE_[$2], [Support $5 decompression via -l$3.])]) |