[grisbi-cvs] [SCM] grisbi branch, master, updated. 4024100675ca8dbe4ed04a9375dac63cb2e738ea

Rémi Cardona nobody at users.sourceforge.net
Sun Jun 27 18:44:40 CEST 2010


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "grisbi".

The branch, master has been updated
       via  4024100675ca8dbe4ed04a9375dac63cb2e738ea (commit)
      from  6945aea0b9e0877c30bd6e5590eab15a48879d44 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 4024100675ca8dbe4ed04a9375dac63cb2e738ea
Author: Rémi Cardona <remi at gentoo.org>
Date:   Sun Jun 27 18:42:13 2010 +0200

    build: fix stupid logic mistake in openssl/libxml2 handling

-----------------------------------------------------------------------

Changes:
diff --git a/configure.in b/configure.in
index 86aaf5b..5a379fc 100644
--- a/configure.in
+++ b/configure.in
@@ -92,7 +92,7 @@ if test "$build_libxml2" != no; then
 else
 	build_libxml2=no
 fi
-if test "$build_libxml2" = yes; then
+if test "$build_libxml2" = no; then
 	AC_DEFINE(NOXML2, 1, [Define if libxml2 support is disabled])
 fi
 AM_CONDITIONAL(HAVE_XML2, [test "$build_libxml2" = yes])
@@ -115,7 +115,7 @@ if test "$build_openssl" != no; then
 else
 	build_openssl=no
 fi
-if test "$build_openssl" = yes; then
+if test "$build_openssl" = no; then
 	AC_DEFINE(NOSSL, 1, [Define if OpenSSL support is disabled])
 fi
 AM_CONDITIONAL(HAVE_SSL, [test "$build_openssl" = yes])


hooks/post-receive
-- 
grisbi


More information about the cvs mailing list