X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;ds=sidebyside;f=configure.ac;h=a838c4917502f322a71e4898a55d2464b954a39e;hb=080d38e64fe2aaec17e3ff853682188196b429f9;hp=c2b972588fa3baf685176d3473ed28201155b766;hpb=ee226d0cbff4b3b30efc30c0e8f3ae7e4ce1516a;p=whenjobs.git diff --git a/configure.ac b/configure.ac index c2b9725..a838c49 100644 --- a/configure.ac +++ b/configure.ac @@ -15,7 +15,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -AC_INIT([whenjobs],0.0.1) +AC_INIT([whenjobs],[0.7.3]) AM_INIT_AUTOMAKE([foreign]) dnl Only used temporarily while whenjobs.spec is contained in the @@ -101,10 +101,16 @@ fi dnl Check for POD (for manual pages). AC_CHECK_PROG(PERLDOC,perldoc,perldoc) -if test "x$PERLDOC" = "xno"; then +if test "x$PERLDOC" = "x"; then AC_MSG_ERROR([You must install the perldoc program]) fi +dnl Check for mailx (for sending email). +AC_CHECK_PROG(MAILX,mailx,mailx) +if test "x$MAILX" = "x"; then + AC_MSG_ERROR([You must install the mailx program]) +fi + AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([Makefile daemon/Makefile @@ -112,6 +118,7 @@ AC_CONFIG_FILES([Makefile lib/Makefile tests/jobs/Makefile tests/parsing/Makefile + tests/variables/Makefile tools/Makefile whenjobs.spec]) AC_OUTPUT