diff options
author | François Revol <revol@free.fr> | 2015-09-17 22:18:14 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-09-17 22:46:46 +0200 |
commit | 54f684b7b3e8ab1e7e5cbac43397e6b87934a51e (patch) | |
tree | 0234aa8a102d20c6afd04a15aaaa57a16b7786e3 /configure.ac | |
parent | 1943b158fef7b2d83f8aa5af5d85ae91b096b8eb (diff) |
configure: add tests for Haiku tools (rc, xres)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 4bc6b2077..ba7881495 100644 --- a/configure.ac +++ b/configure.ac @@ -116,6 +116,10 @@ darwin*) solaris*) host_is_solaris=yes ;; +haiku*) + AC_CHECK_TOOL(RC, rc) + AC_CHECK_TOOL(XRES, xres) + ;; esac AM_CONDITIONAL([ANDROID], [test x$host_is_android = xyes]) |