diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-11-29 13:26:46 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-11-29 13:26:46 +0300 |
commit | eb4e3f30d1e5a029273ad4086b79000ae9d96c8f (patch) | |
tree | 2a1b21c60c9db37cb7115a39aab2601f457712f0 | |
parent | c8e97ed801b6e781055d539550577640b2357e59 (diff) |
Install errmsg.h and mysql_error.h
-rw-r--r-- | mysql/buildfile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql/buildfile b/mysql/buildfile index 1c7b0ef..3983e79 100644 --- a/mysql/buildfile +++ b/mysql/buildfile @@ -235,17 +235,17 @@ else # lib{mysqlclient}: cc.export.poptions = "-I$out_root" "-I$src_root" -# Let's install the bare minimum of headers: mysql.h and headers it recursively -# includes. +# Let's install the bare minimum of headers: mysql.h, errmsg.h, mysqld_error.h +# and headers they recursively include. # h{*}: install = false hxx{*}: install = false # @@ Fix once LHS pair generation is implemented. # -for h: mysql mysql_version mysql_com mysql_time my_list my_alloc my_command \ - binary_log_types typelib \ - mysql/client_plugin mysql/plugin_auth_common \ +for h: mysql errmsg mysqld_error mysql_time mysql_version mysql_com \ + my_list my_alloc my_command binary_log_types typelib \ + mysql/client_plugin mysql/plugin_auth_common \ mysql/psi/psi_base mysql/psi/psi_memory { h{$h}@./: install = include/mysql/$path.directory($h) |