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.14 by root, Mon Aug 28 16:52:50 2006 UTC vs.
Revision 1.58 by root, Tue Mar 6 22:07:56 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], [1.9.1], [crossfire-devel@listserv.real-time.com]) 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
11AC_PREFIX_DEFAULT(/usr/games/crossfire) 11AC_PREFIX_DEFAULT(/usr/games/crossfire)
12 12
13dnl we want a config.h file instead of -D options. 13AC_PATH_PROG(OPTIPNG, optipng)
14if test -z "$OPTIPNG"; then
15 AC_MSG_ERROR([optipng must be in your PATH, see the README])
16fi
14 17
15dnl Checks for programs. 18AC_PATH_PROG(CONVERT, convert)
19if test -z "$CONVERT"; then
20 AC_MSG_ERROR([ImageMagick 'convert' must be in your PATH, see the README])
21fi
22
23AC_PATH_PROG(PERL, perl5.8)
24if test -z "$PERL"; then
25 AC_PATH_PROG(PERL, perl5)
26 if test -z "$PERL"; then
27 AC_PATH_PROG(PERL, perl)
28 fi
29fi
30
31for module_vers in "Crossfire 0.97" "Coro 3.5" "Coro::Event 2.1" "Event 1.08" \
32 "IO::AIO 2.32" "BDB 0.1" "Storable 2.0" "Time::HiRes 1.0" "YAML::Syck 0.71" \
33 "Digest::MD5 2.0" "Compress::LZF 1.71" "Safe::Hole 0.10" "Pod::POM 0.17"; do
34 set -- $module_vers
35 module=$1
36 minvers=$2
37 AC_MSG_CHECKING(for $module perl module version $minvers or higher)
38 if $PERL -M$module -e0 >/dev/null 2>&1; then
39 version=`$PERL -M$module -e "print \\$$module::VERSION"`
40 if $PERL -M$module=$minvers -e0 >/dev/null 2>&1; then
41 AC_MSG_RESULT([ok, version $version])
42 else
43 AC_MSG_ERROR([no, installed version is $version])
44 fi
45 else
46 AC_MSG_ERROR([no, cannot load module $module])
47 fi
48done
49
50AC_PATH_PROG(GPERF, gperf)
51if test -z "$GPERF"; then
52 AC_MSG_ERROR([we need gperf, the GNU perfect hash generator])
53fi
54
55AC_LANG(C++)
16AC_PROG_CXX 56AC_PROG_CXX
17AC_LANG(C++) 57AC_PROG_CPP
58
59AC_CHECK_HEADER(tr1/unordered_map,[],[AC_MSG_ERROR([Your compiler must support the Library Technical Report 1 extensions.])])
60
61AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
62
63AC_MSG_CHECKING(glib >= 2.10)
64if $PKG_CONFIG glib-2.0 --atleast-version 2.10; then
65 CXXFLAGS="$CXXFLAGS `$PKG_CONFIG glib-2.0 --cflags`"
66 LIBS="$LIBS `$PKG_CONFIG glib-2.0 --libs`"
67 AC_MSG_RESULT(ok)
68else
69 AC_MSG_ERROR(no)
70fi
71
72AC_MSG_CHECKING(libpng)
73if $PKG_CONFIG libpng --exists; then
74 CXXFLAGS="$CXXFLAGS `$PKG_CONFIG libpng --cflags`"
75 LIBS="$LIBS `$PKG_CONFIG libpng --libs`"
76 AC_MSG_RESULT(ok)
77else
78 AC_MSG_ERROR(no)
79fi
80
18AC_PROG_LIBTOOL 81AC_PROG_LIBTOOL
19 82
20case "$target" in
21 alpha-dec-osf*)
22 # If we are not using gcc, we want the ansi version of cc.
23 if test -z "$GCC"; then
24# CFLAGS="$CFLAGS -std1 -warnprotos" # Not yet ready for warnprotos...
25 CFLAGS="$CFLAGS -std1"
26 fi
27 ;;
28 *)
29 ;;
30esac
31
32
33AC_PROG_CPP
34AM_PROG_LEX
35AC_PROG_AWK
36
37AC_ARG_ENABLE(dmalloc, [ --enable-dmalloc Use the dmalloc library if available, may prevent plugins from working],
38 use_dmalloc=yes, use_dmalloc=no)
39
40dnl AC_ARG_WITH(python, [ --with-python=dir Directory to look for python headers/library (default=standard system location) ], PYTHON_HOME="$withval")
41
42
43dnl check for some other programs
44AC_PATH_PROG(LATEX, latex)
45AC_PATH_PROG(GZIP, gzip)
46AC_PATH_PROG(GUNZIP, gunzip)
47AC_PATH_PROG(TAR, tar)
48AC_PATH_PROG(PERL, perl)
49AC_PATH_PROG(BASENAME, basename)
50
51if test -n "$GZIP" -a -z "$GUNZIP" ; then
52 echo "Found gzip, but not gunzip - setting GUNZIP to gzip -c";
53 GUNZIP="$GZIP -c"
54fi;
55
56if test -z "$COMPRESS" ; then
57 AC_PATH_PROG(COMPRESS, compress)
58 AC_PATH_PROG(UNCOMPRESS, uncompress)
59fi
60
61AC_PATH_PROG(BZIP, bzip2)
62AC_PATH_PROG(BUNZIP, bunzip2)
63
64if test -n "$BZIP" -a -z "$BUNZIP" ; then
65 echo "Found bzip2, but not bunzip2 - setting BUNZIP to bzip2 -c";
66 BUNZIP="$BZIP -c"
67fi;
68
69if test -z "$COMPRESS" -a -z "$GZIP" -a -z "$BZIP" ; then
70 echo "Unable to find either compress, bzip2, or gzip - hope you don't plan on compressing";
71 echo "any files.";
72fi;
73
74dnl nsl, socket may be needed for the X-windowing system, so check
75dnl for them before before checking for X.
76AC_CHECK_LIB(nsl, main)
77AC_CHECK_LIB(socket, main)
78
79dnl Checks for libraries.
80AC_CHECK_LIB(m, main)
81AC_CHECK_LIB(png, main, AC_DEFINE(HAVE_LIBPNG,[],[Define if libpng is available]) X11LIBS="$X11LIBS -lpng", , $X11LIBS )
82
83dnl png has a dependency in some cases on libz - if we have it, can't really
84dnl be harmful to link it in.
85AC_CHECK_LIB(z, main, AC_DEFINE(HAVE_LIBZ,[],[Define if libz is available]) X11LIBS="$X11LIBS -lz", , $X11LIBS )
86
87dnl Misc libraries.
88AC_CHECK_LIB(crypt, main)
89AC_CHECK_LIB(des, des_crypt)
90
91dnl Gros - Changed this to support some external programs that do not like dmalloc (like Python).
92dnl If you really need to make some memory debugging, uncomment the dmalloc line and comment out the dmalloclp one.
93
94if eval "test x$use_dmalloc = xyes"; then
95 AC_CHECK_LIB(dmalloc, main)
96else
97 AC_CHECK_LIB(dmalloclp, main)
98fi
99
100dnl Checks for header files.
101AC_HEADER_DIRENT
102AC_HEADER_STDC
103AC_CHECK_HEADERS(fcntl.h limits.h malloc.h strings.h sys/file.h sys/ioctl.h sys/time.h time.h unistd.h stddef.h stdlib.h sys/ttycom.h sys/termios.h crypt.h arpa/inet.h des.h)
104
105
106dnl Checks for typedefs, structures, and compiler characteristics.
107AC_C_CONST
108AC_C_INLINE
109AC_TYPE_PID_T
110AC_TYPE_SIZE_T
111AC_HEADER_TIME
112AC_STRUCT_TM
113AC_TYPE_UID_T
114
115AC_CHECK_SIZEOF(long)
116AC_CHECK_SIZEOF(long long)
117
118dnl Checks for library functions.
119AC_PROG_GCC_TRADITIONAL
120AC_FUNC_MEMCMP
121AC_FUNC_SETPGRP
122AC_TYPE_SIGNAL
123AC_FUNC_STRFTIME
124AC_FUNC_VPRINTF
125AC_CHECK_FUNCS(gettimeofday mkdir mktime rmdir select socket strcspn strerror strspn strstr strtol strcasecmp strncasecmp snprintf setsid srandom getdtablesize srand48 srand sysconf scandir)
126
127dnl alphasort can not be added to AC_CHECK_FUNCS because
128AC_MSG_CHECKING(checking if alphasort is defined)
129 AC_TRY_COMPILE([#include <dirent.h>], [alphasort;],
130 ac_cv_func_alphasort=yes, ac_cv_func_alphasort=no)
131 if test "$ac_cv_func_alphasort" = yes; then
132 AC_DEFINE(HAVE_ALPHASORT, 1, [Define if you have the alphasort() function declaration.])
133 AC_MSG_RESULT(yes)
134 else
135 AC_MSG_RESULT(no)
136 fi
137
138
139
140AC_MSG_CHECKING(how many args gettimeofday uses)
141AC_CACHE_VAL(ac_cv_gettimeofday_args,
142 [AC_TRY_COMPILE([#include <sys/time.h>
143 #include <unistd.h>],
144 [struct timeval tv; struct timezone tzp;
145 gettimeofday(&tv, &tzp);],
146 [ac_gettimeofday_args=2],
147 [AC_TRY_COMPILE([#include <sys/time.h>
148 #include <unistd.h>],
149 [struct timeval tv;
150 gettimeofday(&tv, NULL);],
151 [ac_gettimeofday_args=2],
152 [AC_TRY_COMPILE([#include <sys/time.h>
153 #include <unistd.h>],
154 [struct timeval tv; gettimeofday(&tv);],
155 [ac_gettimeofday_args=1],
156 [ac_gettimeofday_args=0])])])
157 ac_cv_gettimeofday_args=$ac_gettimeofday_args])
158
159ac_gettimeofday_args=$ac_cv_gettimeofday_args
160if test $ac_gettimeofday_args = 1 ; then
161 AC_DEFINE(HAVE_GETTIMEOFDAY,[],[Define if gettimeofday is available])
162 AC_MSG_RESULT(one argument)
163elif test $ac_gettimeofday_args = 2 ; then
164 AC_DEFINE(HAVE_GETTIMEOFDAY,[],[Define if gettimeofday is available])
165 AC_DEFINE(GETTIMEOFDAY_TWO_ARGS,[],[Define if gettimeofday takes two arguments])
166 AC_MSG_RESULT(two arguments)
167else
168 AC_MSG_RESULT(unknown)
169fi
170
171AC_SUBST(x_includes)
172AC_SUBST(x_libraries)
173AC_SUBST(no_x)
174AM_CONDITIONAL(HAVE_X,test "x$no_x" = "x")
175AC_SUBST(X11LIBS)
176AC_SUBST(PERL)
177AC_SUBST(BASENAME)
178
179AC_SUBST(pkgstatedir,$localstatedir/$PACKAGE)
180AC_SUBST(pkgconfdir,$sysconfdir/$PACKAGE)
181
182AC_DEFINE_UNQUOTED(COMPRESS,"${COMPRESS}",[Path to the compress binary])
183AC_DEFINE_UNQUOTED(UNCOMPRESS,"${UNCOMPRESS}",[Path to the uncompress binary])
184AC_DEFINE_UNQUOTED(GZIP,"${GZIP}",[Path to the gzip binary])
185AC_DEFINE_UNQUOTED(GUNZIP,"${GUNZIP}",[Path to the gunzip binary])
186AC_DEFINE_UNQUOTED(BZIP,"${BZIP}",[Path to the bzip binary])
187AC_DEFINE_UNQUOTED(BUNZIP,"${BUNZIP}",[Path to the bunzip binary])
188
189AC_PATH_PROG(PERL, perl5)
190AC_PATH_PROG(PERL, perl)
191
192AC_MSG_CHECKING(for $PERL suitability) 83AC_MSG_CHECKING(for $PERL suitability)
193if $PERL -MExtUtils::Embed -e "use v5.8" >/dev/null 2>/dev/null; then 84if $PERL -MExtUtils::Embed -e "use v5.8" >/dev/null 2>&1; then
194
195 save_CFLAGS="$CFLAGS" 85 save_CXXFLAGS="$CXXFLAGS"
196 save_LIBS="$LIBS" 86 save_LIBS="$LIBS"
87 xPERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts`"
197 CXXFLAGS="$CXXFLAGS `$PERL -MExtUtils::Embed -e ccopts` `$PERL -MEvent::MakeMaker -e 'print +{&Event::MakeMaker::event_args}->{INC}'`" 88 xPERLFLAGS="$xPERLFLAGS `$PERL -MEvent::MakeMaker -e 'print +{&Event::MakeMaker::event_args}->{INC}'`"
89 xPERLFLAGS="$xPERLFLAGS `$PERL -MCoro::MakeMaker -e 'print +{&Coro::MakeMaker::coro_args}->{INC}'`"
90 CXXFLAGS="$CXXFLAGS $xPERLFLAGS"
198 LIBS="$LIBS `$PERL -MExtUtils::Embed -e ldopts`" 91 LIBS="$LIBS `$PERL -MExtUtils::Embed -e ldopts`"
199 AC_TRY_LINK([ 92 AC_TRY_LINK([
200#include <EXTERN.h> 93#include <EXTERN.h>
201#include <perl.h> 94#include <perl.h>
202#include <XSUB.h> 95#include <XSUB.h>
208 LIBS="$save_LIBS" 101 LIBS="$save_LIBS"
209 102
210 if test x$perl_link = xyes; then 103 if test x$perl_link = xyes; then
211 AC_MSG_RESULT(ok) 104 AC_MSG_RESULT(ok)
212 AC_DEFINE(ENABLE_PERL, 1, Define if you can embed a perl interpreter) 105 AC_DEFINE(ENABLE_PERL, 1, Define if you can embed a perl interpreter)
213 PERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts` `$PERL -MEvent::MakeMaker -e 'print +{&Event::MakeMaker::event_args}->{INC}'`" 106 PERLFLAGS="$xPERLFLAGS"
214 PERLLIB="`$PERL -MExtUtils::Embed -e ldopts`" 107 PERLLIB="`$PERL -MExtUtils::Embed -e ldopts`"
215 PERLPRIVLIBEXP="`$PERL -MConfig -e 'print $Config{privlibexp}'`" 108 PERLPRIVLIBEXP="`$PERL -MConfig -e 'print $Config{privlibexp}'`"
216 PERL_PLUGIN=yes 109 CPPFLAGS="$CPPFLAGS $PERLFLAGS"
217 else 110 else
218 AC_MSG_ERROR([no, unable to link]) 111 AC_MSG_ERROR([no, unable to link])
219 fi 112 fi
220else 113else
221 AC_MSG_ERROR([no working perl found, or perl not version >= 5.8]) 114 AC_MSG_ERROR([no working perl found, or perl not version >= 5.8])
222fi 115fi
223AC_SUBST(PERLLIB) 116AC_SUBST(PERLLIB)
224AC_SUBST(PERLFLAGS) 117AC_SUBST(PERLFLAGS)
225AC_SUBST(PERLPRIVLIBEXP) 118AC_SUBST(PERLPRIVLIBEXP)
226AC_SUBST(PERL) 119AC_SUBST(PERL)
227AM_CONDITIONAL(PERL_PLUGIN,test "x$PERL_PLUGIN" != "x")
228AC_SUBST(PERL_PLUGIN)
229 120
230############################################# 121dnl check for some other programs
231# Plugin configuration 122AC_PATH_PROG(TAR, tar)
232AC_CHECK_LIB(dl, dlopen,[ cf_have_libdl=yes ]) 123AC_PATH_PROG(BASENAME, basename)
233AM_CONDITIONAL(HAVE_LIBDL,test "x$cf_have_libdl" = "xyes")
234 124
235if test "x$cf_have_libdl" = "xyes" ; then 125AC_CHECK_LIB(nsl, main)
236 ############### 126AC_CHECK_LIB(socket, main)
237 # Python plugin 127
238dnl CF_CHECK_PYTHON( 128dnl Checks for libraries.
239dnl [PLUGIN_PYTHON="cfpython.la"], 129AC_CHECK_LIB(m, main)
240dnl [AC_MSG_NOTICE([No Python found. Python plugin will not be built.])] 130
241dnl ) 131AC_CHECK_SIZEOF(long)
242 dnl *** Put other plugins configuration code here *** 132AC_CHECK_SIZEOF(long long)
243else 133
244 AC_MSG_NOTICE([No dl library found. Plugins will not be supported.]) 134AC_SUBST(pkgstatedir,$localstatedir/$PACKAGE)
245fi 135AC_SUBST(pkgconfdir,$sysconfdir/$PACKAGE)
246AM_CONDITIONAL(PYTHON_PLUGIN,test "x$PLUGIN_PYTHON" != "x")
247AC_SUBST(PLUGIN_PYTHON)
248 136
249AC_OUTPUT([Makefile 137AC_OUTPUT([Makefile
250 doc/Makefile doc/Developers/Makefile doc/spell-docs/Makefile 138 include/Makefile lib/Makefile pod/Makefile random_maps/Makefile socket/Makefile
251 doc/spoiler/Makefile doc/spoiler-html/Makefile 139 server/Makefile utils/Makefile ext/Makefile doc/Makefile
252 doc/playbook/Makefile doc/playbook-html/Makefile 140 lib/checkarch.pl lib/collect.pl common/Makefile utils/cfutil
253 doc/scripts/Makefile 141])
254 lib/Makefile random_maps/Makefile socket/Makefile server/Makefile 142
255 include/Makefile utils/Makefile lib/checkarch.pl
256 lib/collect.pl utils/add_throw.perl utils/crossloop.tmpl utils/crossloop.pl.tmpl
257 utils/metaserver.pl utils/crossloop.web utils/scores.pl utils/player_dl.pl
258 common/Makefile plugins/Makefile plugins/cfpython/Makefile
259 plugins/cfpython/include/Makefile
260 plugins/common/Makefile plugins/common/include/Makefile
261 devel/Makefile
262 ])

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines