View | Details | Raw Unified
Collapse All | Expand All

(-) taglib-sharp-2.0.2.0/configure.ac (-4 / +14 lines)
 Lines 83-92    Link Here 
	AM_CONDITIONAL(BUILD_DOCS, false)
	AM_CONDITIONAL(BUILD_DOCS, false)
fi
fi
PKG_CHECK_MODULES(GNOME_SHARP, gnome-sharp-2.0, have_gnome_sharp=yes, have_gnome_sharp=no)
AC_ARG_ENABLE([gnome-sharp],
if test "x$have_gnome_sharp" = "xyes"; then
	      AC_HELP_STRING([--enable-gnome-sharp], [Build support for GNOME]),
	AC_SUBST(GNOME_SHARP_LIBS)
	      enable_gnome_sharp=$enableval,
	AM_CONDITIONAL(HAVE_GNOME_SHARP, true)
	      enable_gnome_sharp=no)
if test "x$enable_gnome_sharp" = "xyes"; then
	PKG_CHECK_MODULES(GNOME_SHARP, gnome-sharp-2.0, have_gnome_sharp=yes, have_gnome_sharp=no)
	if test "x$have_gnome_sharp" = "xyes"; then
		AC_SUBST(GNOME_SHARP_LIBS)
		AM_CONDITIONAL(HAVE_GNOME_SHARP, true)
	else
		AC_MSG_ERROR([Could not find gnome-sharp dependencies])
		AM_CONDITIONAL(HAVE_GNOME_SHARP, false)
	fi
else
else
	AM_CONDITIONAL(HAVE_GNOME_SHARP, false)
	AM_CONDITIONAL(HAVE_GNOME_SHARP, false)
fi
fi