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.53 by pippijn, Mon Mar 5 19:54:10 2007 UTC vs.
Revision 1.57 by root, Tue Mar 6 19:05:14 2007 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([crossfire], [2.0+], [crossfire@schmorp.de]) 3AC_INIT([cfserver], [2.1], [crossfire@schmorp.de])
4AC_CONFIG_AUX_DIR(utils) 4AC_CONFIG_AUX_DIR(utils)
5AC_CONFIG_SRCDIR([server/main.C]) 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
9AM_MAINTAINER_MODE 9AM_MAINTAINER_MODE
10 10
15AC_PROG_CXX 15AC_PROG_CXX
16AC_PROG_LIBTOOL 16AC_PROG_LIBTOOL
17 17
18AC_PROG_CPP 18AC_PROG_CPP
19 19
20AC_PATH_PROG(CONVERT, convert)
21
22if test -z "$CONVERT"; then
23 AC_MSG_ERROR([ImageMagick 'convert' must be in your PATH, see the README])
24fi
25
20AC_PATH_PROG(PERL, perl5.8) 26AC_PATH_PROG(PERL, perl5.8)
27if test -z "$PERL"; then
21AC_PATH_PROG(PERL, perl5) 28 AC_PATH_PROG(PERL, perl5)
29 if test -z "$PERL"; then
22AC_PATH_PROG(PERL, perl) 30 AC_PATH_PROG(PERL, perl)
31 fi
32fi
23 33
24for module_vers in "Crossfire 0.97" "Coro 3.5" "Coro::Event 2.1" "Event 1.08" \ 34for module_vers in "Crossfire 0.97" "Coro 3.5" "Coro::Event 2.1" "Event 1.08" \
25 "IO::AIO 2.32" "BDB 0.1" "Storable 2.0" "Time::HiRes 1.0" "YAML::Syck 0.71" \ 35 "IO::AIO 2.32" "BDB 0.1" "Storable 2.0" "Time::HiRes 1.0" "YAML::Syck 0.71" \
26 "Digest::MD5 2.0" "Compress::LZF 1.71" "Safe::Hole 0.10" "Pod::POM 0.17"; do 36 "Digest::MD5 2.0" "Compress::LZF 1.71" "Safe::Hole 0.10" "Pod::POM 0.17"; do
27 set -- $module_vers 37 set -- $module_vers

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines