diff options
author | Ted Gould <ted@gould.cx> | 2009-12-17 08:39:26 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2009-12-17 08:39:26 -0600 |
commit | 1443165313bb51b60901fd9eebc0e587b418543d (patch) | |
tree | 025730377656987180ba6657277f2253c421c135 /configure.ac | |
parent | d293bbf6abc78e6ca988e8bd68485dd641d87f26 (diff) | |
parent | 4d95601ab8c0a97fff79b7362540664d200feb41 (diff) | |
download | libayatana-appindicator-1443165313bb51b60901fd9eebc0e587b418543d.tar.gz libayatana-appindicator-1443165313bb51b60901fd9eebc0e587b418543d.tar.bz2 libayatana-appindicator-1443165313bb51b60901fd9eebc0e587b418543d.zip |
* Upstream updates:
* Mono build fixes.
* Mono metadata file cleanups.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 1ff33d8..114b42b 100644 --- a/configure.ac +++ b/configure.ac @@ -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) |