You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
312 B
12 lines
312 B
dnl Disabled on BSD, where it doesn't apply
|
|
AC_MSG_CHECKING(if ksysv can be compiled)
|
|
case "$host" in
|
|
*-*-*bsd-gnu) ksysv_compile=yes;;
|
|
*-*-*bsd*) ksysv_compile=no;;
|
|
*) ksysv_compile=yes;;
|
|
esac
|
|
AC_MSG_RESULT($ksysv_compile)
|
|
if test "$ksysv_compile" = "no"; then
|
|
DO_NOT_COMPILE="$DO_NOT_COMPILE ksysv"
|
|
fi
|