diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2012-11-15 21:47:20 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2012-11-15 21:47:20 -0500 |
commit | eb203b01c9ee729e603289a63f881d9866f61ea6 (patch) | |
tree | f4210538531950ead86a55b24a0417a125897ebd /configure.ac | |
parent | c47f33a498f9c824a48c23987b312b3176602f7f (diff) |
Final step of revamping the build system
The structure of the source tree is basically correct and this is
about as far as we can go without hacking at the C code.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 640255e971..7fa1686904 100644 --- a/configure.ac +++ b/configure.ac @@ -29,9 +29,14 @@ AC_PROG_INSTALL AC_PROG_LN_S AC_PROG_MAKE_SET +GTK_DOC_CHECK([1.18],[--flavour no-tmpl]) + AC_PATH_PROG([M4], [m4]) AC_PATH_PROG([XSLTPROC], [xsltproc]) -GTK_DOC_CHECK([1.18],[--flavour no-tmpl]) +AC_PATH_TOOL(GPERF, gperf) +if test -z "$GPERF" ; then + AC_MSG_ERROR([*** gperf not found]) +fi # TODO check this --- we don't want kmod necessarily # PKG_CHECK_MODULES(KMOD, [libkmod >= 5]) @@ -265,4 +270,5 @@ AC_CONFIG_FILES([Makefile src/test/Makefile src/udev/Makefile test/Makefile]) + AC_OUTPUT |