build: Bump webkitgtk-sharp requirement

This commit is contained in:
Hylke Bons 2013-10-10 17:34:59 +02:00
parent d150a12812
commit 85126322cf
2 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@ SUBDIRS = Pixmaps
ASSEMBLY = SparkleShare
TARGET = exe
LINK = $(REF_SPARKLESHARE) $(NOTIFY_SHARP_LIBS) -r:../../bin/webkitgtk-sharp.dll
LINK = $(REF_SPARKLESHARE) $(NOTIFY_SHARP_LIBS) $(WEBKIT_SHARP_LIBS)
if HAVE_APP_INDICATOR
BUILD_DEFINES="-define:HAVE_APP_INDICATOR"

View file

@ -66,8 +66,8 @@ AC_ARG_ENABLE(appindicator,
OSNAME=`uname -s`
if test "$OSNAME" = "Linux" ; then
dnl check for webkit-sharp
PKG_CHECK_MODULES(WEBKIT_SHARP, webkit-sharp-1.0, have_webkit_sharp=yes, have_webkit_sharp=no)
dnl check for webkitgtk-sharp
PKG_CHECK_MODULES(WEBKIT_SHARP, webkitgtk-sharp-3.0, have_webkit_sharp=yes, have_webkit_sharp=no)
if test "x$have_webkit_sharp" = "xno" ; then
AC_ERROR("webkit-sharp is a required dependency: you need to install the appropriate devel package before you can compile")
fi