From f35884174155309360093e61ac96d5fa340b88ac Mon Sep 17 00:00:00 2001 From: Mike Massonnet Date: Sun, 16 May 2010 13:54:46 +0200 Subject: [PATCH] Remove FreeBSD from the BSD family The task-manager-bsd.c code doesn't build from FreeBSD. After a look around FreeBSD retrieves system information through libkvm (Kernel Data Access Library.) Therefore a separate implementation for FreeBSD will be needed. --- configure.ac.in | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac.in b/configure.ac.in index 7f121c3..8e9e4ac 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -68,7 +68,10 @@ dnl *********************************** dnl ******* Check for OS family ******* dnl *********************************** case "$target_os" in - dragonfly*|freebsd*|netbsd*|openbsd*|darwin*) + freebsd*) + AC_MSG_ERROR([Support for FreeBSD is missing]) + ;; + dragonfly*|netbsd*|openbsd*|darwin*) ac_os_implementation="bsd" ;; solaris*)