Hostinfo day 1: Mainly documentation.
[virt-hostinfo.git] / configure.ac
index ba55b09..cbb64c7 100644 (file)
@@ -36,7 +36,29 @@ AC_SYS_LARGEFILE
 dnl Check for required packages using pkg-config.
 PKG_CHECK_MODULES([HOSTINFOD],[apr-1 >= 1.3])
 
+dnl Check for Perl and POD.
+AC_CHECK_PROG([PERL],[perl],[perl],[no])
+AC_CHECK_PROG([POD2MAN],[pod2man],[pod2man],[no])
+test "x$POD2MAN" = "xno" &&
+     AC_MSG_ERROR([pod2man must be installed])
+AC_CHECK_PROG([POD2TEXT],[pod2text],[pod2text],[no])
+test "x$POD2TEXT" = "xno" &&
+     AC_MSG_ERROR([pod2text must be installed])
+
 dnl Produce output files.
 AC_CONFIG_HEADERS([config.h])
-AC_CONFIG_FILES([Makefile hostinfod/Makefile])
+AC_CONFIG_FILES([Makefile
+       hostinfod/Makefile
+       conf/Makefile
+       conf/hostinfo.conf
+       conf/guests.conf
+       hostinfo-status/Makefile
+       hostinfo-set/Makefile
+       hostinfo-test/Makefile])
+AC_CONFIG_FILES([hostinfo-status/hostinfo-status:hostinfo-status/hostinfo-status.pl],
+       [chmod 0555 hostinfo-status/hostinfo-status])
+AC_CONFIG_FILES([hostinfo-set/hostinfo-set:hostinfo-set/hostinfo-set.pl],
+       [chmod 0555 hostinfo-set/hostinfo-set])
+AC_CONFIG_FILES([hostinfo-test/hostinfo-test:hostinfo-test/hostinfo-test.pl],
+       [chmod 0555 hostinfo-test/hostinfo-test])
 AC_OUTPUT