summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-08-14 09:05:49 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-08-16 22:13:27 (GMT)
commit516b334bd963452578367b2cd354db6c39ba99c9 (patch)
treef24aa85a28be562ea64929fe298a9851c1a74965 /autoconf/ax_libxml2.m4
parent7fdc3e80028fd93fcc0111570a01cd78282cd41a (diff)
downloadswift-516b334bd963452578367b2cd354db6c39ba99c9.zip
swift-516b334bd963452578367b2cd354db6c39ba99c9.tar.bz2
Remove autoconf/make files.
Diffstat (limited to 'autoconf/ax_libxml2.m4')
-rw-r--r--autoconf/ax_libxml2.m428
1 files changed, 0 insertions, 28 deletions
diff --git a/autoconf/ax_libxml2.m4 b/autoconf/ax_libxml2.m4
deleted file mode 100644
index f9e9d4e..0000000
--- a/autoconf/ax_libxml2.m4
+++ /dev/null
@@ -1,28 +0,0 @@
-# Author: Remko Tronçon
-
-AC_DEFUN([AX_LIBXML],
-[
- AC_ARG_WITH(
- [libxml],
- AC_HELP_STRING([--with-libxml=@<:@ARG@:>@],[Path to LibXML installation]),
- [
- WITH_LIBXML="$withval"
- if test "$withval" != "no" -a "$withval" != "yes"; then
- LIBXML_CPPFLAGS="-I$withval/include/libxml2"
- LIBXML_LDFLAGS="-L$withval/lib"
- CPPFLAGS="$CPPFLAGS $LIBXML_CPPFLAGS"
- LDFLAGS="$LDFLAGS $LIBXML_LDFLAGS"
- fi
- ],
- [WITH_LIBXML="yes"])
-
- if test "$WITH_LIBXML" != "no"; then
- AC_CHECK_HEADER(libxml/parser.h,
- [
- HAVE_LIBXML=yes
- # TODO: Check if this lib exists
- LIBXML_LIBS="-lxml2"
- ],
- [])
- fi
-])