gimp-perl now works with 5.004

This commit is contained in:
Marc Lehmann
1999-02-28 22:50:23 +00:00
parent 81302d235f
commit 2e0e6892be
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
Sun Feb 28 23:48:17 CET 1999 Marc Lehmann <pcg@goof.com>
* configure.in: loosened check for perl version, perl5.004 is now
supposed to work with gimp-perl.
Sat Feb 27 23:25:55 EST 1999 Adrian Likins <adrian@gimp.org>
* plug-ins/script-fu/scripts/xach-effect.scm: removed

View File

@ -529,9 +529,9 @@ fi
dnl This is for the gimp-perl plug-in
AC_ARG_ENABLE(perl, [ --disable-perl do not build perl extension [by default enabled]])
if eval "test x$enable_perl != xno"; then
AC_CHECK_PROGS(PERL,perl perl5.005,perl)
AC_MSG_CHECKING(for perl version >= 5.005)
if test "`$PERL -e 'print $]>=5.005'`" = "1"; then
AC_CHECK_PROGS(PERL,perl perl5.004,perl)
AC_MSG_CHECKING(for perl version >= 5.004)
if test "`$PERL -e 'print $]>=5.004'`" = "1"; then
AC_MSG_RESULT(yes)
dnl perl does not allow VPATH builds (yet)
@ -592,7 +592,7 @@ EOF
else
GIMP_PERL=
AC_MSG_RESULT(no)
AC_MSG_WARN(*** gimp-perl plug-in won't be build (perl5.005 or higher required) ***)
AC_MSG_WARN(*** gimp-perl plug-in won't be build (perl5.004 or higher required) ***)
fi
fi