diff options
author | Dan Winship <danw@src.gnome.org> | 2000-08-03 06:26:45 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-08-03 06:26:45 +0800 |
commit | a0281d1b1860f650ba2293e422cbc9ec7ee2012b (patch) | |
tree | bbeff35e0957b12fd53be52f87c7ddc1c7377108 /macros/gnome-xml-check.m4 | |
parent | 83cbc862e6981bd06b406a0ae01e50d15a3502e7 (diff) | |
download | gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar.gz gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar.bz2 gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar.lz gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar.xz gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.tar.zst gsoc2013-evolution-a0281d1b1860f650ba2293e422cbc9ec7ee2012b.zip |
Fix "cvs rm -rf" lossage.
svn path=/trunk/; revision=4480
Diffstat (limited to 'macros/gnome-xml-check.m4')
-rw-r--r-- | macros/gnome-xml-check.m4 | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/macros/gnome-xml-check.m4 b/macros/gnome-xml-check.m4 new file mode 100644 index 0000000000..4bc91d124d --- /dev/null +++ b/macros/gnome-xml-check.m4 @@ -0,0 +1,30 @@ +dnl +dnl GNOME_XML_HOOK (script-if-xml-found, failflag) +dnl +dnl If failflag is "failure", script aborts due to lack of XML +dnl +dnl Check for availability of the libxml library +dnl the XML parser uses libz if available too +dnl + +AC_DEFUN([GNOME_XML_HOOK],[ + AC_PATH_PROG(GNOME_CONFIG,gnome-config,no) + if test "$GNOME_CONFIG" = no; then + if test x$2 = xfailure; then + AC_MSG_ERROR(Could not find gnome-config) + fi + fi + AC_CHECK_LIB(xml, xmlNewDoc, [ + $1 + GNOME_XML_LIB=`$GNOME_CONFIG --libs xml` + ], [ + if test x$2 = xfailure; then + AC_MSG_ERROR(Could not link sample xml program) + fi + ], `$GNOME_CONFIG --libs xml`) + AC_SUBST(GNOME_XML_LIB) +]) + +AC_DEFUN([GNOME_XML_CHECK], [ + GNOME_XML_HOOK([],failure) +]) |