Fix error message to reflect that one needs gettext 0.10.38 to compile

2001-08-06  Daniel Egger  <egger@suse.de>

        * autogen.sh: Fix error message to reflect that one needs
	gettext 0.10.38 to compile GIMP.
This commit is contained in:
Daniel Egger 2001-08-06 11:37:10 +00:00 committed by Daniel Egger
parent 30d2fdef07
commit 028f5e2d0c
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-08-06 Daniel Egger <egger@suse.de>
* autogen.sh: Fix error message to reflect that one needs
gettext 0.10.38 to compile GIMP.
2001-08-06 Michael Natterer <mitch@gimp.org>
* configure.in

View File

@ -56,7 +56,7 @@ VER=`gettextize --version | grep gettext | sed "s/.* \([0-9.]*\)[a-z]*$/\1/;s/0.
if expr $VER \>= 10.38 >/dev/null; then
echo "looks OK."
else
echo "too old! (Need (0.)10.35, have $VER)"
echo "too old! (Need (0.)10.38, have $VER)"
DIE=1
fi