aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2011-09-29 08:43:01 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2011-09-29 08:43:01 +0000
commitf62dcc1ea152ffd61833cfc74e7e3c5456560238 (patch)
tree755189772dba1d7123cc867d581738c7c5fc44ad /configure.ac
parentd6dc4c30f44e20071f73dff43edb2d02bddd2434 (diff)
downloadrtmux-f62dcc1ea152ffd61833cfc74e7e3c5456560238.tar.gz
rtmux-f62dcc1ea152ffd61833cfc74e7e3c5456560238.tar.bz2
rtmux-f62dcc1ea152ffd61833cfc74e7e3c5456560238.zip
Separate dfly from fbsd as one or the other keeps becoming incompatible
;-). From Antonio Huete Jimenez
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac7
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 651806de..efa34e14 100644
--- a/configure.ac
+++ b/configure.ac
@@ -414,11 +414,15 @@ case "$host_os" in
AC_DEFINE(BROKEN_CMSG_FIRSTHDR)
PLATFORM=darwin
;;
+ *dragonfly*)
+ AC_MSG_RESULT(dragonfly)
+ PLATFORM=dragonfly
+ ;;
*linux*)
AC_MSG_RESULT(linux)
PLATFORM=linux
;;
- *freebsd*|*dragonfly*)
+ *freebsd*)
AC_MSG_RESULT(freebsd)
PLATFORM=freebsd
;;
@@ -450,6 +454,7 @@ esac
AC_SUBST(PLATFORM)
AM_CONDITIONAL(IS_AIX, test "x$PLATFORM" = xaix)
AM_CONDITIONAL(IS_DARWIN, test "x$PLATFORM" = xdarwin)
+AM_CONDITIONAL(IS_DRAGONFLY, test "x$PLATFORM" = xdragonfly)
AM_CONDITIONAL(IS_LINUX, test "x$PLATFORM" = xlinux)
AM_CONDITIONAL(IS_FREEBSD, test "x$PLATFORM" = xfreebsd)
AM_CONDITIONAL(IS_NETBSD, test "x$PLATFORM" = xnetbsd)