kea: 1.3.0 -> 1.4.0
This commit is contained in:
parent
472ab64e0f
commit
ddf898006e
|
@ -4,11 +4,11 @@
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
pname = "kea";
|
pname = "kea";
|
||||||
version = "1.3.0";
|
version = "1.4.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://ftp.isc.org/isc/${pname}/${version}/${name}.tar.gz";
|
url = "https://ftp.isc.org/isc/${pname}/${version}/${name}.tar.gz";
|
||||||
sha256 = "14f32lsdd1824cx9a4l4pfbhq1d4jik6l6hxd911ihi64nzwvpvf";
|
sha256 = "0a0inchisrjry59z14w4ha210q2ffl31gjbhp5dgrbap6swyry60";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./dont-create-var.patch ];
|
patches = [ ./dont-create-var.patch ];
|
||||||
|
@ -20,8 +20,8 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--localstatedir=/var"
|
"--localstatedir=/var"
|
||||||
"--with-dhcp-pgsql=${postgresql}/bin/pg_config"
|
"--with-pgsql=${postgresql}/bin/pg_config"
|
||||||
"--with-dhcp-mysql=${mysql.connector-c}/bin/mysql_config"
|
"--with-mysql=${mysql.connector-c}/bin/mysql_config"
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
diff --git a/Makefile.am b/Makefile.am
|
diff --git a/Makefile.am b/Makefile.am
|
||||||
index 897be34..b146729 100644
|
index 2c0733c..974bb5e 100644
|
||||||
--- a/Makefile.am
|
--- a/Makefile.am
|
||||||
+++ b/Makefile.am
|
+++ b/Makefile.am
|
||||||
@@ -103,11 +103,6 @@ cppcheck:
|
@@ -135,11 +135,6 @@ cppcheck:
|
||||||
--template '{file}:{line}: check_fail: {message} ({severity},{id})' \
|
--template '{file}:{line}: check_fail: {message} ({severity},{id})' \
|
||||||
src
|
src
|
||||||
|
|
||||||
|
@ -15,14 +15,12 @@ index 897be34..b146729 100644
|
||||||
EXTRA_DIST += tools/mk_cfgrpt.sh
|
EXTRA_DIST += tools/mk_cfgrpt.sh
|
||||||
|
|
||||||
diff --git a/src/lib/dhcpsrv/Makefile.am b/src/lib/dhcpsrv/Makefile.am
|
diff --git a/src/lib/dhcpsrv/Makefile.am b/src/lib/dhcpsrv/Makefile.am
|
||||||
index 066b410..16d3135 100755
|
index 564f623..7cea9f2 100644
|
||||||
--- a/src/lib/dhcpsrv/Makefile.am
|
--- a/src/lib/dhcpsrv/Makefile.am
|
||||||
+++ b/src/lib/dhcpsrv/Makefile.am
|
+++ b/src/lib/dhcpsrv/Makefile.am
|
||||||
@@ -210,7 +210,3 @@ EXTRA_DIST += database_backends.dox libdhcpsrv.dox
|
@@ -352,5 +352,3 @@ libkea_dhcpsrv_parsers_include_HEADERS = \
|
||||||
# Specification file
|
parsers/simple_parser6.h
|
||||||
EXTRA_DIST += logging.spec
|
|
||||||
|
|
||||||
-install-data-local:
|
-install-data-local:
|
||||||
- $(mkinstalldirs) $(DESTDIR)$(dhcp_data_dir)
|
- $(mkinstalldirs) $(DESTDIR)$(dhcp_data_dir)
|
||||||
-
|
|
||||||
-
|
|
||||||
|
|
Loading…
Reference in New Issue