diff options
author | Mike Hommey <mh@glandium.org> | 2004-05-18 09:05:27 +0000 |
---|---|---|
committer | Mike Hommey <mh@glandium.org> | 2004-05-18 09:05:27 +0000 |
commit | 8f2f2a8386f41537158edb1c15955f176c61265e (patch) | |
tree | 507cb956471bbfc589c3a20da2415b199063d6cd /autogen.sh | |
parent | ee4e24c6210ad1795eaff631ecfd0b58ea21541f (diff) | |
download | libxml2-debian/2.6.10-1.tar.gz |
Added the autogen.sh taken from libxslt and ran it.debian/2.6.10-1
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..e9b3b2e --- /dev/null +++ b/autogen.sh @@ -0,0 +1,32 @@ +#!/bin/sh +## ---------------------------------------------------------------------- +## autogen.sh : refresh GNU autotools toolchain for libxml2 +## ---------------------------------------------------------------------- +## Requires: autoconf (2.5x), automake1.8, libtool (1.5.x) +## ---------------------------------------------------------------------- + +## ---------------------------------------------------------------------- +set -e + +## ---------------------------------------------------------------------- +libtoolize --force --copy + +## ---------------------------------------------------------------------- +aclocal-1.8 + +## ---------------------------------------------------------------------- +autoheader + +## ---------------------------------------------------------------------- +automake-1.8 --foreign --add-missing --force-missing --copy + +## ---------------------------------------------------------------------- +autoconf + +# clean up the junk that was created +rm -rf autom4te.cache + +## ---------------------------------------------------------------------- +exit 0 + +## ---------------------------------------------------------------------- |