Add hacks to build on my machine

This commit is contained in:
Hylke Bons 2013-10-10 17:42:34 +02:00
parent ee9efa0917
commit 94b7877f6d
2 changed files with 4 additions and 4 deletions

View file

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

View file

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