aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure7
-rw-r--r--gmid.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/configure b/configure
index 881b40f..de33b09 100755
--- a/configure
+++ b/configure
@@ -50,6 +50,7 @@ fi
INSTALL=${INSTALL-install}
PREFIX=${PREFIX-/usr/local}
+SYSCONFDIR=${SYSCONFDIR-/etc}
CDIAGFLAGS=
CDIAGFLAGS="${CDIAGFLAGS} -W -Wall -Wextra -Wpointer-arith -Wuninitialized"
@@ -100,6 +101,7 @@ while [ $# -gt 0 ]; do
--bindir) key=BINDIR ;;
--mandir) key=MANDIR ;;
--prefix) key=PREFIX ;;
+ --sysconfdir) key=SYSCONFDIR ;;
--with-libtls) key=LIBTLS ;;
esac
@@ -120,6 +122,7 @@ while [ $# -gt 0 ]; do
LDFLAGS) LDFLAGS="$val" ;;
PKG_CONFIG) PKG_CONFIG="$val" ;;
PREFIX) PREFIX="$val" ;;
+ SYSCONFDIR) SYSCONFDIR="$val" ;;
YACC) YACC="$val" ;;
*) usage
esac
@@ -437,6 +440,10 @@ cat <<__HEREDOC__
#define DISABLE_SANDBOX ${DISABLE_SANDBOX}
#define HAVE_LANDLOCK ${HAVE_LANDLOCK}
+#ifndef SYSCONFDIR
+# define SYSCONFDIR "${SYSCONFDIR}"
+#endif
+
__HEREDOC__
if [ ${HAVE_ENDIAN_H} -eq 1 ]; then
diff --git a/gmid.c b/gmid.c
index d424969..54441f3 100644
--- a/gmid.c
+++ b/gmid.c
@@ -68,7 +68,7 @@ int pidfd = -1;
int debug, verbose;
-const char *config_path = "/etc/gmid.conf";
+const char *config_path = SYSCONFDIR "/gmid.conf";
const char *pidfile;
static void