- Timestamp:
- Oct 12, 2006, 2:26:27 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r9883 r9886 73 73 AC_MSG_CHECKING([shared lib path]) 74 74 AC_ARG_WITH([shared-lib-path], 75 A S_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.), 76 76 SHARED_LIB_PATH=$withval) 77 77 if test x$SHARED_LIB_PATH != xno; then … … 88 88 AC_MSG_CHECKING([if DEBUG-mode should be enabled]) 89 89 AC_ARG_ENABLE([debug], 90 A S_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.), 91 91 DEBUG_LEVEL=$enableval) 92 92 … … 120 120 AC_MSG_CHECKING([if Modular-DEBUG-mode should be ebabled]) 121 121 AC_ARG_ENABLE([modular-debug], 122 A S_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.), 123 123 MODULAR_DEBUG=$enableval) 124 124 … … 136 136 AC_MSG_CHECKING([if libcURL should be enabled]) 137 137 AC_ARG_ENABLE([curl], 138 A S_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]) 139 139 if test x$def_curl = xyes; then 140 140 echo "yes" … … 151 151 AC_MSG_CHECKING([if the SubProjects should be built]) 152 152 AC_ARG_WITH([sub-projects], 153 A S_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]) 154 154 if test x$def_sub_projects = xyes; then 155 155 echo "yes" … … 166 166 AC_MSG_CHECKING([if Profiling should be enabled]) 167 167 AC_ARG_ENABLE([profile], 168 A S_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]) 169 169 if test x$def_profiling = xyes; then 170 170 echo "yes" … … 181 181 AC_MSG_CHECKING([if efence should be enabled]) 182 182 AC_ARG_ENABLE([efence], 183 A S_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]) 184 184 if test x$def_efence = xyes; then 185 185 echo "yes" … … 195 195 AC_MSG_CHECKING([if the Documentation should be build by default]) 196 196 AC_ARG_ENABLE([documentation], 197 A S_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]) 198 198 if test x$def_documentation = xyes; then 199 199 echo "yes" … … 210 210 AC_MSG_CHECKING([convenience flag for working at the taris in the ETH zurich]) 211 211 AC_ARG_WITH([tardis], 212 A S_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]) 213 213 if test x$def_tardis = xyes; then 214 214 ARCH=i686-debian-linux3.1
Note: See TracChangeset
for help on using the changeset viewer.