summaryrefslogtreecommitdiffstats
path: root/configure.in.in
blob: acdb02064f4f3604d0ca1200e394b7998b91a521 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#MIN_CONFIG(3.0.0)

AM_INIT_AUTOMAKE(kima, 0.7.3.2)
AC_C_BIGENDIAN
AC_CHECK_KDEMAXPATHLEN

dnl check for (optional) nvcontrol
AC_ARG_WITH(nvcontrol,
  AC_HELP_STRING([--with-nvcontrol=nvcontrol-dir],[uses libXNVCtrl.a instead of nvidia-settings for the NVidia thermal source]),
  [with_nvcontrol=yes
   nvcontrol_CFLAGS=-I$withval
   nvcontrol_LIBS="-L$withval -lXNVCtrl"
   AC_CHECK_FILE([$withval/NVCtrlLib.h], , AC_MSG_ERROR([Did not find NVCtrlLib.h. Make sure that you passed the correct path for NVControl. See README for details.]))
   AC_DEFINE(HAVE_NVCONTROL, , [defined if compiling with NVControl support])])
AC_SUBST(nvcontrol_CFLAGS)
AC_SUBST(nvcontrol_LIBS)

dnl check for required hal minimal version 0.5.5
PKG_CHECK_MODULES(libhal, hal >= 0.5.5)
AC_SUBST(libhal_CFLAGS)
AC_SUBST(libhal_LIBS)