[4555] | 1 | ########################################################################## |
---|
| 2 | # orxonox - the future of 3D-vertical-scrollers # |
---|
| 3 | # # |
---|
| 4 | # Copyright (C) 2004 orx # |
---|
| 5 | # # |
---|
[3424] | 6 | # This program is free software; you can redistribute it and/or modify # |
---|
| 7 | # it under the terms of the GNU General Public License as published by # |
---|
| 8 | # the Free Software Foundation; either version 2, or (at your option) # |
---|
[4555] | 9 | # any later version. # |
---|
| 10 | # # |
---|
| 11 | # ### File Specific: # |
---|
| 12 | # main-programmer: Benjamin Grauer # |
---|
| 13 | # co-programmer: ... # |
---|
| 14 | # # |
---|
| 15 | # This is the main configuration File of autoconf. # |
---|
[3424] | 16 | # Please edit this file only, if you exactly know what you are doing. # |
---|
| 17 | # It is quite fragile, and compiling orxonox on different Platforms # |
---|
| 18 | # is only guarantied, if build with the right config. # |
---|
[4944] | 19 | # # |
---|
| 20 | # be sure to visit us at http://www.orxonox.net # |
---|
[3424] | 21 | ########################################################################## |
---|
[1945] | 22 | |
---|
[3424] | 23 | ######################### |
---|
| 24 | ## AUTOCONF INIT PHASE ## |
---|
| 25 | ######################### |
---|
[5479] | 26 | AC_PREREQ(2.59) |
---|
[5750] | 27 | AC_INIT([orxonox], [0.3.2_alpha], [orxonox-dev at mail.datacore.ch]) |
---|
[2980] | 28 | |
---|
[3424] | 29 | ## Detect the canonical host and target build environment. |
---|
[2980] | 30 | AC_CANONICAL_BUILD |
---|
| 31 | AC_CANONICAL_HOST |
---|
| 32 | AC_CANONICAL_TARGET |
---|
| 33 | |
---|
[1959] | 34 | AM_INIT_AUTOMAKE |
---|
[2618] | 35 | |
---|
[5944] | 36 | AC_CONFIG_SRCDIR([./src]) |
---|
[1945] | 37 | AC_CONFIG_HEADER([config.h]) |
---|
| 38 | |
---|
[3424] | 39 | ######################### |
---|
| 40 | ## Checks for programs ## |
---|
| 41 | ######################### |
---|
[1945] | 42 | AC_PROG_CXX |
---|
[5463] | 43 | AC_PROG_RANLIB |
---|
[2925] | 44 | AC_HEADER_STDC |
---|
[2701] | 45 | |
---|
[4774] | 46 | ## THIS IS OUR DEFAULT-DATA-DIRECTORY |
---|
| 47 | |
---|
[3424] | 48 | ################################## |
---|
| 49 | ## CHECKING OPTIONAL ARGUMENTS ## |
---|
| 50 | ################################## |
---|
[4774] | 51 | #----------------# |
---|
| 52 | # Data-Directory # |
---|
| 53 | #----------------# |
---|
| 54 | DATA_DIR=$datadir |
---|
| 55 | echo \$\{prefix\} |
---|
| 56 | if test $DATA_DIR = \$\{prefix\}/share ; then |
---|
| 57 | echo "not given" |
---|
| 58 | DATA_DIR=/usr/share |
---|
| 59 | else |
---|
| 60 | echo "given: $DATA_DIR" |
---|
| 61 | fi |
---|
| 62 | AC_DEFINE_UNQUOTED([DATADIR], ["$DATA_DIR"], |
---|
| 63 | [Define to the read-only architecture-independent |
---|
| 64 | data directory.]) |
---|
[3424] | 65 | |
---|
| 66 | #-----------------# |
---|
[5221] | 67 | # shared-lib-path # |
---|
| 68 | #-----------------# |
---|
| 69 | SHARED_LIB_PATH=no |
---|
| 70 | AC_MSG_CHECKING([shared lib path]) |
---|
| 71 | AC_ARG_WITH([shared-lib-path], |
---|
[5479] | 72 | AS_HELP_STRING(--with-shared-lib-path,Tells the executable, where to look for the shared libraries.), |
---|
[5223] | 73 | SHARED_LIB_PATH=$withval) |
---|
[5222] | 74 | if test x$SHARED_LIB_PATH != xno; then |
---|
[5265] | 75 | echo "set to $SHARED_LIB_PATH" |
---|
[5222] | 76 | else |
---|
[5221] | 77 | echo "no" |
---|
| 78 | fi |
---|
| 79 | |
---|
| 80 | |
---|
| 81 | #-----------------# |
---|
[3424] | 82 | # DEBUG-statement # |
---|
| 83 | #-----------------# |
---|
[3173] | 84 | DEBUG=no |
---|
| 85 | AC_MSG_CHECKING([if DEBUG-mode should be enabled]) |
---|
[4555] | 86 | AC_ARG_ENABLE([debug], |
---|
[5479] | 87 | AS_HELP_STRING(--enable-debug,compiles in debug mode. Lots of debug info about the game.), |
---|
[4555] | 88 | DEBUG=$enableval) |
---|
[3205] | 89 | |
---|
[4555] | 90 | if test x$DEBUG = xno; then |
---|
| 91 | echo "no" |
---|
| 92 | echo " -> Setting debuglevel to 4. (orxonox is still in Development. It really is needed." |
---|
| 93 | DEBUG=4 |
---|
[3424] | 94 | elif test x$DEBUG = xyes; then |
---|
[4555] | 95 | echo "yes" |
---|
| 96 | echo " -> Setting debuglevel to 4. HARD DEBUG MODE!!." |
---|
| 97 | DEBUG=4 |
---|
| 98 | else |
---|
| 99 | echo "yes: setting debuglevel to to $DEBUG" |
---|
[3173] | 100 | fi |
---|
[5222] | 101 | AC_DEFINE_UNQUOTED(DEBUG, $DEBUG, [in which debug mode we are]) |
---|
[3173] | 102 | AC_SUBST(DEBUG) |
---|
| 103 | |
---|
[3592] | 104 | #---------------# |
---|
| 105 | # Modular Debug # |
---|
| 106 | #---------------# |
---|
| 107 | MODULAR_DEBUG=yes |
---|
| 108 | AC_MSG_CHECKING([if Modular-DEBUG-mode should be ebabled]) |
---|
[4555] | 109 | AC_ARG_ENABLE([modular-debug], |
---|
[5479] | 110 | AS_HELP_STRING(--disable-modular-debug,compiles in modular-debug mode, that logs differently on the many modules of orxonox.), |
---|
[4555] | 111 | MODULAR_DEBUG=$enableval) |
---|
[3592] | 112 | |
---|
[4555] | 113 | if test x$MODULAR_DEBUG = xno; then |
---|
| 114 | echo "no" |
---|
[3592] | 115 | elif test x$MODULAR_DEBUG = xyes; then |
---|
[4555] | 116 | echo "yes" |
---|
| 117 | AC_DEFINE_UNQUOTED(MODULAR_DEBUG, 1, [if Modular-DUBUG mode is enabled]) |
---|
[3592] | 118 | fi |
---|
| 119 | |
---|
[3424] | 120 | #--------------# |
---|
| 121 | # GTK-disabled # |
---|
| 122 | #--------------# |
---|
[3100] | 123 | AC_MSG_CHECKING([if gtk should be enabled]) |
---|
[4774] | 124 | AC_ARG_ENABLE([gtk], |
---|
[5479] | 125 | AS_HELP_STRING(--disable-gtk,Prevents GTK from being loaded), [def_gtk=no], [def_gtk=yes]) |
---|
[4555] | 126 | if test x$def_gtk = xyes; then |
---|
[3100] | 127 | echo "yes" |
---|
[4555] | 128 | fi |
---|
| 129 | if test x$def_gtk = xno; then |
---|
[3100] | 130 | echo "no" |
---|
| 131 | fi |
---|
[3423] | 132 | |
---|
[3424] | 133 | #------------------# |
---|
| 134 | # libCurl-disabled # |
---|
| 135 | #------------------# |
---|
[3423] | 136 | AC_MSG_CHECKING([if libcURL should be enabled]) |
---|
[4774] | 137 | AC_ARG_ENABLE([curl], |
---|
[5479] | 138 | AS_HELP_STRING(--disable-curl,Prevents libcURL from being loaded), [def_curl=no], [def_curl=yes]) |
---|
[4555] | 139 | if test x$def_curl = xyes; then |
---|
[3423] | 140 | echo "yes" |
---|
[4555] | 141 | fi |
---|
| 142 | if test x$def_curl = xno; then |
---|
[3423] | 143 | echo "no" |
---|
| 144 | fi |
---|
| 145 | |
---|
[3424] | 146 | #-------------------# |
---|
| 147 | # SubProject-enable # |
---|
| 148 | #-------------------# |
---|
| 149 | def_sub_projects=no |
---|
[3377] | 150 | AC_MSG_CHECKING([if the SubProjects should be built]) |
---|
[4774] | 151 | AC_ARG_WITH([sub-projects], |
---|
[5479] | 152 | AS_HELP_STRING(--with-sub-projects,also builds the subProjects while make from srcdir), [def_sub_projects=yes]) |
---|
[3424] | 153 | if test x$def_sub_projects = xyes; then |
---|
[3377] | 154 | echo "yes" |
---|
[4555] | 155 | fi |
---|
[3424] | 156 | if test x$def_sub_projects = xno; then |
---|
[3377] | 157 | echo "no" |
---|
| 158 | fi |
---|
| 159 | AM_CONDITIONAL(SUB_PROJECTS, test x$def_sub_projects = xyes) |
---|
| 160 | |
---|
[3788] | 161 | #-------------------# |
---|
| 162 | # Profiling Enabled # |
---|
| 163 | #-------------------# |
---|
| 164 | def_profiling=no |
---|
| 165 | AC_MSG_CHECKING([if Profiling should be enabled]) |
---|
[4555] | 166 | AC_ARG_ENABLE([profile], |
---|
[5479] | 167 | AS_HELP_STRING(--enable-profile,builds orxonox with profiling support), [def_profiling=yes]) |
---|
[3788] | 168 | if test x$def_profiling = xyes; then |
---|
| 169 | echo "yes" |
---|
| 170 | CXXFLAGS="$CXXFLAGS -pg" |
---|
[4555] | 171 | fi |
---|
[3788] | 172 | if test x$def_profiling = xno; then |
---|
| 173 | echo "no" |
---|
| 174 | fi |
---|
| 175 | |
---|
[3863] | 176 | #----------------# |
---|
| 177 | # efence Enabled # |
---|
| 178 | #----------------# |
---|
| 179 | def_efence=no |
---|
| 180 | AC_MSG_CHECKING([if efence should be enabled]) |
---|
[4555] | 181 | AC_ARG_ENABLE([efence], |
---|
[5479] | 182 | AS_HELP_STRING(--enable-efence,builds orxonox with efence support), [def_efence=yes]) |
---|
[3863] | 183 | if test x$def_efence = xyes; then |
---|
| 184 | echo "yes" |
---|
[4555] | 185 | fi |
---|
[3863] | 186 | if test x$def_efence = xno; then |
---|
| 187 | echo "no" |
---|
| 188 | fi |
---|
| 189 | |
---|
[3558] | 190 | #----------------------# |
---|
| 191 | # Documentation-enable # |
---|
| 192 | #----------------------# |
---|
| 193 | def_documentation=no |
---|
| 194 | AC_MSG_CHECKING([if the Documentation should be build by default]) |
---|
[4555] | 195 | AC_ARG_ENABLE([documentation], |
---|
[5479] | 196 | AS_HELP_STRING(--enable-documentation,also builds the sDocumentation while make from srcdir), [def_documentation=yes]) |
---|
[3558] | 197 | if test x$def_documentation = xyes; then |
---|
| 198 | echo "yes" |
---|
[4555] | 199 | fi |
---|
[3558] | 200 | if test x$def_documentation = xno; then |
---|
| 201 | echo "no" |
---|
| 202 | fi |
---|
| 203 | AM_CONDITIONAL(DOCUMENTATION, test x$def_documentation = xyes) |
---|
[4774] | 204 | |
---|
[5467] | 205 | |
---|
| 206 | |
---|
| 207 | #---------------------------# |
---|
| 208 | # WITH TARDIS (convenience) # |
---|
| 209 | #---------------------------# |
---|
| 210 | def_tardis=no |
---|
[5478] | 211 | GTKPATH="" |
---|
[5467] | 212 | AC_MSG_CHECKING([convenience flag for working at the taris in the ETH zurich]) |
---|
[5468] | 213 | AC_ARG_WITH([tardis], |
---|
[5479] | 214 | AS_HELP_STRING(--with-tardis,sets all the necesary environment flags for linux-TARDIS boxes at the ETH Zurich), [def_tardis=yes]) |
---|
[5467] | 215 | if test x$def_tardis = xyes; then |
---|
[5469] | 216 | ARCH=i686-debian-linux3.1 |
---|
[5470] | 217 | ## GAMELIBS |
---|
[5467] | 218 | PREFIX=/usr/pack/gamelibs-1.0-to |
---|
[5469] | 219 | CPPFLAGS="${CPPFLAGS} -I${PREFIX}/include" |
---|
| 220 | LDFLAGS="${LDFLAGS} -L$PREFIX/${ARCH}/lib -Wl,-rpath -Wl,${PREFIX}/${ARCH}/lib" |
---|
[5470] | 221 | ## GTK |
---|
| 222 | GTKPREFIX=/usr/pack/gtk-2.8.3-mo |
---|
[5478] | 223 | GTKPATH=${GTKPREFIX}/${ARCH}/bin |
---|
[5470] | 224 | CPPFLAGS="${CPPFLAGS} -I${GTKPREFIX}/include" |
---|
| 225 | LDFLAGS="${LDFLAGS} -L${GTKPREFIX}/${ARCH}/lib -Wl,-rpath -Wl,${GTKPREFIX}/${ARCH}/lib" |
---|
[5467] | 226 | echo "yes" |
---|
| 227 | fi |
---|
| 228 | if test x$def_tardis = xno; then |
---|
| 229 | echo "no" |
---|
| 230 | fi |
---|
| 231 | |
---|
[3424] | 232 | ####################### |
---|
| 233 | ## PROGRAMM CHECKING ## |
---|
| 234 | ## 3. party Programs ## |
---|
| 235 | ####################### |
---|
| 236 | |
---|
| 237 | #----------------------# |
---|
| 238 | # checking for Doxygen # |
---|
| 239 | #----------------------# |
---|
[3219] | 240 | AC_PATH_PROG(DOXYGEN, doxygen) |
---|
| 241 | AM_CONDITIONAL(DOXYGEN, test $DOXYGEN) |
---|
| 242 | |
---|
[3789] | 243 | #--------------------# |
---|
| 244 | # checking for gprof # |
---|
| 245 | #--------------------# |
---|
| 246 | AC_PATH_PROG(GPROF, gprof) |
---|
| 247 | |
---|
[4130] | 248 | #-------------------------# |
---|
| 249 | # checking for pkg-config # |
---|
| 250 | #-------------------------# |
---|
| 251 | if test x$def_gtk = xyes; then |
---|
[5478] | 252 | if test x${GTKPATH} != x; then |
---|
| 253 | AC_PATH_PROG([PKG_CONFIG], [pkg-config],[], $GTKPATH ) |
---|
| 254 | else |
---|
| 255 | AC_PATH_PROG(PKG_CONFIG, pkg-config ) |
---|
| 256 | fi |
---|
[4130] | 257 | fi |
---|
| 258 | |
---|
| 259 | |
---|
[3424] | 260 | ######################### |
---|
| 261 | ## CHECKING FOR SYSTEM ## |
---|
| 262 | ######################### |
---|
| 263 | ## here the system is checked, and openGL is included |
---|
| 264 | ## also checking for SDL on differen Systems |
---|
[2701] | 265 | |
---|
| 266 | AC_MSG_CHECKING([for System]) |
---|
[2980] | 267 | ## checking for openGL-environment and other sys-specific parameters |
---|
| 268 | case "$target" in |
---|
[4825] | 269 | |
---|
| 270 | ########### |
---|
[3424] | 271 | #---------# |
---|
| 272 | # WINDOWS # |
---|
| 273 | #---------# |
---|
[4825] | 274 | ########### |
---|
[2980] | 275 | *-*-mingw32*) |
---|
[2701] | 276 | echo "mingw-WINDOWS detected" |
---|
| 277 | |
---|
[5222] | 278 | CPPFLAGS="-I/usr/include -I/mingw/include $CPPFLAGS" |
---|
[3790] | 279 | |
---|
[2701] | 280 | mingw="yes" |
---|
| 281 | MSBITFIELDS="-mms-bitfields" |
---|
| 282 | MWINDOWS="-mwindows" |
---|
| 283 | |
---|
[5276] | 284 | #--------# |
---|
| 285 | # MIN-GW # |
---|
| 286 | #--------# |
---|
[4697] | 287 | # checking for mingw32 |
---|
| 288 | AC_CHECK_LIB([mingw32], [main], FOUND_mingw32=yes) |
---|
| 289 | if test x$FOUND_mingw32 = xyes; then |
---|
| 290 | LIBS="$LIBS -lmingw32" |
---|
| 291 | fi |
---|
| 292 | |
---|
| 293 | #---------------# |
---|
| 294 | # open-GL (win) # |
---|
| 295 | #---------------# |
---|
[2925] | 296 | # checking gl header |
---|
[2879] | 297 | AC_CHECK_HEADERS(GL/gl.h ,, |
---|
[5276] | 298 | [AC_MSG_ERROR([cannot find opengl headers])]) |
---|
[2701] | 299 | # checking for Windows openGl library |
---|
[5276] | 300 | AC_CHECK_LIB([opengl32], [main], [FOUND_GL=yes; LIBS="$LIBS -lopengl32"]) |
---|
| 301 | if test x$FOUND_GL != xyes ; then |
---|
[4555] | 302 | echo "------------------" |
---|
| 303 | echo "opengl not found." |
---|
| 304 | echo "please install the opengl package which can be found at http://www.opengl.org" |
---|
| 305 | echo "------------------" |
---|
| 306 | exit -1 |
---|
[1959] | 307 | fi |
---|
| 308 | |
---|
[2701] | 309 | # cheking for GLU-header |
---|
[3424] | 310 | AC_CHECK_HEADERS([GL/glu.h] ,, |
---|
[1971] | 311 | [AC_MSG_ERROR([cannot find opengl headers]) ]) |
---|
| 312 | |
---|
[2701] | 313 | # checking for libGLU |
---|
[5276] | 314 | AC_CHECK_LIB([glu32], [main], [FOUND_GLU=yes; LIBS="$LIBS -lGLU32"]) |
---|
| 315 | if test x$FOUND_GLU != xyes ; then |
---|
[4555] | 316 | echo "------------------" |
---|
| 317 | echo "GLU library not found." |
---|
| 318 | echo "please install the GLU library, that should come with openGL, which can be found at http://www.opengl.org" |
---|
| 319 | echo "------------------" |
---|
| 320 | exit -1 |
---|
[1959] | 321 | fi |
---|
[1971] | 322 | |
---|
[5270] | 323 | # checking glew header |
---|
| 324 | AC_CHECK_HEADERS(GL/glew.h ,, |
---|
| 325 | [AC_MSG_ERROR([cannot find opengl extension wrangler headers]) ]) |
---|
| 326 | # checking for Windows glew library |
---|
[5276] | 327 | AC_CHECK_LIB([glew32], [main], [FOUND_GLEW=yes; LIBS="$LIBS -lglew32"]) |
---|
| 328 | if test x$FOUND_GLEW != xyes ; then |
---|
[5270] | 329 | echo "------------------" |
---|
| 330 | echo "opengl extension wrangler not found." |
---|
| 331 | echo "please install the glew package which can be found at http://glew.sourceforge.net" |
---|
| 332 | echo "------------------" |
---|
| 333 | exit -1 |
---|
| 334 | fi |
---|
| 335 | |
---|
[4697] | 336 | #--------# |
---|
| 337 | # openAL # |
---|
| 338 | #--------# |
---|
| 339 | # checking for openAL-headers |
---|
| 340 | AC_CHECK_HEADERS([AL/al.h] ,, |
---|
| 341 | [AC_MSG_ERROR([cannot find openAL header.])]) |
---|
| 342 | # checking for openAL-lib |
---|
[5276] | 343 | AC_CHECK_LIB([OpenAL32], [main], [FOUND_OPENAL=yes; LIBS="$LIBS -lOpenAL32"]) |
---|
[5436] | 344 | AC_CHECK_LIB([ALut], [main], [FOUND_ALUT=yes; LIBS="-lALut $LIBS"]) |
---|
[5276] | 345 | if test x$FOUND_OPENAL != xyes ; then |
---|
[2982] | 346 | echo "------------------" |
---|
[4697] | 347 | echo "openal library not found." |
---|
| 348 | echo "please install the openal library, which can be found at http://www.openal.org" |
---|
[2982] | 349 | echo "------------------" |
---|
| 350 | exit -1 |
---|
[4697] | 351 | fi |
---|
[4825] | 352 | |
---|
[5276] | 353 | |
---|
| 354 | #-----------# |
---|
| 355 | # SDL(win) # |
---|
| 356 | #-----------# |
---|
| 357 | # checking for SDL-headers |
---|
| 358 | AC_CHECK_HEADERS([SDL/SDL.h] ,, |
---|
| 359 | [AC_MSG_ERROR([cannot find SDL headers]) ]) |
---|
| 360 | |
---|
| 361 | #checking for libSDL |
---|
| 362 | AC_CHECK_LIB([sdlmain], [main], [FOUND_sdlmain=yes; LIBS="$LIBS -lsdlmain"]) |
---|
| 363 | if test x$FOUND_sdlmain != xyes ; then |
---|
| 364 | echo "------------------" |
---|
| 365 | echo "SDL library not found." |
---|
| 366 | echo "please install the SDL library, which can be found at http://www.libsdl.org" |
---|
| 367 | echo "------------------" |
---|
| 368 | exit 1 |
---|
| 369 | fi |
---|
| 370 | AC_CHECK_LIB([sdl], [main], [FOUND_SDL=yes; LIBS="$LIBS -lsdl"]) |
---|
| 371 | if test x$FOUND_SDL != xyes ; then |
---|
| 372 | echo "------------------" |
---|
| 373 | echo "SDL library not found." |
---|
| 374 | echo "please install the SDL library, which can be found at http://www.libsdl.org" |
---|
| 375 | echo "------------------" |
---|
| 376 | exit -1 |
---|
| 377 | fi |
---|
| 378 | |
---|
| 379 | ;; |
---|
| 380 | |
---|
[4825] | 381 | ######### |
---|
[3424] | 382 | #-------# |
---|
| 383 | # LINUX # |
---|
| 384 | #-------# |
---|
[4825] | 385 | ######### |
---|
[2980] | 386 | *-*-linux*) |
---|
[2701] | 387 | echo "Linux detected" |
---|
| 388 | |
---|
| 389 | Linux="yes" |
---|
| 390 | |
---|
[5265] | 391 | ##CPPFLAGS="-I/usr/include $CPPFLAGS" |
---|
[5224] | 392 | ##LDFLAGS="-L/usr/lib $LDFLAGS" |
---|
[5221] | 393 | if test x$SHARED_LIB_PATH != xno; then |
---|
[5265] | 394 | echo "setting new LDFLAGS with $SHARED_LIB_PATH" |
---|
| 395 | LDFLAGS="-Wl,-rpath,$SHARED_LIB_PATH -L$SHARED_LIB_PATH $LDFLAGS" |
---|
[5221] | 396 | fi |
---|
| 397 | |
---|
[5277] | 398 | #--------# |
---|
| 399 | # openGL # |
---|
| 400 | #--------# |
---|
[6164] | 401 | AX_CHECK_REQUIRED_HEADER_LIB([GL/gl.h], [GL], [main],,, [http://www.opengl.org]) |
---|
| 402 | AX_CHECK_REQUIRED_HEADER_LIB([GL/glu.h], [GLU], [main],,, [http://www.opengl.org]) |
---|
| 403 | AX_CHECK_REQUIRED_HEADER_LIB([GL/glew.h], [GLEW], [main],,, [http://glew.sourceforge.net]) |
---|
[2701] | 404 | |
---|
[4697] | 405 | #--------# |
---|
| 406 | # openAL # |
---|
| 407 | #--------# |
---|
[6164] | 408 | |
---|
[6271] | 409 | AX_CHECK_REQUIRED_HEADER_LIB([AL/al.h], [openal], [main],,, [http://www.openal.org]) |
---|
| 410 | AX_CHECK_HEADER_LIB([AL/alut.h], [alut], [main],,, [http://www.openal.org]) |
---|
[6164] | 411 | |
---|
[5276] | 412 | #-----# |
---|
| 413 | # SDL # |
---|
| 414 | #-----# |
---|
[4664] | 415 | # checking for SDL |
---|
| 416 | AC_MSG_CHECKING([for SDL-version]) |
---|
| 417 | SDL_VERSION=`sdl-config --version` |
---|
| 418 | echo $SDL_VERSION |
---|
[5224] | 419 | CPPFLAGS="$CPPFLAGS `sdl-config --cflags`" |
---|
[2991] | 420 | |
---|
[6271] | 421 | AX_CHECK_REQUIRED_HEADER_LIB([SDL.h SDL/SDL.h], [SDL], [main],,, [http://www.libsdl.org]) |
---|
| 422 | |
---|
[4664] | 423 | ;; |
---|
[3140] | 424 | |
---|
[4825] | 425 | ############# |
---|
[3424] | 426 | #-----------# |
---|
| 427 | # MAC -OS X # |
---|
| 428 | #-----------# |
---|
[4825] | 429 | ############# |
---|
[2995] | 430 | *darwin*) |
---|
[3424] | 431 | echo "OS X detected" |
---|
[2995] | 432 | |
---|
| 433 | osX="yes" |
---|
| 434 | |
---|
[4662] | 435 | CPPFLAGS="-I/sw/include -I/sw/include $CPPFLAGS" |
---|
[5278] | 436 | LDFLAGS="$LDFLAGS -L/sw/lib" |
---|
[2995] | 437 | # checking gl header |
---|
[3424] | 438 | AC_CHECK_HEADERS([OpenGL/gl.h] ,, |
---|
[2995] | 439 | [AC_MSG_ERROR([cannot find opengl headers]) ]) |
---|
| 440 | # cheking for GLU-header |
---|
[3424] | 441 | AC_CHECK_HEADERS([OpenGL/glu.h] ,, |
---|
[2995] | 442 | [AC_MSG_ERROR([cannot find opengl headers]) ]) |
---|
| 443 | |
---|
| 444 | LIBS="$LIBS -framework OpenGL" |
---|
| 445 | |
---|
[5279] | 446 | |
---|
| 447 | |
---|
| 448 | # checking for GLEW-headers |
---|
| 449 | AC_CHECK_HEADERS([GL/glew.h] ,, |
---|
| 450 | [AC_MSG_ERROR([cannot find glew headers]) ]) |
---|
| 451 | # checking for GLEW-lib |
---|
| 452 | AC_CHECK_LIB([GLEW], [main], [FOUND_GLEW=yes; LIBS="$LIBS -lGLEW"]) |
---|
| 453 | if test x$FOUND_GLEW != xyes ; then |
---|
| 454 | echo "------------------" |
---|
| 455 | echo "glew not found." |
---|
| 456 | echo "please install the glew package which can be found at http://glew.sourceforge.net" |
---|
| 457 | echo "------------------" |
---|
| 458 | exit -1 |
---|
| 459 | fi |
---|
| 460 | |
---|
| 461 | |
---|
[5278] | 462 | AC_CHECK_HEADERS([OpenAL/al.h] ,, |
---|
| 463 | [AC_MSG_ERROR([cannot find opengl headers]) ]) |
---|
| 464 | HAVE_OPENAL=yes |
---|
| 465 | LIBS="$LIBS -framework OpenAL" |
---|
[4662] | 466 | |
---|
[5278] | 467 | |
---|
[4662] | 468 | ## SDL-check |
---|
[5295] | 469 | SDL_CFLAGS=`sdl-config --cflags` |
---|
| 470 | SDL_LIBS=`sdl-config --libs` |
---|
| 471 | CXXFLAGS="$CXXFLAGS $SDL_CFLAGS" |
---|
| 472 | LIBS="$LIBS $SDL_LIBS" |
---|
[5278] | 473 | AC_CHECK_HEADERS([SDL/SDL.h] ,, |
---|
| 474 | [AC_MSG_ERROR([cannot find SDL headers]) ]) |
---|
| 475 | HAVE_SDL=yes |
---|
[5295] | 476 | # LIBS="$LIBS -framework SDL" |
---|
[3424] | 477 | |
---|
[2995] | 478 | # checking for SDL-headers |
---|
[3001] | 479 | # AC_CHECK_HEADERS(SDL/SDL.h ,, |
---|
| 480 | # [AC_MSG_ERROR([cannot find SDL headers]) ]) |
---|
[2995] | 481 | |
---|
| 482 | ## checking for SDL |
---|
| 483 | # SDL_VERSION=1.2.7 |
---|
| 484 | # AM_PATH_SDL($SDL_VERSION, |
---|
| 485 | # :, |
---|
| 486 | # AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]) |
---|
| 487 | # ) |
---|
| 488 | |
---|
[3140] | 489 | |
---|
[2995] | 490 | ;; |
---|
| 491 | |
---|
[2701] | 492 | *) |
---|
| 493 | ;; |
---|
| 494 | esac |
---|
[2968] | 495 | |
---|
[2701] | 496 | AC_SUBST(MSBITFIELDS) |
---|
| 497 | |
---|
[3424] | 498 | ################################### |
---|
| 499 | ## CHECKING FOR HEADERS AND LIBS ## |
---|
| 500 | ################################### |
---|
| 501 | |
---|
[4665] | 502 | #---------# |
---|
| 503 | # SDL_ttf # |
---|
| 504 | #---------# |
---|
[6271] | 505 | AX_CHECK_REQUIRED_HEADER_LIB([SDL_ttf.h SDL/SDL_ttf.h], [SDL_ttf], [TTF_OpenFont],,, [http://www.libsdl.org/projects/SDL_ttf]) |
---|
[4665] | 506 | #-----------# |
---|
| 507 | # SDL_Image # |
---|
| 508 | #-----------# |
---|
[6271] | 509 | AX_CHECK_REQUIRED_HEADER_LIB([SDL_image.h SDL/SDL_image.h], [SDL_image], [main],,, [http://www.libsdl.org/projects/SDL_image]) |
---|
[5822] | 510 | #---------# |
---|
| 511 | # SDL_Net # |
---|
| 512 | #---------# |
---|
[6271] | 513 | AX_CHECK_REQUIRED_HEADER_LIB([SDL_net.h SDL/SDL_net.h], [SDL_net], [main],,, [http://www.libsdl.org/projects/SDL_net]) |
---|
[5822] | 514 | |
---|
[4504] | 515 | #-----# |
---|
| 516 | # ogg # |
---|
| 517 | #-----# |
---|
[6271] | 518 | AX_CHECK_REQUIRED_HEADER_LIB([ogg/ogg.h], [ogg], [main],,, [http://www.xiph.org/ogg/vorbis/index.html]) |
---|
[4504] | 519 | #--------# |
---|
| 520 | # vorbis # |
---|
| 521 | #--------# |
---|
[6271] | 522 | AX_CHECK_REQUIRED_HEADER_LIB([vorbis/codec.h], [vorbis], [main],,, [http://www.xiph.org/ogg/vorbis/index.html]) |
---|
| 523 | AX_CHECK_REQUIRED_HEADER_LIB([vorbis/vorbisfile.h], [vorbisfile], [main],,, [http://www.xiph.org/ogg/vorbis/index.html]) |
---|
[4504] | 524 | |
---|
[3424] | 525 | #---------# |
---|
| 526 | # libcURL # |
---|
| 527 | #---------# |
---|
[6271] | 528 | AX_CHECK_HEADER_LIB([curl/curl.h], [curl], [main], [ |
---|
| 529 | have_curl=yes |
---|
[3423] | 530 | CURL_LIBS=`curl-config --libs` |
---|
| 531 | CURLCFLAGS=`curl-config --cflags` |
---|
[6271] | 532 | AC_DEFINE_UNQUOTED(HAVE_CURL, 1, [if we have CURL]) ] |
---|
| 533 | ,, [http://curl.haxx.se/]) |
---|
[3423] | 534 | |
---|
| 535 | AC_SUBST(CURL_LIBS) |
---|
| 536 | AC_SUBST(CURL_CFLAGS) |
---|
[6271] | 537 | AM_CONDITIONAL(HAVE_CURL, test "x$have_curl" = "xyes") |
---|
[3423] | 538 | |
---|
[3863] | 539 | #--------# |
---|
| 540 | # efence # |
---|
| 541 | #--------# |
---|
| 542 | if test x$def_efence = xyes ; then |
---|
[5276] | 543 | AC_CHECK_LIB([efence], [main], [FOUND_efence=yes; LIBS="$LIBS -lefence"]) |
---|
| 544 | if test x$FOUND_efence != xyes ; then |
---|
| 545 | echo "efence was requested, but is not installed!! going on" |
---|
[3863] | 546 | fi |
---|
[4555] | 547 | |
---|
[3863] | 548 | fi |
---|
| 549 | |
---|
[5276] | 550 | #-----# |
---|
| 551 | # GTK # |
---|
| 552 | #-----# |
---|
| 553 | if test x$def_gtk = xyes; then |
---|
| 554 | #PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= 2.0.3 gthread-2.0 >= 2.0.3, have_gtk2=yes, have_gtk2=no) |
---|
| 555 | AC_MSG_CHECKING([for gtk2.0]) |
---|
| 556 | if `$PKG_CONFIG --exists gtk+-2.0`; then |
---|
| 557 | echo "yes" |
---|
| 558 | have_gtk2=yes |
---|
| 559 | GTK2_LIBS=`$PKG_CONFIG --libs gtk+-2.0` |
---|
| 560 | GTK2_CFLAGS=`$PKG_CONFIG --cflags gtk+-2.0` |
---|
| 561 | AC_DEFINE_UNQUOTED(HAVE_GTK2, 1, [if we have GTK2]) |
---|
| 562 | if test $DEBUG -ge 3; then |
---|
| 563 | echo "cflags: $GTK2_CFLAGS" |
---|
| 564 | echo "libs: $GTK2_LIBS" |
---|
| 565 | fi |
---|
| 566 | else |
---|
| 567 | echo "no" |
---|
| 568 | fi |
---|
| 569 | |
---|
| 570 | fi |
---|
| 571 | AC_SUBST(GTK2_LIBS) |
---|
| 572 | AC_SUBST(GTK2_CFLAGS) |
---|
| 573 | AM_CONDITIONAL(HAVE_GTK2, test x$have_gtk2 = xyes) |
---|
| 574 | |
---|
| 575 | |
---|
[1945] | 576 | # FIXME: Replace `main' with a function in `-lm': |
---|
[2968] | 577 | AC_CHECK_LIB([m], [main]) |
---|
[1945] | 578 | |
---|
[4555] | 579 | |
---|
[1945] | 580 | # Checks for header files. |
---|
| 581 | AC_HEADER_STDC |
---|
| 582 | AC_CHECK_HEADERS([stdlib.h string.h]) |
---|
| 583 | |
---|
| 584 | # Checks for typedefs, structures, and compiler characteristics. |
---|
| 585 | AC_HEADER_STDBOOL |
---|
| 586 | |
---|
| 587 | # Checks for library functions. |
---|
| 588 | AC_FUNC_MALLOC |
---|
| 589 | AC_CHECK_FUNCS([bzero sqrt]) |
---|
| 590 | |
---|
[3424] | 591 | ###################### |
---|
| 592 | ## OUTPUT CONFIGURE ## |
---|
| 593 | ###################### |
---|
[1946] | 594 | AC_CONFIG_FILES([Makefile |
---|
[3377] | 595 | src/Makefile |
---|
[4555] | 596 | src/lib/Makefile |
---|
| 597 | src/lib/graphics/Makefile |
---|
| 598 | src/lib/graphics/importer/Makefile |
---|
[4789] | 599 | src/lib/graphics/spatial_separation/Makefile |
---|
[4555] | 600 | src/lib/sound/Makefile |
---|
| 601 | src/lib/event/Makefile |
---|
| 602 | src/lib/physics/Makefile |
---|
| 603 | src/lib/particles/Makefile |
---|
| 604 | src/lib/collision_detection/Makefile |
---|
[6383] | 605 | src/lib/network/Makefile |
---|
[5160] | 606 | src/lib/shell/Makefile |
---|
[4555] | 607 | src/lib/gui/Makefile |
---|
[5467] | 608 | src/lib/gui/gtk_gui/Makefile |
---|
| 609 | src/lib/gui/gl_gui/Makefile |
---|
[5944] | 610 | src/lib/parser/Makefile |
---|
| 611 | src/lib/parser/tinyxml/Makefile |
---|
| 612 | src/lib/parser/ini_parser/Makefile |
---|
[5350] | 613 | src/util/Makefile |
---|
[4662] | 614 | src/subprojects/Makefile |
---|
[4555] | 615 | src/subprojects/testmain/Makefile |
---|
| 616 | src/subprojects/importer/Makefile |
---|
| 617 | src/subprojects/particles/Makefile |
---|
| 618 | src/subprojects/collision_detection/Makefile |
---|
[5822] | 619 | src/subprojects/network/Makefile |
---|
[4555] | 620 | ]) |
---|
[3377] | 621 | |
---|
[1945] | 622 | AC_OUTPUT |
---|