Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/textEngine/configure.ac @ 3774

Last change on this file since 3774 was 3703, checked in by bensch, 19 years ago

orxonox/branches/textEngine: orxonox compiles under Windows again
@patrick: i had to disable benchMark in orxonox.cc (with #ifndef WIN32) see for yourself

File size: 15.4 KB
RevLine 
[3424]1##########################################################################
2#   orxonox - the future of 3D-vertical-scrollers                        #
3#                                                                        #
4#   Copyright (C) 2004 orx                                               #
5#                                                                        #
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)  #
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.                     #
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.                  #
19##########################################################################
[1945]20
[3424]21#########################
22## AUTOCONF INIT PHASE ##
23#########################
[3218]24AC_PREREQ(2.56)
[3681]25AC_INIT(orxonox, 0.2.2-pre-alpha, [orxonox-dev at mail.datacore.ch])
[2980]26
[3424]27## Detect the canonical host and target build environment.
[2980]28AC_CANONICAL_BUILD
29AC_CANONICAL_HOST
30AC_CANONICAL_TARGET
31
[1959]32AM_INIT_AUTOMAKE
[2618]33
[1951]34AC_CONFIG_SRCDIR([.])
[1945]35AC_CONFIG_HEADER([config.h])
36
[3424]37#########################
38## Checks for programs ##
39#########################
[1945]40AC_PROG_CXX
[2925]41AC_HEADER_STDC
[2701]42
[3424]43##################################
44## CHECKING  OPTIONAL ARGUMENTS ##
45##################################
46
47#-----------------#
48# DEBUG-statement #
49#-----------------#
[3173]50DEBUG=no
51AC_MSG_CHECKING([if DEBUG-mode should be enabled])
[3181]52AC_ARG_ENABLE([debug],
[3205]53        AC_HELP_STRING( [--enable-debug], [compiles in debug mode. Lots of debug info about the game.]),
54         DEBUG=$enableval)
55
[3424]56if test x$DEBUG = xno; then
[3205]57        echo "no"
[3681]58        echo " -> Setting debuglevel to 4. (orxonox is still in Development. It really is needed."
59        DEBUG=4
[3424]60elif test x$DEBUG = xyes; then
[3205]61        echo "yes"
[3424]62        echo " -> Setting debuglevel to 4. HARD DEBUG MODE!!."
63        DEBUG=4
[3205]64else       
[3424]65        echo "yes: setting debuglevel to to $DEBUG"
[3173]66fi
[3205]67        AC_DEFINE_UNQUOTED(DEBUG, $DEBUG, [in which debug mode we are])
68
[3173]69AC_SUBST(DEBUG)
70
[3681]71#---------------#
72# Modular Debug #
73#---------------#
74MODULAR_DEBUG=yes
75AC_MSG_CHECKING([if Modular-DEBUG-mode should be ebabled])
76AC_ARG_ENABLE([modular-debug],
77        AC_HELP_STRING( [--disable-modular-debug], [compiles in modular-debug mode, that logs differently on the many modules of orxonox.]),
78         MODULAR_DEBUG=$enableval)
79
80if test x$MODULAR_DEBUG = xno; then
81        echo "no"
82elif test x$MODULAR_DEBUG = xyes; then
83        echo "yes"
84        AC_DEFINE_UNQUOTED(MODULAR_DEBUG, 1, [if Modular-DUBUG mode is enabled])
85fi
86
[3424]87#--------------#
88# GTK-disabled #
89#--------------#
[3100]90AC_MSG_CHECKING([if gtk should be enabled])
[3181]91AC_ARG_WITH([gtk],
92        AC_HELP_STRING( [--without-gtk],
[3205]93        [Prevents GTK from being loaded]), [def_gtk=no], [def_gtk=yes])
[3424]94if test x$def_gtk = xyes; then
[3100]95  echo "yes"
96fi
[3424]97if test x$def_gtk = xno; then
[3100]98  echo "no"
99fi
[3423]100
[3424]101#------------------#
102# gThread-disabled #
103#------------------#
[3423]104AC_MSG_CHECKING([if gThread should be enabled])
105AC_ARG_WITH([gthread],
[3424]106        AC_HELP_STRING( [--without-gthread],
[3423]107        [Prevents gThread from being loaded]), [def_gthread=no], [def_gthread=yes])
[3424]108if test x$def_gthread = xyes; then
[3423]109  echo "yes"
110fi
[3424]111if test x$def_gthread = xno; then
[3423]112  echo "no"
113fi
114
[3424]115#------------------#
116# pthread-disabled #
117#------------------#
[3423]118AC_MSG_CHECKING([if pthread should be enabled])
119AC_ARG_WITH([pthread],
120        AC_HELP_STRING( [--without-pthread],
121        [Prevents pthread from being loaded]), [def_pthread=no], [def_pthread=yes])
[3424]122if test x$def_pthread = xyes; then
[3423]123  echo "yes"
124fi
[3424]125if test x$def_pthread = xno; then
[3423]126  echo "no"
127fi
128
[3424]129#------------------#
130# libCurl-disabled #
131#------------------#
[3423]132AC_MSG_CHECKING([if libcURL should be enabled])
133AC_ARG_WITH([curl],
134        AC_HELP_STRING( [--without-curl],
135        [Prevents libcURL from being loaded]), [def_curl=no], [def_curl=yes])
[3424]136if test x$def_curl = xyes; then
[3423]137  echo "yes"
138fi
[3424]139if test x$def_curl = xno; then
[3423]140  echo "no"
141fi
142
[3424]143#-------------------#
144# SDL_image-disable #
145#-------------------#
[3140]146def_sdl_image=yes
147AC_MSG_CHECKING([if SDL_image should be enabled])
[3181]148AC_ARG_WITH([sdl_image],
149        AC_HELP_STRING( [--without-sdl-image],
[3140]150        [Prevents SDL_image from being loaded]), [def_sdl_image=no])
[3424]151if test x$def_sdl_image = xyes; then
[3140]152  echo "yes"
153fi
[3424]154if test x$def_sdl_image = xno; then
[3140]155  echo "no"
156fi
[3681]157
[3424]158#-------------------#
159# SubProject-enable #
160#-------------------#
161def_sub_projects=no
[3377]162AC_MSG_CHECKING([if the SubProjects should be built])
163AC_ARG_ENABLE([sub-projects],
164        AC_HELP_STRING( [--enable-sub-projects],
[3424]165        [also builds the subProjects while make from srcdir]), [def_sub_projects=yes])
166if test x$def_sub_projects = xyes; then
[3377]167  echo "yes"
168fi
[3424]169if test x$def_sub_projects = xno; then
[3377]170  echo "no"
171fi
172AM_CONDITIONAL(SUB_PROJECTS, test x$def_sub_projects = xyes)
173
[3681]174#----------------------#
175# Documentation-enable #
176#----------------------#
177def_documentation=no
178AC_MSG_CHECKING([if the Documentation should be build by default])
179AC_ARG_ENABLE([documentation],
180        AC_HELP_STRING( [--enable-documentation],
181        [also builds the sDocumentation while make from srcdir]), [def_documentation=yes])
182if test x$def_documentation = xyes; then
183  echo "yes"
184fi
185if test x$def_documentation = xno; then
186  echo "no"
187fi
188AM_CONDITIONAL(DOCUMENTATION, test x$def_documentation = xyes)
[3424]189#######################
190## PROGRAMM CHECKING ##
191## 3. party Programs ##
192#######################
193
194#----------------------#
195# checking for Doxygen #
196#----------------------#
[3219]197AC_PATH_PROG(DOXYGEN, doxygen)
198AM_CONDITIONAL(DOXYGEN, test $DOXYGEN)
199
[3424]200#########################
201## CHECKING FOR SYSTEM ##
202#########################
203## here the system is checked, and openGL is included
204## also checking for SDL on differen Systems
[2701]205
206AC_MSG_CHECKING([for System])
[2980]207## checking for openGL-environment and other sys-specific parameters
208case "$target" in
[3424]209#---------#
210# WINDOWS #
211#---------#
[2980]212  *-*-mingw32*)
[2701]213echo "mingw-WINDOWS detected"
214
[3703]215CPPFLAGS="-I/usr/include/SDL -I/mingw/include/SDL"
216
[2701]217    mingw="yes"
218    MSBITFIELDS="-mms-bitfields"
219    MWINDOWS="-mwindows"
220
221# checking gl header
222        #done before loop
223
[2925]224# checking gl header
[2879]225   AC_CHECK_HEADERS(GL/gl.h ,,
226      [AC_MSG_ERROR([cannot find opengl headers]) ])
[2701]227#   checking for Windows openGl library
[1971]228    AC_CHECK_LIB([opengl32], [main], FOUND_opengl32=yes, "gl/gl.h")
[3424]229    if test x$FOUND_opengl32 = xyes ; then
[1959]230        LIBS="$LIBS -lopengl32"
[1971]231    else
[1959]232         echo "------------------"
233         echo "opengl not found."
234         echo "please install the opengl package which can be found at http://www.opengl.org"
235         echo "------------------"
236         exit -1
237    fi
238
[2701]239# cheking for GLU-header
[3424]240    AC_CHECK_HEADERS([GL/glu.h] ,,
[1971]241      [AC_MSG_ERROR([cannot find opengl headers]) ])
242
[2701]243# checking for libGLU
[1971]244    AC_CHECK_LIB([glu32], [main], FOUND_glu32=yes)
[3424]245    if test x$FOUND_glu32 = xyes ; then
[1959]246        LIBS="$LIBS -lGLU32"
[2701]247    else
[1959]248         echo "------------------"
249         echo "GLU library not found."
250         echo "please install the GLU library, that should come with openGL, which can be found at http://www.opengl.org"
251         echo "------------------"
252         exit -1
253    fi
[1971]254
[2701]255# checking for mingw32
256    AC_CHECK_LIB([mingw32], [main], FOUND_mingw32=yes)
[3424]257    if test x$FOUND_mingw32 = xyes; then
[2701]258        LIBS="$LIBS -lmingw32"
259    fi
[2982]260# checking for SDL-headers
[3703]261    AC_CHECK_HEADERS([SDL.h] ,,
[2982]262      [AC_MSG_ERROR([cannot find SDL headers]) ])
[2701]263
[2982]264#checking for libSDL
265    AC_CHECK_LIB([sdlmain], [main], FOUND_sdlmain=yes)
[3424]266    if test x$FOUND_sdlmain = xyes ; then
[2982]267       LIBS="$LIBS -lsdlmain"
268    else
269        echo "------------------"
270        echo "SDL library not found."
271        echo "please install the SDL library, which can be found at http://www.libsdl.org"
272        echo "------------------"
273        exit 1
274    fi
275    AC_CHECK_LIB([sdl], [main], FOUND_sdl=yes)
[3424]276    if test x$FOUND_sdl = xyes ; then
[2982]277       LIBS="$LIBS -lsdl"
278    else
279        echo "------------------"
280        echo "SDL library not found."
281        echo "please install the SDL library, which can be found at http://www.libsdl.org"
282        echo "------------------"
283        exit -1
284    fi
285
[2701]286    ;;
[3424]287#-------#
288# LINUX #
289#-------#
[2980]290 *-*-linux*)
[2701]291echo "Linux detected"
292
293 Linux="yes"
294
[3691]295CPPFLAGS="-I/usr/X11R6/include -I/usr/include/SDL"
[3385]296LDFLAGS="-L/usr/lib/opengl/xorg-x11/lib -L/usr/Mesa-6.0.1/lib -L/usr/X11R6/lib $LDFLAGS"
[2925]297# checking gl header
[3424]298   AC_CHECK_HEADERS([GL/gl.h] ,,
[2879]299      [AC_MSG_ERROR([cannot find opengl headers]) ])
[2701]300
301#  checking for Unix GL
[3385]302   AC_CHECK_LIB([GL], [glLoadIdentity], FOUND_GL=yes)
[3424]303   if test x$FOUND_GL = xyes ; then
[2701]304     LIBS="$LIBS -lGL"
305   else
306         echo "------------------"
307         echo "opengl not found."
308         echo "please install the opengl package which can be found at http://www.opengl.org"
309         echo "------------------"
310         exit -1
311   fi
312
313# cheking for GLU-header
[3424]314    AC_CHECK_HEADERS([GL/glu.h] ,,
[2701]315      [AC_MSG_ERROR([cannot find opengl headers]) ])
316
317    AC_CHECK_LIB([GLU], [gluProject], FOUND_GLU=yes)
[3424]318    if test x$FOUND_GLU = xyes ; then
[2701]319      LIBS="$LIBS -lGLU"
320    else
321         echo "------------------"
322         echo "GLU library not found."
323         echo "please install the GLU library, that should come with openGL, which can be found at http://www.opengl.org"
324         echo "------------------"
325         exit -1
326    fi   
[2995]327
[2991]328# checking for SDL-headers
[3701]329    AC_CHECK_HEADERS([SDL.h] ,,
[2991]330      [AC_MSG_ERROR([cannot find SDL headers]) ])
[2982]331
[3140]332# checking for SDL-lib
[2991]333    AC_CHECK_LIB([SDL], [main], FOUND_SDL=yes)
[3424]334     if test x$FOUND_SDL = xyes ; then
[2991]335       LIBS="$LIBS -lSDL"
336     else
337        echo "------------------"
338        echo "SDL library not found."
339        echo "please install the SDL library, which can be found at http://www.libsdl.org"
340        echo "------------------"
341        exit -1
342     fi   
343
[3140]344
[2982]345## checking for SDL
[2991]346#    SDL_VERSION=1.2.7
347#    AM_PATH_SDL($SDL_VERSION,
348#      :,
349#      AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!])
350#      )
351#    CXXFLAGS="$CXXFLAGS $SDL_CFLAGS"
352#    LIBS="$LIBS $SDL_LIBS"
[2701]353    ;;
[3424]354#-----------#
355# MAC -OS X #
356#-----------#
[2995]357 *darwin*)
[3424]358 echo "OS X detected"
[2995]359
360 osX="yes"
361
[3140]362 CPPFLAGS="-I/sw/include $CPPFLAGS"
[2995]363# checking gl header
[3424]364   AC_CHECK_HEADERS([OpenGL/gl.h] ,,
[2995]365      [AC_MSG_ERROR([cannot find opengl headers]) ])
366# cheking for GLU-header
[3424]367    AC_CHECK_HEADERS([OpenGL/glu.h] ,,
[2995]368      [AC_MSG_ERROR([cannot find opengl headers]) ])
369
370   LIBS="$LIBS -framework OpenGL"
371
[3424]372       SDL_CFLAGS=`sdl-config --cflags`
373       SDL_LIBS=`sdl-config --libs`
374       CXXFLAGS="$CXXFLAGS $SDL_CFLAGS"
375       LIBS="$LIBS $SDL_LIBS"
376
377
[2995]378# checking for SDL-headers
[3001]379#    AC_CHECK_HEADERS(SDL/SDL.h ,,
380#      [AC_MSG_ERROR([cannot find SDL headers]) ])
[2995]381
382## checking for SDL
383#    SDL_VERSION=1.2.7
384#    AM_PATH_SDL($SDL_VERSION,
385#      :,
386#      AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!])
387#      )
388
[3140]389
[2995]390    ;;
391
[2701]392  *)
393    ;;
394esac
[2968]395
[2701]396AC_SUBST(MSBITFIELDS)
397
[3424]398###################################
399## CHECKING FOR HEADERS AND LIBS ##
400###################################
401
[3702]402#---------#
403# SDL_ttf #
404#---------#
[3682]405# checking for SDL_ttf-headers
[3702]406  AC_CHECK_HEADERS([SDL_ttf.h] ,,
407      [AC_MSG_ERROR([cannot find SDL_ttf header.])])
[3682]408#fi
409# checking for SDL_ttf-lib
410  AC_CHECK_LIB([SDL_ttf], [main], [FOUND_SDL_ttf=yes])
411     if test x$FOUND_SDL_ttf = xyes ; then
412       LIBS="$LIBS -lSDL_ttf"
413     else
414        echo "------------------"
415        echo "SDL_ttf library not found."
416        echo "please install the SDL_ttf library, which can be found at http://www.libsdl.org/projects/SDL_ttf/"
417        echo "------------------"
418        exit -1
419     fi   
420
421#-----------#
422# SDL_Image #
423#-----------#
[3424]424if test x$def_sdl_image = xyes; then
[3140]425# checking for SDL_image-headers
[3701]426  AC_CHECK_HEADERS([SDL_image.h] ,,
[3178]427      [echo "sdl_image not found. falling back to other options"; def_sdl_image=no ])
[3140]428fi
[3424]429if test x$def_sdl_image = xyes; then
[3140]430# checking for SDL_image-lib
[3424]431  AC_CHECK_LIB([SDL_image], [main], [FOUND_SDL_image=yes])
432     if test x$FOUND_SDL_image = xyes ; then
[3140]433       LIBS="$LIBS -lSDL_image"
434     else
435        echo "------------------"
436        echo "SDL_image library not found."
437        echo "please install the SDL_image library, which can be found at http://www.libsdl.org/projects/SDL_image/"
438        echo "------------------"
439        exit -1
440     fi   
441fi
[2701]442
[3424]443## case no SDL-image:
444if test x$def_sdl_image = xno; then
445#---------#
446# libjpeg #
447#---------#
448 AC_CHECK_HEADERS([jpeglib.h], [jpegHeader="yes"],
449        [jpegHeader="no"])
[3425]450 if test x$jpegHeader = xno; then
[3140]451        echo " not including jpeg."
452 else
[3424]453  AC_CHECK_LIB([jpeg], [main], [FOUND_jpeg=yes])
454    if test x$FOUND_jpeg = xyes ; then
[3140]455      LIBS="$LIBS -ljpeg"
456    else
457         echo "------------------"
458         echo "jpeg library not found."
459         echo "please install the jpeg library from the Independent JPEG Group, which can be found at http://www.ijg.org"
460         echo "------------------"
461         exit -1
462    fi   
463 fi
[2980]464
[3424]465#--------#
466# libpng #
467#--------#
468 AC_CHECK_HEADERS([png.h], [pngHeader="yes"],
469        [pngHeader="no"])
470 if test x$pngHeader = xno; then
[3140]471        echo " not including png."
472 else
473  AC_CHECK_LIB([png], [main], FOUND_png=yes)
[3424]474    if test x$FOUND_png = xyes ; then
[3140]475      LIBS="$LIBS -lpng"
476    else
477         echo "------------------"
478         echo "png library not found."
479         echo "please install the png library, which can be found at http://libpng.org/pub/png/libpng.html"
480         echo "------------------"
481         exit -1
482    fi
483 fi   
484fi
485
[3424]486#-----#
487# GTK #
488#-----#
489if test x$def_gtk = xyes; then
[3100]490
491        #PKG_CHECK_MODULES(GTK2, gtk+-2.0 >= 2.0.3 gthread-2.0 >= 2.0.3, have_gtk2=yes, have_gtk2=no)
492        AC_MSG_CHECKING([for gtk2.0])
493        if `pkg-config --exists gtk+-2.0`; then
494                echo "yes"
495                have_gtk2=yes
496                GTK2_LIBS=`pkg-config --libs gtk+-2.0`
497                GTK2_CFLAGS=`pkg-config --cflags gtk+-2.0`
[3101]498                AC_DEFINE_UNQUOTED(HAVE_GTK2, 1, [if we have GTK2])
[3100]499        else
500                echo "no"
501        fi
[3101]502
[3099]503fi
[2980]504AC_SUBST(GTK2_LIBS)
505AC_SUBST(GTK2_CFLAGS)
[3100]506AM_CONDITIONAL(HAVE_GTK2, test x$have_gtk2 = xyes)
[2980]507
[3424]508#---------#
509# gThread #
510#---------#
511if test x$def_gthread = xyes; then
[2980]512
[3423]513        AC_MSG_CHECKING([for gthread])
514        if `pkg-config --exists gthread-2.0`; then
515                echo "yes"
516                have_gthread=yes
517                GTHREAD_LIBS=`pkg-config --libs gthread-2.0`
518                GTHREAD_CFLAGS=`pkg-config --cflags gthread-2.0`
519                AC_DEFINE_UNQUOTED(HAVE_GTHREAD, 1, [if we have gThread])
520        else
521                echo "no"
522        fi
[3100]523
[3423]524fi
525AC_SUBST(GTHREAD_LIBS)
526AC_SUBST(GTHREAD_CFLAGS)
527AM_CONDITIONAL(HAVE_GTHREAD, test x$have_gthread = xyes)
[2190]528
[3424]529#---------#
530# libcURL #
531#---------#
532if test x$def_curl = xyes; then
[2190]533
[3424]534 AC_CHECK_HEADERS([curl/curl.h], [curlHeader="yes"], [curlHeader="no"])
[3423]535 AC_CHECK_LIB([curl], [main], [FOUND_curl=yes])
536 if test x$curlHeader = xyes & test x$FOUND_curl = xyes ; then
537  have_curl=yes
538  CURL_LIBS=`curl-config --libs`
539  CURLCFLAGS=`curl-config --cflags`
540  AC_DEFINE_UNQUOTED(HAVE_CURL, 1, [if we have CURL])
[3424]541 else
[3423]542  have_curl=no
543 fi
544
545fi
546AC_SUBST(CURL_LIBS)
547AC_SUBST(CURL_CFLAGS)
548AM_CONDITIONAL(HAVE_CURL, test x$have_curl = xyes)
549
[3424]550#---------#
551# pthread #
552#---------#
[3423]553if test x$def_pthread = xyes ; then
554 if test x$have_gthread = xyes ; then
[3424]555  AC_CHECK_HEADERS([pthread.h], [pthreadHeader="yes"], [pthreadHeader="no"])
556  AC_CHECK_LIB([pthread], [main], [FOUND_pthread=yes])
557   if test x$FOUND_pthread = xyes ; then
[3423]558      LIBS="$LIBS -lpthread"
559   fi
560 fi
561fi
[3424]562
563
[1945]564# FIXME: Replace `main' with a function in `-lm':
[2968]565 AC_CHECK_LIB([m], [main])
[1945]566
[3099]567 
[1945]568# Checks for header files.
569AC_HEADER_STDC
570AC_CHECK_HEADERS([stdlib.h string.h])
571
572# Checks for typedefs, structures, and compiler characteristics.
573AC_HEADER_STDBOOL
574
575# Checks for library functions.
576AC_FUNC_MALLOC
577AC_CHECK_FUNCS([bzero sqrt])
578
[3424]579######################
580## OUTPUT CONFIGURE ##
581######################
[1946]582AC_CONFIG_FILES([Makefile
[3377]583                 src/Makefile
[3681]584                 src/lib/Makefile
585                 src/lib/graphics/Makefile
586                 src/lib/graphics/importer/Makefile
587                 src/lib/gui/Makefile
588                 src/lib/gui/console/Makefile
589                 src/lib/gui/gui/Makefile
590                 src/subprojects/Makefile
591                 src/subprojects/testmain/Makefile])
[3377]592
[1945]593AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.