Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3605 in orxonox.OLD for orxonox/branches/levelloader/configure.ac


Ignore:
Timestamp:
Mar 18, 2005, 11:52:15 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: merged trunk back to levelloader
merged with command:
svn merge -r 3499:HEAD trunk branches/levelloader

Conflicts in
C track_manager.h
C world_entities/player.cc
C world_entities/player.h
C world_entities/environment.h
C lib/coord/p_node.cc
C defs/debug.h
C track_manager.cc
C story_entities/campaign.h

solved in merge-favouring. It was quite easy because Chris only worked on the headers, and he didi it quite clean. Thats the spirit :)

Conflits in world.cc are a MESS: fix it

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/levelloader/configure.ac

    r3499 r3605  
    2323#########################
    2424AC_PREREQ(2.56)
    25 AC_INIT(orxonox, 0.2.1-pre-alpha, [orxonox-dev at mail.datacore.ch])
     25AC_INIT(orxonox, 0.2.2-pre-alpha, [orxonox-dev at mail.datacore.ch])
    2626
    2727## Detect the canonical host and target build environment.
     
    5656if test x$DEBUG = xno; then
    5757        echo "no"
    58         echo " -> Setting debuglevel to 3. (orxonox is still in Development. It really is needed."
    59         DEBUG=3
     58        echo " -> Setting debuglevel to 4. (orxonox is still in Development. It really is needed."
     59        DEBUG=4
    6060elif test x$DEBUG = xyes; then
    6161        echo "yes"
     
    6868
    6969AC_SUBST(DEBUG)
     70
     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
    7086
    7187#--------------#
     
    139155  echo "no"
    140156fi
     157
    141158#-------------------#
    142159# SubProject-enable #
     
    155172AM_CONDITIONAL(SUB_PROJECTS, test x$def_sub_projects = xyes)
    156173
     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)
    157189#######################
    158190## PROGRAMM CHECKING ##
     
    534566                 src/lib/gui/Makefile
    535567                 src/lib/gui/console/Makefile
    536                  src/lib/gui/gui/Makefile])
     568                 src/lib/gui/gui/Makefile
     569                 src/subprojects/Makefile
     570                 src/subprojects/testmain/Makefile])
    537571
    538572AC_OUTPUT
Note: See TracChangeset for help on using the changeset viewer.