~zeitgeist-dataproviders/zeitgeist-datasources/git

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Manish Sinha
  • Date: 2011-10-24 01:35:00 UTC
  • Revision ID: git-v1:397827e6a6ce09298841fdcef9ce2e1a0e22a9c0
Added Makefile.am for monodevelop

Other changes:
* Removed the dependency on xbuild as tomboy datasource was not using it
* Move from gmcs to dmcs in tomboy datasource
* Monodevelop addin cannot do local-install
* Updated .bzrignore to stop bothering with those output files

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
        error_on_bad_plugin="0"
87
87
fi
88
88
 
89
 
AC_PATH_PROG(GMCS, gmcs, no)
90
 
AC_PATH_PROG(XBUILD, xbuild, no)
 
89
AC_PATH_PROG(DMCS, dmcs, no)
91
90
 
92
91
# Check for plugin-specific requirements and error if necessary
93
92
for plugin in ${used_plugins}; do
174
173
                                ENABLE_ZEITGEIST_SHARP=yes, ENABLE_ZEITGEIST_SHARP=no)
175
174
                        PKG_CHECK_MODULES(MONODEVELOP, monodevelop, 
176
175
                                HAS_MONODEVELOP=yes, HAS_MONODEVELOP=no)
 
176
                        PKG_CHECK_MODULES(MONO_ADDINS, mono-addins, 
 
177
                                HAS_MONO_ADDINS=yes, HAS_MONO_ADDINS=no)
177
178
 
178
179
                        if test "${ENABLE_ZEITGEIST_SHARP}" = "no" ; then
179
180
                                plugin_error_or_ignore "zeitgeist-sharp package not found"
183
184
                                plugin_error_or_ignore "You need to install monodevelop"
184
185
                                continue
185
186
                        fi
 
187
                        if test "x$HAS_MONO_ADDINS" = "xno"; then
 
188
                                plugin_error_or_ignore "You need to install mono-addins"
 
189
                                continue
 
190
                        fi
186
191
                        AC_SUBST(MONODEVELOP_LIBS)
 
192
                        AC_SUBST(MONO_ADDINS_LIBS)
187
193
                ;;
188
194
                npapi-plugin)
189
195
                        if test "${HAVE_LIBZG}" != "yes" ; then
212
218
                                plugin_error_or_ignore "You need to install tomboy"
213
219
                                continue
214
220
                        fi
215
 
                        if test "x$GMCS" = "xno"; then
216
 
                                plugin_error_or_ignore "You need to install gmcs"
217
 
                                continue
218
 
                        fi
219
 
                        if test "x$XBUILD" = "xno"; then
220
 
                          plugin_error_or_ignore "You need to install xbuild for tomboy"
 
221
                        if test "x$DMCS" = "xno"; then
 
222
                                plugin_error_or_ignore "You need to install dmcs"
221
223
                                continue
222
224
                        fi
223
225
                        if test "x$HAS_GTK_SHARP" = "xno"; then