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