diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 1ff33d8..2992df2 100644 --- a/configure.ac +++ b/configure.ac @@ -1,11 +1,11 @@ -AC_INIT(indicator-application, 0.0.4, ted@canonical.com) +AC_INIT(indicator-application, 0.0.5, ted@canonical.com) AC_COPYRIGHT([Copyright 2009 Canonical]) AC_PREREQ(2.53) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(indicator-application, 0.0.4) +AM_INIT_AUTOMAKE(indicator-application, 0.0.5) AM_MAINTAINER_MODE @@ -76,8 +76,20 @@ if test "x$CSC" = "xno" ; then AC_MSG_ERROR([No Mono compiler found.]) fi +AC_PATH_PROG(GACUTIL, gacutil, no) +if test "x$GACUTIL" = "xno" ; then + AC_MSG_ERROR([No gacutil tool found]) +fi + +AC_PATH_PROG(SN, sn, no) +if test "x$SN" = "xno" ; then + AC_MSG_ERROR([No sn tool found]) +fi + AC_SUBST(RUNTIME) AC_SUBST(CSC) +AC_SUBST(GACUTIL) +AC_SUBST(SN) AC_SUBST(LIB_PREFIX) AC_SUBST(LIB_SUFFIX) AC_SUBST(GENERATED_SOURCES) |