--- deliantra/server/configure.ac 2009/09/15 19:06:02 1.164 +++ deliantra/server/configure.ac 2010/05/05 09:05:03 1.175 @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([deliantra-server], [2.80], [support@deliantra.net]) +AC_INIT([deliantra-server], [2.93], [support@deliantra.net]) AC_CONFIG_AUX_DIR(utils) AC_CONFIG_SRCDIR([server/cfperl.xs]) AM_INIT_AUTOMAKE @@ -42,17 +42,15 @@ AC_PATH_PROG(PERL, perl5.10.1) if test -z "$PERL"; then - AC_PATH_PROG(PERL, perl5.10.0) + AC_PATH_PROG(PERL, perl) if test -z "$PERL"; then - AC_PATH_PROG(PERL, perl) - if test -z "$PERL"; then - AC_MSG_ERROR([perl 5.10 or higher must be in your PATH, check the README]) - fi + AC_MSG_ERROR([perl 5.10.1 or higher must be in your PATH, check the README]) fi fi for module_vers in \ - "AnyEvent 4.22" \ + "common::sense 3.2" \ + "AnyEvent 5.2" \ "AnyEvent::AIO 0" \ "AnyEvent::BDB 0" \ "BDB 1.8" \ @@ -63,7 +61,7 @@ "Digest::MD5 2.0" \ "EV 3.41" \ "Guard 0.5" \ - "IO::AIO 3.25" \ + "IO::AIO 3.3" \ "JSON::XS 2.01" \ "AnyEvent::IRC 0.6" \ "Pod::POM 0.17" \ @@ -71,7 +69,7 @@ "Storable 2.0" \ "Time::HiRes 1.0" \ "URI 1.35" \ - "YAML 0.66" \ + "YAML::XS 0.32" \ ; do set -- $module_vers module=$1 @@ -127,7 +125,7 @@ dnl fi AC_MSG_CHECKING(for $PERL suitability) -if $PERL -MExtUtils::Embed -e "use 5.10.0" >/dev/null 2>&1; then +if $PERL -MExtUtils::Embed -e "use 5.10.1" >/dev/null 2>&1; then save_CXXFLAGS="$CXXFLAGS" save_LIBS="$LIBS" xPERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts`" @@ -157,7 +155,7 @@ AC_MSG_ERROR([no, unable to link test program]) fi else - AC_MSG_ERROR([no working perl found, or perl not version >= 5.10]) + AC_MSG_ERROR([no working perl found, or perl not version >= 5.10.1]) fi AC_SUBST(PERLLIB) AC_SUBST(PERLFLAGS)