From: Matt Nordhoff Date: Sun, 2 Feb 2020 15:29:07 +0000 (+0000) Subject: auth: Add enable-foreign-keys.mysql.sql to packages and Makefile.am X-Git-Tag: auth-4.3.0-beta2~6^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96d5d10914117d8739b435a41e9ec6e35bb61cca;p=thirdparty%2Fpdns.git auth: Add enable-foreign-keys.mysql.sql to packages and Makefile.am --- diff --git a/builder-support/debian/authoritative/debian-buster/pdns-backend-mysql.docs b/builder-support/debian/authoritative/debian-buster/pdns-backend-mysql.docs index 1ea8dfc11d..2b504466a4 100644 --- a/builder-support/debian/authoritative/debian-buster/pdns-backend-mysql.docs +++ b/builder-support/debian/authoritative/debian-buster/pdns-backend-mysql.docs @@ -1,3 +1,4 @@ modules/gmysqlbackend/dnssec-3.x_to_3.4.0_schema.mysql.sql +modules/gmysqlbackend/enable-foreign-keys.mysql.sql modules/gmysqlbackend/nodnssec-3.x_to_3.4.0_schema.mysql.sql modules/gmysqlbackend/schema.mysql.sql diff --git a/builder-support/debian/authoritative/debian-jessie/pdns-backend-mysql.docs b/builder-support/debian/authoritative/debian-jessie/pdns-backend-mysql.docs index 1ea8dfc11d..2b504466a4 100644 --- a/builder-support/debian/authoritative/debian-jessie/pdns-backend-mysql.docs +++ b/builder-support/debian/authoritative/debian-jessie/pdns-backend-mysql.docs @@ -1,3 +1,4 @@ modules/gmysqlbackend/dnssec-3.x_to_3.4.0_schema.mysql.sql +modules/gmysqlbackend/enable-foreign-keys.mysql.sql modules/gmysqlbackend/nodnssec-3.x_to_3.4.0_schema.mysql.sql modules/gmysqlbackend/schema.mysql.sql diff --git a/builder-support/debian/authoritative/debian-stretch/pdns-backend-mysql.docs b/builder-support/debian/authoritative/debian-stretch/pdns-backend-mysql.docs index 1ea8dfc11d..2b504466a4 100644 --- a/builder-support/debian/authoritative/debian-stretch/pdns-backend-mysql.docs +++ b/builder-support/debian/authoritative/debian-stretch/pdns-backend-mysql.docs @@ -1,3 +1,4 @@ modules/gmysqlbackend/dnssec-3.x_to_3.4.0_schema.mysql.sql +modules/gmysqlbackend/enable-foreign-keys.mysql.sql modules/gmysqlbackend/nodnssec-3.x_to_3.4.0_schema.mysql.sql modules/gmysqlbackend/schema.mysql.sql diff --git a/builder-support/specs/pdns.spec b/builder-support/specs/pdns.spec index d594cf67d3..786d57d4ed 100644 --- a/builder-support/specs/pdns.spec +++ b/builder-support/specs/pdns.spec @@ -367,6 +367,7 @@ fi %doc modules/gmysqlbackend/schema.mysql.sql %doc modules/gmysqlbackend/dnssec-3.x_to_3.4.0_schema.mysql.sql %doc modules/gmysqlbackend/nodnssec-3.x_to_3.4.0_schema.mysql.sql +%doc modules/gmysqlbackend/enable-foreign-keys.mysql.sql %{_libdir}/%{name}/libgmysqlbackend.so %files backend-postgresql diff --git a/modules/gmysqlbackend/Makefile.am b/modules/gmysqlbackend/Makefile.am index daaff73f1c..1bd99a1f8f 100644 --- a/modules/gmysqlbackend/Makefile.am +++ b/modules/gmysqlbackend/Makefile.am @@ -6,11 +6,13 @@ EXTRA_DIST = \ OBJECTFILES \ OBJECTLIBS \ dnssec-3.x_to_3.4.0_schema.mysql.sql \ + enable-foreign-keys.mysql.sql \ nodnssec-3.x_to_3.4.0_schema.mysql.sql \ schema.mysql.sql dist_doc_DATA = \ dnssec-3.x_to_3.4.0_schema.mysql.sql \ + enable-foreign-keys.mysql.sql \ nodnssec-3.x_to_3.4.0_schema.mysql.sql \ 3.4.0_to_4.1.0_schema.mysql.sql \ 4.1.0_to_4.2.0_schema.mysql.sql \