diff options
author | Kaushik BV <kaushikbv@gluster.com> | 2011-07-15 01:20:08 +0000 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2011-07-17 07:46:18 -0700 |
commit | 3c6138dbf2ed6ebba6b8108be8f4999ff8226964 (patch) | |
tree | b0d4f0f18b2cee10785cd823fe2b387a0cdb3a4d /configure.ac | |
parent | f1b0e963976208cc93e69fc627a81a6f4ab1640b (diff) |
mgmt/Glusterd: Implementation volume set help/help-xml
Signed-off-by: Kaushik BV <kaushikbv@gluster.com>
Signed-off-by: Anand Avati <avati@gluster.com>
BUG: 2041 (volume set help option)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=2041
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index fcf03782e..3d326315d 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,5 @@ dnl Copyright (c) 2006-2010 Gluster, Inc. <http://www.gluster.com> + dnl This file is part of GlusterFS. dnl dnl GlusterFS is free software; you can redistribute it and/or modify @@ -318,6 +319,15 @@ AC_SUBST(SYNCDAEMON_COMPILE) AC_SUBST(SYNCDAEMON_SUBDIR) # end SYNCDAEMON section +#check if libxml is present if so enable HAVE_LIB_XML +echo -n "checking if libxml2 is present... " + +PKG_CHECK_MODULES([LIBXML2], [libxml-2.0 >= 2.6.19], + [echo "yes (features requiring libxml2 enabled)" AC_DEFINE(HAVE_LIB_XML, 1, [define if libxml2 is present])], + [echo "no"] ) + +AC_SUBST(LIBXML2_CFLAGS) +AC_SUBST(LIBXML2_LIBS) dnl FreeBSD > 5 has execinfo as a Ported library for giving a workaround dnl solution to GCC backtrace functionality |