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.
17 lines
390 B
17 lines
390 B
15 years ago
|
DO_NOT_COMPILE="$DO_NOT_COMPILE kmobile"
|
||
|
|
||
|
AC_CHECK_HEADERS(baudboy.h,,,
|
||
|
[
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/stat.h>
|
||
|
#include <fcntl.h>
|
||
|
#define inline __inline__
|
||
|
])
|
||
|
AC_CHECK_HEADERS(lockdev.h)
|
||
|
AC_CHECK_LIB(lockdev, dev_lock, [ LIB_LOCKDEV="-llockdev" ])
|
||
|
dnl We don't need liblockdev if we have baudboy working
|
||
|
if [[ -n "$HAVE_BAUDBOY_H" ]]; then
|
||
|
LIB_LOCKDEV=""
|
||
|
fi
|
||
|
AC_SUBST(LIB_LOCKDEV)
|