Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5479 in orxonox.OLD for trunk/configure.ac


Ignore:
Timestamp:
Nov 3, 2005, 8:50:51 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: updated to new autoconf, moved resourcemanager to util/loading

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r5478 r5479  
    2424## AUTOCONF INIT PHASE ##
    2525#########################
    26 AC_PREREQ(2.56)
    27 AC_INIT(orxonox, 0.3.1_alpha, [orxonox-dev at mail.datacore.ch])
     26AC_PREREQ(2.59)
     27AC_INIT([orxonox],[0.3.1_alpha],[orxonox-dev at mail.datacore.ch])
    2828
    2929## Detect the canonical host and target build environment.
     
    7070AC_MSG_CHECKING([shared lib path])
    7171AC_ARG_WITH([shared-lib-path],
    72         AC_HELP_STRING( [--with-shared-lib-path], [Tells the executable, where to look for the shared libraries.]),
     72        AS_HELP_STRING(--with-shared-lib-path,Tells the executable, where to look for the shared libraries.),
    7373         SHARED_LIB_PATH=$withval)
    7474if test x$SHARED_LIB_PATH != xno; then
     
    8585AC_MSG_CHECKING([if DEBUG-mode should be enabled])
    8686AC_ARG_ENABLE([debug],
    87         AC_HELP_STRING( [--enable-debug], [compiles in debug mode. Lots of debug info about the game.]),
     87        AS_HELP_STRING(--enable-debug,compiles in debug mode. Lots of debug info about the game.),
    8888         DEBUG=$enableval)
    8989
     
    108108AC_MSG_CHECKING([if Modular-DEBUG-mode should be ebabled])
    109109AC_ARG_ENABLE([modular-debug],
    110         AC_HELP_STRING( [--disable-modular-debug], [compiles in modular-debug mode, that logs differently on the many modules of orxonox.]),
     110        AS_HELP_STRING(--disable-modular-debug,compiles in modular-debug mode, that logs differently on the many modules of orxonox.),
    111111         MODULAR_DEBUG=$enableval)
    112112
     
    123123AC_MSG_CHECKING([if gtk should be enabled])
    124124AC_ARG_ENABLE([gtk],
    125         AC_HELP_STRING( [--disable-gtk],
    126         [Prevents GTK from being loaded]), [def_gtk=no], [def_gtk=yes])
     125        AS_HELP_STRING(--disable-gtk,Prevents GTK from being loaded), [def_gtk=no], [def_gtk=yes])
    127126if test x$def_gtk = xyes; then
    128127  echo "yes"
     
    137136AC_MSG_CHECKING([if libcURL should be enabled])
    138137AC_ARG_ENABLE([curl],
    139         AC_HELP_STRING( [--disable-curl],
    140         [Prevents libcURL from being loaded]), [def_curl=no], [def_curl=yes])
     138        AS_HELP_STRING(--disable-curl,Prevents libcURL from being loaded), [def_curl=no], [def_curl=yes])
    141139if test x$def_curl = xyes; then
    142140  echo "yes"
     
    152150AC_MSG_CHECKING([if the SubProjects should be built])
    153151AC_ARG_WITH([sub-projects],
    154         AC_HELP_STRING( [--with-sub-projects],
    155         [also builds the subProjects while make from srcdir]), [def_sub_projects=yes])
     152        AS_HELP_STRING(--with-sub-projects,also builds the subProjects while make from srcdir), [def_sub_projects=yes])
    156153if test x$def_sub_projects = xyes; then
    157154  echo "yes"
     
    168165AC_MSG_CHECKING([if Profiling should be enabled])
    169166AC_ARG_ENABLE([profile],
    170         AC_HELP_STRING( [--enable-profile],
    171         [builds orxonox with profiling support]), [def_profiling=yes])
     167        AS_HELP_STRING(--enable-profile,builds orxonox with profiling support), [def_profiling=yes])
    172168if test x$def_profiling = xyes; then
    173169  echo "yes"
     
    184180AC_MSG_CHECKING([if efence should be enabled])
    185181AC_ARG_ENABLE([efence],
    186         AC_HELP_STRING( [--enable-efence],
    187         [builds orxonox with efence support]), [def_efence=yes])
     182        AS_HELP_STRING(--enable-efence,builds orxonox with efence support), [def_efence=yes])
    188183if test x$def_efence = xyes; then
    189184  echo "yes"
     
    199194AC_MSG_CHECKING([if the Documentation should be build by default])
    200195AC_ARG_ENABLE([documentation],
    201         AC_HELP_STRING( [--enable-documentation],
    202         [also builds the sDocumentation while make from srcdir]), [def_documentation=yes])
     196        AS_HELP_STRING(--enable-documentation,also builds the sDocumentation while make from srcdir), [def_documentation=yes])
    203197if test x$def_documentation = xyes; then
    204198  echo "yes"
     
    218212AC_MSG_CHECKING([convenience flag for working at the taris in the ETH zurich])
    219213AC_ARG_WITH([tardis],
    220         AC_HELP_STRING( [--with-tardis],
    221         [sets all the necesary environment flags for linux-TARDIS boxes at the ETH Zurich]), [def_tardis=yes])
     214        AS_HELP_STRING(--with-tardis,sets all the necesary environment flags for linux-TARDIS boxes at the ETH Zurich), [def_tardis=yes])
    222215if test x$def_tardis = xyes; then
    223216  ARCH=i686-debian-linux3.1
Note: See TracChangeset for help on using the changeset viewer.