diff options
author | Joseph C, Hill <calvin@hakobaito.co.uk> | 2017-05-22 12:46:20 +0100 |
---|---|---|
committer | Joseph C, Hill <calvin@hakobaito.co.uk> | 2017-05-22 12:48:37 +0100 |
commit | 640a735e932f2697d53fb899d2da93d40239c123 (patch) | |
tree | f6967ad693cd903a905c866870a64d89f2d8b7d4 | |
parent | 5ef9c5ea24e5a0761baa2abda46c031eb0f6fd0f (diff) | |
download | libepoxy-640a735e932f2697d53fb899d2da93d40239c123.tar.gz |
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 |