Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3681 in orxonox.OLD for orxonox/branches/textEngine/configure.ac


Ignore:
Timestamp:
Mar 30, 2005, 9:02:23 PM (20 years ago)
Author:
bensch
Message:

orxonox/branches/textEngine: merged trunk here.
merged with command:
svn merge ../trunk textEngine -r 3467:HEAD
no conflicts

File:
1 edited

Legend:

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

    r3460 r3681  
    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 ##
     
    529561AC_CONFIG_FILES([Makefile
    530562                 src/Makefile
    531                  src/importer/Makefile
    532                  src/console/Makefile
    533                  src/gui/Makefile])
     563                 src/lib/Makefile
     564                 src/lib/graphics/Makefile
     565                 src/lib/graphics/importer/Makefile
     566                 src/lib/gui/Makefile
     567                 src/lib/gui/console/Makefile
     568                 src/lib/gui/gui/Makefile
     569                 src/subprojects/Makefile
     570                 src/subprojects/testmain/Makefile])
    534571
    535572AC_OUTPUT
Note: See TracChangeset for help on using the changeset viewer.