blob: e97862c3767078bc6abf04e418bca4cb16f55e2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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
|