ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/configure.ac
(Generate patch)

Comparing deliantra/server/configure.ac (file contents):
Revision 1.102 by root, Fri Dec 7 14:27:27 2007 UTC vs.
Revision 1.114 by root, Fri Jan 25 17:58:39 2008 UTC

1dnl Process this file with autoconf to produce a configure script. 1dnl Process this file with autoconf to produce a configure script.
2 2
3AC_INIT([deliantra-server], [2.32], [support@deliantra.net]) 3AC_INIT([deliantra-server], [2.41], [support@deliantra.net])
4AC_CONFIG_AUX_DIR(utils) 4AC_CONFIG_AUX_DIR(utils)
5AC_CONFIG_SRCDIR([server/cfperl.xs]) 5AC_CONFIG_SRCDIR([server/cfperl.xs])
6AM_INIT_AUTOMAKE 6AM_INIT_AUTOMAKE
7AM_CONFIG_HEADER(include/autoconf.h) 7AM_CONFIG_HEADER(include/autoconf.h)
8 8
51 fi 51 fi
52fi 52fi
53 53
54for module_vers in \ 54for module_vers in \
55 "AnyEvent 2.6" \ 55 "AnyEvent 2.6" \
56 "BDB 1.3" \ 56 "BDB 1.43" \
57 "Compress::LZF 1.8" \ 57 "Compress::LZF 1.8" \
58 "Coro 4.13" \ 58 "Coro 4.37" \
59 "Coro::EV 2.1" \ 59 "Coro::EV 2.1" \
60 "Crossfire 1.13" \ 60 "Deliantra 1.13" \
61 "Digest::MD5 2.0" \ 61 "Digest::MD5 2.0" \
62 "EV 0.9" \ 62 "EV 2.0" \
63 "IO::AIO 2.51" \ 63 "IO::AIO 2.51" \
64 "JSON::XS 2.01" \ 64 "JSON::XS 2.01" \
65 "Net::IRC3 0.5" \ 65 "Net::IRC3 0.5" \
66 "Pod::POM 0.17" \ 66 "Pod::POM 0.17" \
67 "Safe::Hole 0.10" \ 67 "Safe::Hole 0.10" \
68 "Storable 2.0" \ 68 "Storable 2.0" \
69 "Time::HiRes 1.0" \ 69 "Time::HiRes 1.0" \
70 "URI 1.35" \ 70 "URI 1.35" \
71 "YAML::Syck 0.71" \
72 "YAML 0.62" \ 71 "YAML 0.66" \
73; do 72; do
74 set -- $module_vers 73 set -- $module_vers
75 module=$1 74 module=$1
76 minvers=$2 75 minvers=$2
77 AC_MSG_CHECKING(for $module perl module version $minvers or higher) 76 AC_MSG_CHECKING(for $module perl module version $minvers or higher)
78 if $PERL -M$module -e0 >/dev/null 2>&1; then 77 if $PERL -M$module -e0 >/dev/null 2>&1; then
79 version=`$PERL -M$module -e "print \\$$module::VERSION"` 78 version=`$PERL -M$module -e "print \\$$module::VERSION"`
80 if $PERL -M$module -e "VERSION $module $minvers" >/dev/null 2>&1; then 79 if $PERL -M$module -e "\$$module::VERSION >= $minvers or die" >/dev/null 2>&1; then
81 AC_MSG_RESULT([ok, version $version]) 80 AC_MSG_RESULT([ok, version $version])
82 else 81 else
83 AC_MSG_ERROR([no, installed version is $version]) 82 AC_MSG_ERROR([no, installed version is $version])
84 fi 83 fi
85 else 84 else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines