From: znek Date: Fri, 21 Apr 2006 17:24:26 +0000 (+0000) Subject: minor build fix X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f7c94ad0b0f6230d3f9d708e99909f4fbb15c326;p=sope minor build fix git-svn-id: http://svn.opengroupware.org/SOPE/trunk@1250 e4a50df8-12e2-0310-a44c-efbce7f8a7e3 --- diff --git a/sope-xml/ChangeLog b/sope-xml/ChangeLog index 0319e7b7..e286dce0 100644 --- a/sope-xml/ChangeLog +++ b/sope-xml/ChangeLog @@ -1,3 +1,8 @@ +2006-04-21 Marcus Mueller + + * GNUmakefile: reverse test for libxml2 existence flag - this allows + for building libxml2 even if we didn't run configure :-) + 2005-08-26 Helge Hess * all makefiles: add common.h as the precompiled header file diff --git a/sope-xml/GNUmakefile b/sope-xml/GNUmakefile index 11c6f2a9..5e7940be 100644 --- a/sope-xml/GNUmakefile +++ b/sope-xml/GNUmakefile @@ -14,7 +14,7 @@ SUBPROJECTS = \ SUBPROJECTS += STXSaxDriver -ifeq ($(HAS_LIBRARY_xml2),yes) +ifneq ($(HAS_LIBRARY_xml2),no) SUBPROJECTS += libxmlSAXDriver endif