1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2024-10-26 12:25:09 +03:00

update error message for missing automake

2002-08-22  Havoc Pennington  <hp@pobox.com>

	* autogen.sh: update error message for missing automake
This commit is contained in:
Havoc Pennington 2002-08-22 13:59:35 +00:00 committed by Havoc Pennington
parent 08cccaa05a
commit 84ec40a51c
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2002-08-22 Havoc Pennington <hp@pobox.com>
* autogen.sh: update error message for missing automake
Thu Aug 22 11:45:50 CEST 2002 Daniel Veillard <daniel@veillard.com>
* python/Makefile.am: typo in target name resulted in libxml2.py

View File

@ -26,9 +26,14 @@ DIE=0
(automake-1.4 --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have automake installed to compile libxml."
echo "Get ftp://ftp.cygnus.com/pub/home/tromey/automake-1.2d.tar.gz"
echo "(or a newer version if it is available)"
echo "You must have latest automake 1.4 installed to compile libxml,"
echo "or alternatively create a symlink from automake-1.4 to "
echo "plain automake."
echo "Newer versions of automake 1.4 come with the symlink "
echo "pregenerated. This will allow you to compile libxml "
echo "while also installing newer automakes such as 1.6."
echo "Get ftp://sources.redhat.com/pub/automake/automake-1.4l.tar.gz"
echo "(or a newer version in the 1.4 series if it is available)."
DIE=1
}