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.77 by root, Sun Jun 10 02:51:45 2007 UTC vs.
Revision 1.84 by root, Sat Aug 4 17:48:15 2007 UTC

59 "Coro::Event 2.1" \ 59 "Coro::Event 2.1" \
60 "Crossfire 0.99" \ 60 "Crossfire 0.99" \
61 "Digest::MD5 2.0" \ 61 "Digest::MD5 2.0" \
62 "Event 1.08" \ 62 "Event 1.08" \
63 "IO::AIO 2.4" \ 63 "IO::AIO 2.4" \
64 "JSON::XS 1.21" \ 64 "JSON::XS 1.41" \
65 "Net::IRC3 0.5" \
65 "Pod::POM 0.17" \ 66 "Pod::POM 0.17" \
66 "Safe::Hole 0.10" \ 67 "Safe::Hole 0.10" \
67 "Storable 2.0" \ 68 "Storable 2.0" \
68 "Time::HiRes 1.0" \ 69 "Time::HiRes 1.0" \
69 "YAML::Syck 0.71" \ 70 "YAML::Syck 0.71" \
71 "YAML 0.62" \
70; do 72; do
71 set -- $module_vers 73 set -- $module_vers
72 module=$1 74 module=$1
73 minvers=$2 75 minvers=$2
74 AC_MSG_CHECKING(for $module perl module version $minvers or higher) 76 AC_MSG_CHECKING(for $module perl module version $minvers or higher)
75 if $PERL -M$module -e0 >/dev/null 2>&1; then 77 if $PERL -M$module -e0 >/dev/null 2>&1; then
76 version=`$PERL -M$module -e "print \\$$module::VERSION"` 78 version=`$PERL -M$module -e "print \\$$module::VERSION"`
77 if $PERL -M$module=$minvers -e0 >/dev/null 2>&1; then 79 if $PERL -M$module -e "VERSION $module $minvers" >/dev/null 2>&1; then
78 AC_MSG_RESULT([ok, version $version]) 80 AC_MSG_RESULT([ok, version $version])
79 else 81 else
80 AC_MSG_ERROR([no, installed version is $version]) 82 AC_MSG_ERROR([no, installed version is $version])
81 fi 83 fi
82 else 84 else
146AC_SUBST(PERLLIB) 148AC_SUBST(PERLLIB)
147AC_SUBST(PERLFLAGS) 149AC_SUBST(PERLFLAGS)
148AC_SUBST(PERLPRIVLIBEXP) 150AC_SUBST(PERLPRIVLIBEXP)
149AC_SUBST(PERL) 151AC_SUBST(PERL)
150 152
151AC_PROG_LIBTOOL 153dnl AC_PROG_LIBTOOL
154AC_PROG_RANLIB
152 155
153AC_CHECK_HEADERS(execinfo.h) 156AC_CHECK_HEADERS(execinfo.h)
154AC_CHECK_FUNCS(backtrace) 157AC_CHECK_FUNCS(backtrace)
155 158
156dnl check for some other programs 159dnl check for some other programs
176 int fd; 179 int fd;
177 struct tcp_info tcpi; 180 struct tcp_info tcpi;
178 socklen_t len = sizeof (tcpi); 181 socklen_t len = sizeof (tcpi);
179 getsockopt (fd, IPPROTO_TCP, TCP_INFO, &tcpi, &len); 182 getsockopt (fd, IPPROTO_TCP, TCP_INFO, &tcpi, &len);
180 fd = 0 183 fd = 0
184 + tcpi.tcpi_snd_mss
181 + tcpi.tcpi_rtt 185 + tcpi.tcpi_rtt
182 + tcpi.tcpi_rttvar 186 + tcpi.tcpi_rttvar
183 + tcpi.tcpi_last_ack_recv 187 + tcpi.tcpi_last_ack_recv
184 + tcpi.tcpi_last_data_sent 188 + tcpi.tcpi_last_data_sent
185 + tcpi.tcpi_unacked; 189 + tcpi.tcpi_unacked;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines