--- rxvt-unicode/configure.ac 2007/07/25 22:41:45 1.62 +++ rxvt-unicode/configure.ac 2007/07/31 18:13:26 1.67 @@ -459,9 +459,8 @@ dnl# the only reasonable way to find libXpm is do-it-yourself dnl# only check if we want xpm-background -LIBAFTERIMAGE_CFLAGS= +AFTERIMAGE_CFLAGS= AFTERIMAGE_LIBS= -have_afterimage= AFTERIMAGE_VERSION= if test x$support_afterimage = xyes; then @@ -470,17 +469,16 @@ if test "x$afterimage_config" = "x" ; then AC_PATH_PROG(afterimage_config, afterimage-config, no) fi - AC_PROG_AWK - AC_MSG_CHECKING(for libAfterImage version >= 1.15 ) + AC_MSG_CHECKING(for libAfterImage version >= 1.15) AFTERIMAGE_VERSION=`$afterimage_config --version` - if test -n $AFTERIMAGE_VERSION ; then - LIBAFTERIMAGE_CFLAGS=`$afterimage_config --cflags` + if test -n "$AFTERIMAGE_VERSION" ; then + AFTERIMAGE_CFLAGS=`$afterimage_config --cflags` AFTERIMAGE_LIBS=`$afterimage_config --libs` if test "x$AFTERIMAGE_LIBS" != "x"; then - libai_ver_major=`echo $AFTERIMAGE_VERSION | $AWK -F . '{print $1}'` - libai_ver_minor=`echo $AFTERIMAGE_VERSION | $AWK -F . '{print $2}'` - if test "$libai_ver_major -gt 1 -o ($libai_ver_major -eq 1 -a $libai_ver_minor -ge 15)"; then - support_afterimage=yes; + libai_ver_major=`echo $AFTERIMAGE_VERSION | cut -f 1 -d .` + libai_ver_minor=`echo $AFTERIMAGE_VERSION | cut -f 2 -d .` + if test $libai_ver_major -gt 1 -o \( $libai_ver_major -eq 1 -a $libai_ver_minor -ge 15 \); then + support_afterimage=yes fi fi fi @@ -886,12 +884,10 @@ PERLLIB="`$PERL -MExtUtils::Embed -e ldopts`" PERLPRIVLIBEXP="`$PERL -MConfig -e 'print $Config{privlibexp}'`" else - AC_MSG_RESULT([no, unable to link]) - rxvt_perl_link=no + AC_MSG_ERROR([no, unable to link]) fi else - AC_MSG_RESULT([no working perl found, or perl not version >= 5.8]) - support_perl=no + AC_MSG_ERROR([no working perl found, or perl not version >= 5.8]) fi fi AC_SUBST(PERLLIB) @@ -919,7 +915,7 @@ AC_SUBST(X_LIBS) AC_SUBST(X_EXTRA_LIBS) -AC_SUBST(LIBAFTERIMAGE_CFLAGS) +AC_SUBST(AFTERIMAGE_CFLAGS) AC_SUBST(AFTERIMAGE_LIBS) AC_ARG_PROGRAM