diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-11-05 23:21:47 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-11-06 13:10:07 +0300 |
commit | 9a9261c467eae0f9ca7b1aea050964dd19ea2efb (patch) | |
tree | e9d049886361fc6452abb70be7d716df6b04919a /libbrep/package.hxx | |
parent | 41328940bc7dc640d5777f86e048c13d6fce7f29 (diff) |
Add support for build-warning-email and build-error-email package manifest values
Diffstat (limited to 'libbrep/package.hxx')
-rw-r--r-- | libbrep/package.hxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libbrep/package.hxx b/libbrep/package.hxx index fb44bf3..97ea864 100644 --- a/libbrep/package.hxx +++ b/libbrep/package.hxx @@ -21,7 +21,7 @@ // #define LIBBREP_PACKAGE_SCHEMA_VERSION_BASE 7 -#pragma db model version(LIBBREP_PACKAGE_SCHEMA_VERSION_BASE, 9, open) +#pragma db model version(LIBBREP_PACKAGE_SCHEMA_VERSION_BASE, 10, open) namespace brep { @@ -372,6 +372,8 @@ namespace brep optional<email_type>, optional<email_type> package_email, optional<email_type> build_email, + optional<email_type> build_warning_email, + optional<email_type> build_error_email, dependencies_type, requirements_type, build_constraints_type, @@ -418,6 +420,8 @@ namespace brep optional<email_type> email; optional<email_type> package_email; optional<email_type> build_email; + optional<email_type> build_warning_email; + optional<email_type> build_error_email; dependencies_type dependencies; requirements_type requirements; |