diff options
author | Jonathan Gray <jsg@jsg.id.au> | 2013-06-26 17:11:57 +1000 |
---|---|---|
committer | Vinson Lee <vlee@freedesktop.org> | 2013-07-17 21:06:46 -0700 |
commit | 78fbb41fe3c2301021b8fd60dabc26d1cf62fdfc (patch) | |
tree | dfb51abd1f76e00141ea945f17e68bdbce0ae17d /configure.ac | |
parent | 21f97446f4b3e445edb1372ebc7bd89ad2f7f3d2 (diff) |
configure.ac: add OpenBSD
Signed-off-by: Jonathan Gray <jsg@jsg.id.au>
Reviewed-by: Vinson Lee <vlee@freedesktop.org>
Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 0026613cce..100f75f08b 100644 --- a/configure.ac +++ b/configure.ac @@ -449,7 +449,7 @@ if test "x$enable_asm" = xyes; then case "$host_cpu" in i?86) case "$host_os" in - linux* | *freebsd* | dragonfly* | *netbsd*) + linux* | *freebsd* | dragonfly* | *netbsd* | openbsd*) test "x$enable_64bit" = xyes && asm_arch=x86_64 || asm_arch=x86 ;; gnu*) @@ -459,7 +459,7 @@ if test "x$enable_asm" = xyes; then ;; x86_64) case "$host_os" in - linux* | *freebsd* | dragonfly* | *netbsd*) + linux* | *freebsd* | dragonfly* | *netbsd* | openbsd*) test "x$enable_32bit" = xyes && asm_arch=x86 || asm_arch=x86_64 ;; esac @@ -985,7 +985,7 @@ if test "x$enable_dri" = xyes; then ;; esac ;; - freebsd* | dragonfly* | *netbsd*) + freebsd* | dragonfly* | *netbsd* | openbsd*) DEFINES="$DEFINES -DHAVE_PTHREAD -DUSE_EXTERNAL_DXTN_LIB=1" DEFINES="$DEFINES -DHAVE_ALIAS" |