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.12 by root, Sun Aug 13 17:47:24 2006 UTC vs.
Revision 1.22 by pippijn, Fri Sep 8 02:45:15 2006 UTC

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. 13dnl we want a config.h file instead of -D options.
14 14
15dnl Checks for programs. 15dnl Checks for programs.
16AC_LANG(C++)
16AC_PROG_CXX 17AC_PROG_CXX
17AC_LANG(C++)
18AC_PROG_LIBTOOL 18AC_PROG_LIBTOOL
19 19
20case "$target" in 20case "$target" in
21 alpha-dec-osf*) 21 alpha-dec-osf*)
22 # If we are not using gcc, we want the ansi version of cc. 22 # If we are not using gcc, we want the ansi version of cc.
35AC_PROG_AWK 35AC_PROG_AWK
36 36
37AC_ARG_ENABLE(dmalloc, [ --enable-dmalloc Use the dmalloc library if available, may prevent plugins from working], 37AC_ARG_ENABLE(dmalloc, [ --enable-dmalloc Use the dmalloc library if available, may prevent plugins from working],
38 use_dmalloc=yes, use_dmalloc=no) 38 use_dmalloc=yes, use_dmalloc=no)
39 39
40AC_ARG_WITH(python, [ --with-python=dir Directory to look for python headers/library (default=standard system location) ], 40dnl AC_ARG_WITH(python, [ --with-python=dir Directory to look for python headers/library (default=standard system location) ], PYTHON_HOME="$withval")
41 PYTHON_HOME="$withval")
42 41
43 42
44dnl check for some other programs 43dnl check for some other programs
45AC_PATH_PROG(LATEX, latex) 44AC_PATH_PROG(LATEX, latex)
46AC_PATH_PROG(GZIP, gzip) 45AC_PATH_PROG(GZIP, gzip)
167 AC_MSG_RESULT(two arguments) 166 AC_MSG_RESULT(two arguments)
168else 167else
169 AC_MSG_RESULT(unknown) 168 AC_MSG_RESULT(unknown)
170fi 169fi
171 170
171AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
172
173AC_MSG_CHECKING(glib >= 2.10)
174if $PKG_CONFIG glib-2.0 --atleast-version 2.10; then
175 CXXFLAGS="$CXXFLAGS `$PKG_CONFIG glib-2.0 --cflags`"
176 LIBS="$LIBS `$PKG_CONFIG glib-2.0 --libs`"
177 AC_MSG_RESULT(ok)
178else
179 AC_MSG_ERROR(no)
180fi
181
172AC_SUBST(x_includes) 182AC_SUBST(x_includes)
173AC_SUBST(x_libraries) 183AC_SUBST(x_libraries)
174AC_SUBST(no_x) 184AC_SUBST(no_x)
175AM_CONDITIONAL(HAVE_X,test "x$no_x" = "x") 185AM_CONDITIONAL(HAVE_X,test "x$no_x" = "x")
176AC_SUBST(X11LIBS) 186AC_SUBST(X11LIBS)
191AC_PATH_PROG(PERL, perl) 201AC_PATH_PROG(PERL, perl)
192 202
193AC_MSG_CHECKING(for $PERL suitability) 203AC_MSG_CHECKING(for $PERL suitability)
194if $PERL -MExtUtils::Embed -e "use v5.8" >/dev/null 2>/dev/null; then 204if $PERL -MExtUtils::Embed -e "use v5.8" >/dev/null 2>/dev/null; then
195 205
196 save_CFLAGS="$CFLAGS" 206 save_CXXFLAGS="$CXXFLAGS"
197 save_LIBS="$LIBS" 207 save_LIBS="$LIBS"
198 CXXFLAGS="$CXXFLAGS `$PERL -MExtUtils::Embed -e ccopts` `$PERL -MEvent::MakeMaker -e 'print +{&Event::MakeMaker::event_args}->{INC}'`" 208 CXXFLAGS="$CXXFLAGS `$PERL -MExtUtils::Embed -e ccopts` `$PERL -MEvent::MakeMaker -e 'print +{&Event::MakeMaker::event_args}->{INC}'`"
199 LIBS="$LIBS `$PERL -MExtUtils::Embed -e ldopts`" 209 LIBS="$LIBS `$PERL -MExtUtils::Embed -e ldopts`"
200 AC_TRY_LINK([ 210 AC_TRY_LINK([
201#include <EXTERN.h> 211#include <EXTERN.h>
212 AC_MSG_RESULT(ok) 222 AC_MSG_RESULT(ok)
213 AC_DEFINE(ENABLE_PERL, 1, Define if you can embed a perl interpreter) 223 AC_DEFINE(ENABLE_PERL, 1, Define if you can embed a perl interpreter)
214 PERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts` `$PERL -MEvent::MakeMaker -e 'print +{&Event::MakeMaker::event_args}->{INC}'`" 224 PERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts` `$PERL -MEvent::MakeMaker -e 'print +{&Event::MakeMaker::event_args}->{INC}'`"
215 PERLLIB="`$PERL -MExtUtils::Embed -e ldopts`" 225 PERLLIB="`$PERL -MExtUtils::Embed -e ldopts`"
216 PERLPRIVLIBEXP="`$PERL -MConfig -e 'print $Config{privlibexp}'`" 226 PERLPRIVLIBEXP="`$PERL -MConfig -e 'print $Config{privlibexp}'`"
217 PERL_PLUGIN=yes 227 CPPFLAGS="$CPPFLAGS $PERLFLAGS"
218 else 228 else
219 AC_MSG_ERROR([no, unable to link]) 229 AC_MSG_ERROR([no, unable to link])
220 fi 230 fi
221else 231else
222 AC_MSG_ERROR([no working perl found, or perl not version >= 5.8]) 232 AC_MSG_ERROR([no working perl found, or perl not version >= 5.8])
223fi 233fi
224AC_SUBST(PERLLIB) 234AC_SUBST(PERLLIB)
225AC_SUBST(PERLFLAGS) 235AC_SUBST(PERLFLAGS)
226AC_SUBST(PERLPRIVLIBEXP) 236AC_SUBST(PERLPRIVLIBEXP)
227AC_SUBST(PERL) 237AC_SUBST(PERL)
228AM_CONDITIONAL(PERL_PLUGIN,test "x$PERL_PLUGIN" != "x")
229AC_SUBST(PERL_PLUGIN)
230
231#############################################
232# Plugin configuration
233AC_CHECK_LIB(dl, dlopen,[ cf_have_libdl=yes ])
234AM_CONDITIONAL(HAVE_LIBDL,test "x$cf_have_libdl" = "xyes")
235
236if test "x$cf_have_libdl" = "xyes" ; then
237 ###############
238 # Python plugin
239 CF_CHECK_PYTHON(
240 [PLUGIN_PYTHON="cfpython.la"],
241 [AC_MSG_NOTICE([No Python found. Python plugin will not be built.])]
242 )
243 dnl *** Put other plugins configuration code here ***
244else
245 AC_MSG_NOTICE([No dl library found. Plugins will not be supported.])
246fi
247AM_CONDITIONAL(PYTHON_PLUGIN,test "x$PLUGIN_PYTHON" != "x")
248AC_SUBST(PLUGIN_PYTHON)
249 238
250AC_OUTPUT([Makefile 239AC_OUTPUT([Makefile
251 doc/Makefile doc/Developers/Makefile doc/spell-docs/Makefile 240 include/Makefile lib/Makefile pod/Makefile random_maps/Makefile socket/Makefile
252 doc/spoiler/Makefile doc/spoiler-html/Makefile 241 server/Makefile src/Makefile utils/Makefile
253 doc/playbook/Makefile doc/playbook-html/Makefile 242 lib/checkarch.pl lib/collect.pl utils/add_throw.perl
254 doc/scripts/Makefile 243 utils/crossloop.tmpl utils/crossloop.pl.tmpl utils/metaserver.pl
255 lib/Makefile random_maps/Makefile socket/Makefile server/Makefile
256 include/Makefile utils/Makefile lib/checkarch.pl
257 lib/collect.pl utils/add_throw.perl utils/crossloop.tmpl utils/crossloop.pl.tmpl
258 utils/metaserver.pl utils/crossloop.web utils/scores.pl utils/player_dl.pl 244 utils/crossloop.web utils/scores.pl utils/player_dl.pl common/Makefile
259 common/Makefile plugins/Makefile plugins/cfpython/Makefile 245])
260 plugins/cfpython/include/Makefile
261 plugins/common/Makefile plugins/common/include/Makefile
262 devel/Makefile
263 plugins/cfperl/Makefile
264 ])

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines