dolphin/kinfocenter/info/configure.in.in
Allen Winter 8663dfb2ba Move the kcontrol/infocenter kcm's from workspace to apps/kinfocenter.
svn path=/trunk/KDE/kdebase/apps/; revision=769694
2008-02-01 21:00:31 +00:00

23 lines
566 B
Plaintext

# libmach for Tru64
# linux/raw.h for Linux
# devinfo.h, libdevinfo for the list of {IRQ,DMA,IOPORTS/MEMRANGES} for FreeBSD
case "$host" in
*-*-osf*)
AC_CHECK_LIB(mach, vm_statistics, LIB_TRU64_MACH="-lmach")dnl
;;
*-*-linux*)
AC_CHECK_HEADERS(linux/raw.h sys/raw.h)dnl
;;
*-*-freebsd*)
AC_CHECK_HEADERS(devinfo.h)
AC_CHECK_LIB(devinfo, devinfo_foreach_rman, LIBDEVINFO="-ldevinfo")
;;
esac
AC_SUBST(LIB_TRU64_MACH)
AC_HAVE_GL( have_gl=yes, have_gl=no )
AM_CONDITIONAL(COMPILE_GL_INFO, test x$have_gl = xyes)
KDE_CHECK_LONG_LONG