diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2012-11-25 15:37:04 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2012-11-25 15:37:04 -0500 |
commit | 518c07d5b4b40c8e580897755c400910677d9e21 (patch) | |
tree | 26aed2ea1cbc512d45823db70b61d0b68fa6376a /configure.ac | |
parent | e0551bfe664fd7bf97718150b8210406be5a1636 (diff) |
Fix compilation of gudev and introspection
This commit the related issues of building gudev with/out
introspection. It draws on suggestions from nvinson in
https://github.com/gentoo/eudev/pull/20
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 90d5bae195..5562348f66 100644 --- a/configure.ac +++ b/configure.ac @@ -158,11 +158,8 @@ AC_SUBST([sharepkgconfigdir],[${datadir}/pkgconfig]) # ------------------------------------------------------------------------------ -have_introspection=no -AC_ARG_ENABLE([introspection], - [AS_HELP_STRING([--without-introspection], [Disable man page index and systemd-python (default: no)])]) GOBJECT_INTROSPECTION_CHECK([1.31.1]) -AM_CONDITIONAL([HAVE_INTROSPECTION], [test "$have_introspection" = "yes"]) +AM_CONDITIONAL([HAVE_INTROSPECTION], [test "$enable_introspection" = "yes"]) # ------------------------------------------------------------------------------ have_selinux=no |