mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 06:50:12 +00:00
build: more configure summary
Improved configure summary, including a check for namei fileserver mode. Change-Id: Id5117ae8c27126c56e28eb3ab7f6e8ef7fd0558d Reviewed-on: http://gerrit.openafs.org/10372 Tested-by: BuildBot <buildbot@rampaginggeek.com> Reviewed-by: Derrick Brashear <shadow@your-file-system.com>
This commit is contained in:
parent
53a50414c2
commit
9f6f419b9a
13
acinclude.m4
13
acinclude.m4
@ -1948,16 +1948,3 @@ AC_CHECK_FUNCS([uuid_generate])
|
||||
])
|
||||
|
||||
|
||||
AC_DEFUN([SUMMARY], [
|
||||
# Print a configuration summary
|
||||
echo
|
||||
echo "**************************************"
|
||||
echo configure summary
|
||||
echo
|
||||
AS_IF([test $LIB_curses],[
|
||||
echo "LIB_curses : $LIB_curses" ],[
|
||||
echo "XXX LIB_curses not found! not building scout and afsmonitor!"
|
||||
])
|
||||
echo
|
||||
echo "**************************************"
|
||||
])
|
||||
|
@ -111,6 +111,9 @@ AC_SUBST([AKLOG_KRB5_LIBS])
|
||||
dnl Probe for GSSAPI
|
||||
RRA_LIB_GSSAPI
|
||||
|
||||
dnl Checks for summary
|
||||
OPENAFS_SUMMARY_CHECK_NAMEI
|
||||
|
||||
AS_IF([test -d 'doc/man-pages'],
|
||||
[MAN_MAKEFILE="doc/man-pages/Makefile doc/man-pages/install-man"],
|
||||
[MAN_MAKEFILE=])
|
||||
@ -284,4 +287,4 @@ AC_OUTPUT([
|
||||
chmod a+x src/config/shlib-install])
|
||||
|
||||
# print a final summary
|
||||
SUMMARY
|
||||
OPENAFS_SUMMARY
|
||||
|
84
src/cf/summary.m4
Normal file
84
src/cf/summary.m4
Normal file
@ -0,0 +1,84 @@
|
||||
dnl
|
||||
dnl configure summary
|
||||
dnl
|
||||
dnl
|
||||
dnl OPENAFS_SUMMARY_CHECK_NAME
|
||||
dnl
|
||||
dnl Check whether namei fileserver is enabled for this platform/configure options.
|
||||
dnl When namei is enabled with a configure option, the AFS_NAMEI_ENV will be defined
|
||||
dnl for the test program. AFS_NAMEI_ENV can also be defined in the platform and sysname
|
||||
dnl param headers for this platform. Avoid including the afs/afs_sysnames.h header since
|
||||
dnl it has not been installed to the `include/afs' system directory yet (and is not
|
||||
dnl needed for this namei check).
|
||||
dnl
|
||||
dnl Note that, if set, AFS_PARAM_COMMON is the header filename, including the .h suffix.
|
||||
dnl
|
||||
AC_DEFUN([OPENAFS_SUMMARY_CHECK_NAMEI],
|
||||
[AC_CACHE_CHECK([whether namei fileserver is enabled], [openafs_cv_summary_check_namei],
|
||||
[rm -f conftestparam.h; touch conftestparam.h; # automatically cleaned up by configure
|
||||
AS_IF([test "x${AFS_PARAM_COMMON}" != "x" && test -f "src/config/${AFS_PARAM_COMMON}"],
|
||||
[grep -v '#include <afs/afs_sysnames.h>' "src/config/${AFS_PARAM_COMMON}" >> conftestparam.h])
|
||||
AS_IF([test "x${AFS_SYSNAME}" != "x" && test -f "src/config/param.${AFS_SYSNAME}.h"],
|
||||
[grep -v '#include <afs/afs_sysnames.h>' "src/config/param.${AFS_SYSNAME}.h" >> conftestparam.h])
|
||||
AC_COMPILE_IFELSE(
|
||||
[AC_LANG_PROGRAM([[
|
||||
#define IGNORE_STDS_H
|
||||
#include "conftestparam.h"
|
||||
]], [[
|
||||
#ifndef AFS_NAMEI_ENV
|
||||
namei_disabled
|
||||
#endif
|
||||
]])],
|
||||
[openafs_cv_summary_check_namei="yes"],
|
||||
[openafs_cv_summary_check_namei="no"])
|
||||
])
|
||||
])
|
||||
dnl
|
||||
dnl OPENAFS_SUMMARY
|
||||
dnl
|
||||
dnl Print the configure summary.
|
||||
dnl
|
||||
AC_DEFUN([OPENAFS_SUMMARY],[
|
||||
AS_IF([test "x${LIB_curses}" = "x"],
|
||||
[summary_build_scout="no"],
|
||||
[summary_build_scout="yes"])
|
||||
AS_IF([test "x${DOCBOOK_STYLESHEETS}" = "x"],
|
||||
[summary_docbook_stylesheets="no"],
|
||||
[summary_docbook_stylesheets="yes"])
|
||||
|
||||
cat <<EOF
|
||||
***************************************************************
|
||||
configure summary
|
||||
|
||||
version : ${VERSION}
|
||||
sysname : ${AFS_SYSNAME}
|
||||
|
||||
debug:
|
||||
userspace : ${enable_debug}
|
||||
kernel : ${enable_debug_kernel}
|
||||
|
||||
options:
|
||||
transarc paths : ${enable_transarc_paths}
|
||||
namei fileserver : ${openafs_cv_summary_check_namei}
|
||||
use unix sockets : ${USE_UNIX_SOCKETS}
|
||||
ptserver supergroups : ${enable_supergroups}
|
||||
pthreaded ubik : ${enable_pthreaded_ubik}
|
||||
install kauth : ${INSTALL_KAUTH}
|
||||
docbook stylesheets : ${summary_docbook_stylesheets}
|
||||
|
||||
build:
|
||||
scout/afsmonitor : ${summary_build_scout}
|
||||
pam : ${HAVE_PAM}
|
||||
login : ${BUILD_LOGIN}
|
||||
uss : ${BUILD_USS}
|
||||
|
||||
libraries:
|
||||
krb5 : ${KRB5_LIBS}
|
||||
curses : ${LIB_curses}
|
||||
afsdb : ${LIB_AFSDB}
|
||||
crypt : ${LIB_crypt}
|
||||
hcrypto : ${LIB_hcrypto}
|
||||
intl : ${LIB_libintl}
|
||||
***************************************************************
|
||||
EOF
|
||||
])
|
Loading…
Reference in New Issue
Block a user