Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/configure.ac @ 6248

Last change on this file since 6248 was 6164, checked in by bensch, 19 years ago

orxonox/trunk: ac-files for easier checks in the configure.ac

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