diff options
author | Emmanuele Bassi <ebassi@gmail.com> | 2017-05-22 16:57:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-22 16:57:59 +0100 |
commit | 2fe369e1879c5672b0626d0cd359f9b3accbc883 (patch) | |
tree | f6967ad693cd903a905c866870a64d89f2d8b7d4 | |
parent | 5ef9c5ea24e5a0761baa2abda46c031eb0f6fd0f (diff) | |
parent | 640a735e932f2697d53fb899d2da93d40239c123 (diff) | |
download | libepoxy-2fe369e1879c5672b0626d0cd359f9b3accbc883.tar.gz |
Merge pull request #124 from return/haiku-support
Add support for building on Haiku.
-rw-r--r-- | meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build index 5435f45..77b9d06 100644 --- a/meson.build +++ b/meson.build @@ -42,6 +42,8 @@ if enable_glx == 'auto' build_glx = false elif host_system == 'android' build_glx = false + elif host_system == 'haiku' + build_glx = false else build_glx = true endif |