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
This commit is contained in:
Christian Stimming 2013-04-03 08:21:54 +00:00
parent 9d70996b8d
commit bb04aaa8ca

View File

@ -1008,13 +1008,15 @@ function inst_libgsf() {
--prefix=$_LIBGSF_UDIR \ --prefix=$_LIBGSF_UDIR \
--disable-static \ --disable-static \
--without-python \ --without-python \
--with-gnome-vfs \
CPPFLAGS="${GNOME_CPPFLAGS}" \ CPPFLAGS="${GNOME_CPPFLAGS}" \
LDFLAGS="${GNOME_LDFLAGS}" LDFLAGS="${GNOME_LDFLAGS}"
make make
rm -rf ${_LIBGSF_UDIR} rm -rf ${_LIBGSF_UDIR}
make install make install
qpopd 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 fi
} }