From bb04aaa8caf080358d8d673c911a843dded387d3 Mon Sep 17 00:00:00 2001 From: Christian Stimming Date: Wed, 3 Apr 2013 08:21:54 +0000 Subject: [PATCH] Win32 build: Add probably missing libgsf configure argument git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@22868 57a11ea4-9604-0410-9ed3-97b8803252fd --- packaging/win32/install-impl.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packaging/win32/install-impl.sh b/packaging/win32/install-impl.sh index 4801b709ad..3bf4370524 100644 --- a/packaging/win32/install-impl.sh +++ b/packaging/win32/install-impl.sh @@ -1008,13 +1008,15 @@ function inst_libgsf() { --prefix=$_LIBGSF_UDIR \ --disable-static \ --without-python \ + --with-gnome-vfs \ CPPFLAGS="${GNOME_CPPFLAGS}" \ LDFLAGS="${GNOME_LDFLAGS}" make rm -rf ${_LIBGSF_UDIR} make install qpopd - ${PKG_CONFIG} --exists libgsf-1 libgsf-gnome-1 || die "libgsf not installed correctly" + ${PKG_CONFIG} --exists libgsf-1 || die "libgsf not installed correctly: No libgsf-1" + ${PKG_CONFIG} --exists libgsf-gnome-1 || die "libgsf not installed correctly: No libgsf-gnome-1" fi }