summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMarcin Siodelski <marcin@isc.org>2017-05-18 18:13:21 +0200
committerMarcin Siodelski <marcin@isc.org>2017-05-18 18:18:33 +0200
commitc8f0b32ac5ab4acf566a592ab7255eab45a6d202 (patch)
treeb0e468f71da5159abb192c3c3c82b28b86771efc /configure
parentb63c32120acd68bc3c8a39255e37e2a8e368e16c (diff)
downloadisc-dhcp-c8f0b32ac5ab4acf566a592ab7255eab45a6d202.tar.gz
[master] Added support for --with-srv-conf-file configuration parameter.
Merged 'rt44765'.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 16 insertions, 0 deletions
diff --git a/configure b/configure
index eff92d16..9620b1ac 100755
--- a/configure
+++ b/configure
@@ -776,6 +776,7 @@ enable_secs_byteorder
enable_log_pid
enable_binary_leases
with_atf
+with_srv_conf_file
with_srv_lease_file
with_srv6_lease_file
with_cli_lease_file
@@ -1468,6 +1469,9 @@ Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
--with-atf=PATH specify location where atf was installed (or "bind")
+ --with-srv-conf-file=PATH
+ Default file containing dhcpd configuration (default
+ is typically /etc/dhcpd.conf)
--with-srv-lease-file=PATH
File for dhcpd leases (default is
LOCALSTATEDIR/db/dhcpd.leases)
@@ -5826,6 +5830,18 @@ case "$localstatedir" in
;;
esac
+# Default server configuration file.
+
+# Check whether --with-srv-conf-file was given.
+if test "${with_srv_conf_file+set}" = set; then :
+ withval=$with_srv_conf_file;
+cat >>confdefs.h <<_ACEOF
+#define _PATH_DHCPD_CONF "$withval"
+_ACEOF
+
+fi
+
+
# Allow specification of alternate state files
# Check whether --with-srv-lease-file was given.