diff options
author | Bjorn Munch <Bjorn.Munch@sun.com> | 2009-03-12 16:07:13 +0100 |
---|---|---|
committer | Bjorn Munch <Bjorn.Munch@sun.com> | 2009-03-12 16:07:13 +0100 |
commit | 8b9502ae58fad3857c6c0567700d158415f2d4c0 (patch) | |
tree | 3f7b18431502068ee0029fe57b9ae243b55c984b /mysql-test/lib | |
parent | 45f39ac6a3ac1a6541e0a2cfd94f409f0cd013bb (diff) | |
download | mariadb-git-8b9502ae58fad3857c6c0567700d158415f2d4c0.tar.gz |
Bug #43597 Fix for Bug 43410 breaks build on Power Mac due to incomplete sys/resource.h
Added include of sys/time.h
Diffstat (limited to 'mysql-test/lib')
-rw-r--r-- | mysql-test/lib/My/SafeProcess/safe_process.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/lib/My/SafeProcess/safe_process.cc b/mysql-test/lib/My/SafeProcess/safe_process.cc index 6ad45a3226e..dc7b7da28c7 100644 --- a/mysql-test/lib/My/SafeProcess/safe_process.cc +++ b/mysql-test/lib/My/SafeProcess/safe_process.cc @@ -45,6 +45,7 @@ #include <sys/types.h> #include <sys/wait.h> +#include <sys/time.h> #include <sys/resource.h> #include <unistd.h> #include <stdarg.h> |