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.59 by root, Wed Mar 7 01:23:37 2007 UTC vs.
Revision 1.71 by root, Fri Apr 27 19:53:04 2007 UTC

23AC_PATH_PROG(OPTIPNG, optipng) 23AC_PATH_PROG(OPTIPNG, optipng)
24if test -z "$OPTIPNG"; then 24if test -z "$OPTIPNG"; then
25 AC_MSG_ERROR([optipng must be in your PATH, check the README]) 25 AC_MSG_ERROR([optipng must be in your PATH, check the README])
26fi 26fi
27 27
28AC_PATH_PROG(PNGNQ, pngnq)
29if test -z "$PNGNQ"; then
30 AC_MSG_ERROR([png neuquant (pngnq) must be in your PATH, check the README])
31fi
32
28AC_PATH_PROG(IDENTIFY, identify) 33AC_PATH_PROG(IDENTIFY, identify)
29if test -z "$IDENTIFY"; then 34if test -z "$IDENTIFY"; then
30 AC_MSG_ERROR([ImageMagick 'identify' must be in your PATH, check the README]) 35 AC_MSG_ERROR([ImageMagick 'identify' must be in your PATH, check the README])
31fi 36fi
32 37
44 AC_MSG_ERROR([perl 5.8 or higher must be in your PATH, check the README]) 49 AC_MSG_ERROR([perl 5.8 or higher must be in your PATH, check the README])
45 fi 50 fi
46 fi 51 fi
47fi 52fi
48 53
49for module_vers in "Image::Size 2.992" "Crossfire 0.97" "Coro 3.5" "Coro::Event 2.1" "Event 1.08" \ 54for module_vers in \
50 "IO::AIO 2.32" "BDB 0.1" "Storable 2.0" "Time::HiRes 1.0" "YAML::Syck 0.71" \ 55 "AnyEvent 2.52" \
51 "Digest::MD5 2.0" "Compress::LZF 1.71" "Safe::Hole 0.10" "Pod::POM 0.17"; do 56 "Crossfire 0.97" \
57 "Coro 3.62" \
58 "Coro::Event 2.1" \
59 "Event 1.08" \
60 "IO::AIO 2.32" \
61 "BDB 0.1" \
62 "Storable 2.0" \
63 "JSON::XS 1.11" \
64 "Time::HiRes 1.0" \
65 "YAML::Syck 0.71" \
66 "Digest::MD5 2.0" \
67 "Compress::LZF 1.8" \
68 "Safe::Hole 0.10" \
69 "Pod::POM 0.17" \
70; do
52 set -- $module_vers 71 set -- $module_vers
53 module=$1 72 module=$1
54 minvers=$2 73 minvers=$2
55 AC_MSG_CHECKING(for $module perl module version $minvers or higher) 74 AC_MSG_CHECKING(for $module perl module version $minvers or higher)
56 if $PERL -M$module -e0 >/dev/null 2>&1; then 75 if $PERL -M$module -e0 >/dev/null 2>&1; then
66done 85done
67 86
68AC_LANG(C++) 87AC_LANG(C++)
69AC_PROG_CXX 88AC_PROG_CXX
70AC_PROG_CPP 89AC_PROG_CPP
90
91AC_CHECK_HEADERS(execinfo.h)
92AC_CHECK_FUNCS(backtrace)
71 93
72AC_CHECK_HEADER(tr1/unordered_map,[],[AC_MSG_ERROR([Your compiler must support the Library Technical Report 1 extensions.])]) 94AC_CHECK_HEADER(tr1/unordered_map,[],[AC_MSG_ERROR([Your compiler must support the Library Technical Report 1 extensions.])])
73 95
74AC_PATH_PROG(PKG_CONFIG, pkg-config, no) 96AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
75 97

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines