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