nvdimm.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [ndctl PATCH] ndctl, build: Introduce --with-{bash,systemd}
@ 2018-09-12 20:11 Dan Williams
  2018-09-13 18:18 ` Verma, Vishal L
  0 siblings, 1 reply; 2+ messages in thread
From: Dan Williams @ 2018-09-12 20:11 UTC (permalink / raw)
  To: linux-nvdimm; +Cc: Robby Workman

The --with-bash-completion-dir and --with-systemd-unit-dir are not
arguments that set directory values, they are questions about whether
ndctl should build extra functionality and pull extra pkgconfig
variable information.

Clean them up to be --with-bash and --with-systemd and consistent.

This makes it clear that to disable systemd, for example, specify:

    --without-systemd

...to the configure script.

Link: https://github.com/pmem/ndctl/issues/68
Reported-by: Robby Workman <rworkman@slackware.com>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
---
 autogen.sh        |    3 +--
 configure.ac      |   46 +++++++++++++++++-----------------------------
 ndctl/Makefile.am |    2 +-
 3 files changed, 19 insertions(+), 32 deletions(-)

diff --git a/autogen.sh b/autogen.sh
index 21b0e250e672..2a52688bb403 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -17,8 +17,7 @@ libdir() {
 
 args="--prefix=/usr \
 --sysconfdir=/etc \
---libdir=$(libdir /usr/lib) \
---with-systemd-unit-dir"
+--libdir=$(libdir /usr/lib)"
 
 echo
 echo "----------------------------------------------------------------"
diff --git a/configure.ac b/configure.ac
index 7bfe5a7451b0..9dc11da194d1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -115,22 +115,19 @@ PKG_CHECK_MODULES([UDEV], [libudev])
 PKG_CHECK_MODULES([UUID], [uuid])
 PKG_CHECK_MODULES([JSON], [json-c])
 
-AC_ARG_WITH([bash-completion-dir],
-	AS_HELP_STRING([--with-bash-completion-dir[=PATH]],
-		[Install the bash auto-completion script in this directory. @<:@default=yes@:>@]),
+AC_ARG_WITH([bash],
+	AS_HELP_STRING([--with-bash],
+		[Enable bash auto-completion. @<:@default=yes@:>@]),
 	[],
-	[with_bash_completion_dir=yes])
+	[with_bash=yes])
 
-if test "x$with_bash_completion_dir" = "xyes"; then
+if test "x$with_bash" = "xyes"; then
 	PKG_CHECK_MODULES([BASH_COMPLETION], [bash-completion >= 2.0],
-		[BASH_COMPLETION_DIR="`pkg-config --variable=completionsdir bash-completion`"],
-		[BASH_COMPLETION_DIR="$datadir/bash-completion/completions"])
-else
-	BASH_COMPLETION_DIR="$with_bash_completion_dir"
+		[BASH_COMPLETION_DIR=$($PKG_CONFIG --variable=completionsdir bash-completion)], [])
 fi
 
 AC_SUBST([BASH_COMPLETION_DIR])
-AM_CONDITIONAL([ENABLE_BASH_COMPLETION],[test "x$with_bash_completion_dir" != "xno"])
+AM_CONDITIONAL([ENABLE_BASH_COMPLETION], [test "x$with_bash" = "xyes"])
 
 AC_ARG_ENABLE([local],
         AS_HELP_STRING([--disable-local], [build against kernel ndctl.h @<:@default=system@:>@]),
@@ -143,26 +140,18 @@ AC_CHECK_FUNCS([ \
 	secure_getenv\
 ])
 
-PKG_PROG_PKG_CONFIG
-AC_ARG_WITH([systemd-unit-dir],
-	AS_HELP_STRING([--with-systemd-unit-dir[=DIR]],
-		[Directory for systemd service files]),
-	[],
-	[with_systemd_unit_dir=yes])
-
-if test "x$with_systemd_unit_dir" = "xyes"; then
-	def_systemd_unit_dir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)
-	if test "x$def_systemd_unit_dir" = "x"; then
-		AC_MSG_ERROR([systemd support requested but pkg-config unable to query systemd package])
-		with_systemd_unit_dir=no
-	else
-		with_systemd_unit_dir="$def_systemd_unit_dir"
-	fi
+AC_ARG_WITH([systemd],
+	AS_HELP_STRING([--with-systemd],
+		[Enable systemd functionality (monitor). @<:@default=yes@:>@]),
+	[], [with_systemd=yes])
+
+if test "x$with_systemd" = "xyes"; then
+	PKG_CHECK_MODULES([SYSTEMD], [systemd],
+	[systemd_unitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)], [])
 fi
 
-AS_IF([test "x$with_systemd_unit_dir" != "xno"],
-	[AC_SUBST([systemd_unitdir], [$with_systemd_unit_dir])])
-AM_CONDITIONAL([ENABLE_SYSTEMD_UNIT_DIR], [test "x$with_systemd_unit_dir" != "xno"])
+AC_SUBST([systemd_unitdir])
+AM_CONDITIONAL([ENABLE_SYSTEMD_UNITS], [test "x$with_systemd" = "xyes"])
 
 AC_ARG_WITH([tmpfilesdir],
 	[AS_HELP_STRING([--with-tmpfilesdir=DIR], [Directory for temporary runtime files])],
@@ -215,7 +204,6 @@ AC_MSG_RESULT([
         sysconfdir:             ${sysconfdir}
         libdir:                 ${libdir}
         includedir:             ${includedir}
-	systemd-unit-dir:	${systemd_unitdir}
         tmpfilesdir:            ${tmpfilesdir}
 
         compiler:               ${CC}
diff --git a/ndctl/Makefile.am b/ndctl/Makefile.am
index 4b44294ef9aa..d6839e4a9fb6 100644
--- a/ndctl/Makefile.am
+++ b/ndctl/Makefile.am
@@ -48,7 +48,7 @@ monitor_configdir = $(sysconfdir)/ndctl/
 monitor_config_DATA = $(monitor_config_file)
 EXTRA_DIST += $(monitor_config_file)
 
-if ENABLE_SYSTEMD_UNIT_DIR
+if ENABLE_SYSTEMD_UNITS
 systemd_unit_DATA = ndctl-monitor.service
 endif
 

_______________________________________________
Linux-nvdimm mailing list
Linux-nvdimm@lists.01.org
https://lists.01.org/mailman/listinfo/linux-nvdimm

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-09-13 18:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-12 20:11 [ndctl PATCH] ndctl, build: Introduce --with-{bash,systemd} Dan Williams
2018-09-13 18:18 ` Verma, Vishal L

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).