Tue Dec 21 15:15:53 PST 1999

(Mandrake)

added gettext check to autogen.sh


SVN revision: 1727
This commit is contained in:
Mandrake 1999-12-21 15:10:04 +00:00
parent e1fb92d1d5
commit 09edac8fd4
2 changed files with 16 additions and 3 deletions

View File

@ -1657,3 +1657,10 @@ Tue Dec 21 11:07:46 PST 1999
added support for freetype in regular location OR in freetype/ subdirectory added support for freetype in regular location OR in freetype/ subdirectory
(like the new versions) (like the new versions)
-------------------------------------------------------------------------------
Tue Dec 21 15:15:53 PST 1999
(Mandrake)
added gettext check to autogen.sh

View File

@ -12,15 +12,21 @@ DIE=0
echo echo
echo "You must have autoconf installed to compile Enlightenment." echo "You must have autoconf installed to compile Enlightenment."
echo "Download the appropriate package for your distribution," echo "Download the appropriate package for your distribution,"
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/autoconf"
DIE=1 DIE=1
} }
(automake --version) < /dev/null > /dev/null 2>&1 || { (automake --version) < /dev/null > /dev/null 2>&1 || {
echo echo
echo "You must have automake installed to compile Enlightenment." echo "You must have automake installed to compile Enlightenment."
echo "Get ftp://ftp.gnu.org/pub/gnu/automake-1.3.tar.gz" echo "Get it at ftp://ftp.gnu.org/pub/gnu/automake"
echo "(or a newer version if it is available)" DIE=1
}
(gettext --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have gettext installed to compile Enlightenment."
echo "Get ftp://ftp.gnu.org/pub/gnu/gettext"
DIE=1 DIE=1
} }