Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Oct 12, 2006, 2:26:27 PM (18 years ago)
Author:
bensch
Message:

AS_HELP_STRING does not exist in Windows… it is called AC_HELP_STRING

hmm… i could swear it was AS_HELP_STRING in the doc of Autoconf.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r9883 r9886  
    7373AC_MSG_CHECKING([shared lib path])
    7474AC_ARG_WITH([shared-lib-path],
    75         AS_HELP_STRING(--with-shared-lib-path,Tells the executable, where to look for the shared libraries.),
     75        AC_HELP_STRING(--with-shared-lib-path,Tells the executable, where to look for the shared libraries.),
    7676         SHARED_LIB_PATH=$withval)
    7777if test x$SHARED_LIB_PATH != xno; then
     
    8888AC_MSG_CHECKING([if DEBUG-mode should be enabled])
    8989AC_ARG_ENABLE([debug],
    90         AS_HELP_STRING(--enable-debug,compiles in debug mode. Lots of debug info about the game.),
     90        AC_HELP_STRING(--enable-debug,compiles in debug mode. Lots of debug info about the game.),
    9191         DEBUG_LEVEL=$enableval)
    9292
     
    120120AC_MSG_CHECKING([if Modular-DEBUG-mode should be ebabled])
    121121AC_ARG_ENABLE([modular-debug],
    122         AS_HELP_STRING(--disable-modular-debug,compiles in modular-debug mode, that logs differently on the many modules of orxonox.),
     122        AC_HELP_STRING(--disable-modular-debug,compiles in modular-debug mode, that logs differently on the many modules of orxonox.),
    123123         MODULAR_DEBUG=$enableval)
    124124
     
    136136AC_MSG_CHECKING([if libcURL should be enabled])
    137137AC_ARG_ENABLE([curl],
    138         AS_HELP_STRING(--disable-curl,Prevents libcURL from being loaded), [def_curl=no], [def_curl=yes])
     138        AC_HELP_STRING(--disable-curl,Prevents libcURL from being loaded), [def_curl=no], [def_curl=yes])
    139139if test x$def_curl = xyes; then
    140140  echo "yes"
     
    151151AC_MSG_CHECKING([if the SubProjects should be built])
    152152AC_ARG_WITH([sub-projects],
    153         AS_HELP_STRING(--with-sub-projects,also builds the subProjects while make from srcdir), [def_sub_projects=yes])
     153        AC_HELP_STRING(--with-sub-projects,also builds the subProjects while make from srcdir), [def_sub_projects=yes])
    154154if test x$def_sub_projects = xyes; then
    155155  echo "yes"
     
    166166AC_MSG_CHECKING([if Profiling should be enabled])
    167167AC_ARG_ENABLE([profile],
    168         AS_HELP_STRING(--enable-profile,builds orxonox with profiling support), [def_profiling=yes])
     168        AC_HELP_STRING(--enable-profile,builds orxonox with profiling support), [def_profiling=yes])
    169169if test x$def_profiling = xyes; then
    170170  echo "yes"
     
    181181AC_MSG_CHECKING([if efence should be enabled])
    182182AC_ARG_ENABLE([efence],
    183         AS_HELP_STRING(--enable-efence,builds orxonox with efence support), [def_efence=yes])
     183        AC_HELP_STRING(--enable-efence,builds orxonox with efence support), [def_efence=yes])
    184184if test x$def_efence = xyes; then
    185185  echo "yes"
     
    195195AC_MSG_CHECKING([if the Documentation should be build by default])
    196196AC_ARG_ENABLE([documentation],
    197         AS_HELP_STRING(--enable-documentation,also builds the sDocumentation while make from srcdir), [def_documentation=yes])
     197        AC_HELP_STRING(--enable-documentation,also builds the sDocumentation while make from srcdir), [def_documentation=yes])
    198198if test x$def_documentation = xyes; then
    199199  echo "yes"
     
    210210AC_MSG_CHECKING([convenience flag for working at the taris in the ETH zurich])
    211211AC_ARG_WITH([tardis],
    212         AS_HELP_STRING(--with-tardis,sets all the necesary environment flags for linux-TARDIS boxes at the ETH Zurich), [def_tardis=yes])
     212        AC_HELP_STRING(--with-tardis,sets all the necesary environment flags for linux-TARDIS boxes at the ETH Zurich), [def_tardis=yes])
    213213if test x$def_tardis = xyes; then
    214214  ARCH=i686-debian-linux3.1
Note: See TracChangeset for help on using the changeset viewer.