configure: static-uinput should be disabled by default!
[vd_agent/hramrach.git] / configure.ac
blob0ac950526c2395643bd854b1c899583ecbc3afec
1 AC_PREREQ(2.59)
2 AC_INIT([spice-vdagent], [0.8.2])
3 AC_CONFIG_SRCDIR([configure.ac])
5 AM_CONFIG_HEADER([src/config.h])
7 AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip subdir-objects])
8 m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
10 AC_PROG_CC
11 AM_PROG_CC_C_O
12 AC_HEADER_STDC
13 AC_PROG_INSTALL
14 AC_PROG_LN_S
15 AC_DEFINE(_GNU_SOURCE, [1], [Enable GNU extensions])
17 AC_ARG_ENABLE([console-kit],
18               [AS_HELP_STRING([--enable-console-kit], [Enable ConsoleKit use (default: yes)])],
19               [enable_console_kit="$enableval"],
20               [enable_console_kit="yes"])
22 AC_ARG_ENABLE([pciaccess],
23               [AS_HELP_STRING([--enable-pciaccess], [Enable libpciaccess use for auto generation of Xinerama xorg.conf (default: yes)])],
24               [enable_pciaccess="$enableval"],
25               [enable_pciaccess="yes"])
27 AC_ARG_ENABLE([static-uinput],
28               [AS_HELP_STRING([--enable-statis-uinput], [Enable use of a fixed, static uinput device for X-servers without hotplug support (default: no)])],
29               [enable_static_uinput="$enableval"],
30               [enable_static_uinput="no"])
32 PKG_PROG_PKG_CONFIG
33 PKG_CHECK_MODULES(X, [xfixes xrandr xinerama x11])
34 PKG_CHECK_MODULES(SPICE, [spice-protocol >= 0.8.0])
36 if test x"$enable_console_kit" = "xyes" ; then
37     PKG_CHECK_MODULES(DBUS, [dbus-1])
38     AC_DEFINE([HAVE_CONSOLE_KIT], [1], [If defined, vdagentd will be compiled with ConsoleKit support] )
40 AM_CONDITIONAL(HAVE_CONSOLE_KIT, test x"$enable_console_kit" = "xyes")
42 if test x"$enable_pciaccess" = "xyes" ; then
43     PKG_CHECK_MODULES(PCIACCESS, [pciaccess >= 0.10])
44     AC_DEFINE([HAVE_PCIACCESS], [1], [If defined, vdagentd will be compiled with pciaccess support] )
46 AM_CONDITIONAL(HAVE_PCIACCESS, test x"$enable_pciaccess" = "xyes")
48 if test x"$enable_static_uinput" = "xyes" ; then
49     AC_DEFINE([WITH_STATIC_UINPUT], [1], [If defined, vdagentd will use a static uinput device] )
52 AC_CONFIG_FILES([
53 Makefile
55 AC_OUTPUT