summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Vojtovich <svoj@mariadb.org>2017-11-24 14:57:44 +0400
committerVladislav Vaintroub <wlad@mariadb.com>2017-11-24 17:30:40 +0000
commit4cc20c88df0976b4b407afdbdcf4c386bb1e969b (patch)
tree439e51f9f9658a3f4091c1fad80dbe755b10ae90
parent9cefffdab15d0e66ed616243d0d97c8cff87e352 (diff)
downloadmariadb-git-4cc20c88df0976b4b407afdbdcf4c386bb1e969b.tar.gz
Fixed build failure with PFS disabled
mariabackup fails to builds with PFS disabled. The reason was missing include, which was included by PFS otherwise.
-rw-r--r--extra/mariabackup/common.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/extra/mariabackup/common.h b/extra/mariabackup/common.h
index 7b1dfd7a0db..4d73742af49 100644
--- a/extra/mariabackup/common.h
+++ b/extra/mariabackup/common.h
@@ -25,6 +25,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
#include <mysql_version.h>
#include <fcntl.h>
#include <stdarg.h>
+#include <my_sys.h>
# define fil_is_user_tablespace_id(i) ((i) > srv_undo_tablespaces_open)