diff options
author | Thomas Haller <thaller@redhat.com> | 2023-08-29 08:32:04 (GMT) |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2023-08-29 08:48:22 (GMT) |
commit | 1558bd62459a60bae6c9812e8d2514f67fa46447 (patch) | |
tree | 7cbeda64401433cf52f6680b5cacd7dbe88e0b0d | |
parent | f66383a453dc1ddf6ff8540b234eef13920eebac (diff) | |
download | libnl-1558bd62459a60bae6c9812e8d2514f67fa46447.zip libnl-1558bd62459a60bae6c9812e8d2514f67fa46447.tar.gz libnl-1558bd62459a60bae6c9812e8d2514f67fa46447.tar.bz2 |
build: replace old "NOTE" in configure output and add summaryth/tmp
The NOTE refers to an ancient libnl3 version. It is not relevant
anymore. Drop it.
Instead, print some summary overview from the configuration.
-rw-r--r-- | configure.ac | 33 |
1 files changed, 10 insertions, 23 deletions
diff --git a/configure.ac b/configure.ac index 7cae7c8..185523b 100644 --- a/configure.ac +++ b/configure.ac @@ -152,26 +152,13 @@ fi AC_OUTPUT -echo "-------------------------------------------------------------------------------" -echo " NOTE" -echo "" -echo " There have been some changes starting with 3.2 regarding where and how libnl" -echo " is being installed on the system in order to allow multiple libnl versions" -echo " to be installed in parallel:" -echo "" -echo " - Headers will be installed in ${includedir}/libnl${MAJ_VERSION}, therefore" -echo " you will need to add \"-I/usr/include/libnl${MAJ_VERSION}\" to CFLAGS" -echo "" -echo " - The library basename was renamed to libnl-${MAJ_VERSION}, i.e. the SO names become" -echo " libnl-${MAJ_VERSION}.so., libnl-route-${MAJ_VERSION}.so, etc." -echo "" -echo " - libtool versioning was assumed, to ease detection of compatible library" -echo " versions." -echo "" -echo " If you are using pkg-config for detecting and linking against the library " -echo " things will continue magically as if nothing every happened. If you are " -echo " linking manually you need to adapt your Makefiles or switch to using " -echo " pkg-config files." -echo "" -echo "-------------------------------------------------------------------------------" - +echo +echo "libnl $LIBNL_VERSION configuration${LIBNL_GIT_SHA:+ (git:$LIBNL_GIT_SHA)}:" +echo " --enable-pthreads=$enable_pthreads" +echo " --enable-static=$enable_static" +echo +echo " --enable-debug=$enable_debug" +echo " --enable-cli=$enable_cli" +echo +echo " check: $has_check" +echo |