Changeset 3181 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Dec 15, 2004, 2:08:08 PM (20 years ago)
- Location:
- orxonox/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/configure
r3180 r3181 865 865 --disable-dependency-tracking speeds up one-time build 866 866 --enable-dependency-tracking do not reject slow dependency extractors 867 -- disable-gtk Prevents GTK from being loaded868 --disable-sdl-image Prevents SDL_image from being loaded867 --enable-debug compiles GTK in debug mode. Lots of Debug info about 868 the game 869 869 870 870 Optional Packages: 871 871 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] 872 872 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) 873 --with -debug compiles GTK in debug mode. Lots of Debug info about874 the game873 --without-gtk Prevents GTK from being loaded 874 --without-sdl-image Prevents SDL_image from being loaded 875 875 876 876 Some influential environment variables: … … 3843 3843 echo "$as_me:$LINENO: checking if DEBUG-mode should be enabled" >&5 3844 3844 echo $ECHO_N "checking if DEBUG-mode should be enabled... $ECHO_C" >&6 3845 3846 # Check whether --with-debug or --without-debug was given. 3847 if test "${with_debug+set}" = set; then 3848 withval="$with_debug" 3845 # Check whether --enable-debug or --disable-debug was given. 3846 if test "${enable_debug+set}" = set; then 3847 enableval="$enable_debug" 3849 3848 DEBUG=yes 3850 3849 fi; … … 3864 3863 echo "$as_me:$LINENO: checking if gtk should be enabled" >&5 3865 3864 echo $ECHO_N "checking if gtk should be enabled... $ECHO_C" >&6 3866 # Check whether --enable-gtk or --disable-gtk was given. 3867 if test "${enable_gtk+set}" = set; then 3868 enableval="$enable_gtk" 3865 3866 # Check whether --with-gtk or --without-gtk was given. 3867 if test "${with_gtk+set}" = set; then 3868 withval="$with_gtk" 3869 3869 def_gtk=no 3870 3870 fi; … … 3879 3879 echo "$as_me:$LINENO: checking if SDL_image should be enabled" >&5 3880 3880 echo $ECHO_N "checking if SDL_image should be enabled... $ECHO_C" >&6 3881 # Check whether --enable-sdl_image or --disable-sdl_image was given. 3882 if test "${enable_sdl_image+set}" = set; then 3883 enableval="$enable_sdl_image" 3881 3882 # Check whether --with-sdl_image or --without-sdl_image was given. 3883 if test "${with_sdl_image+set}" = set; then 3884 withval="$with_sdl_image" 3884 3885 def_sdl_image=no 3885 3886 fi; -
orxonox/trunk/configure.ac
r3180 r3181 25 25 DEBUG=no 26 26 AC_MSG_CHECKING([if DEBUG-mode should be enabled]) 27 AC_ARG_ WITH([debug],28 AC_HELP_STRING( [-- with-debug], [compiles GTK in debug mode. Lots of Debug info about the game]),27 AC_ARG_ENABLE([debug], 28 AC_HELP_STRING( [--enable-debug], [compiles GTK in debug mode. Lots of Debug info about the game]), 29 29 [DEBUG=yes]) 30 30 echo "$DEBUG" … … 38 38 def_gtk=yes 39 39 AC_MSG_CHECKING([if gtk should be enabled]) 40 AC_ARG_ ENABLE([gtk],41 AC_HELP_STRING( [-- disable-gtk],40 AC_ARG_WITH([gtk], 41 AC_HELP_STRING( [--without-gtk], 42 42 [Prevents GTK from being loaded]), [def_gtk=no]) 43 43 if test "$def_gtk" = yes; then … … 50 50 def_sdl_image=yes 51 51 AC_MSG_CHECKING([if SDL_image should be enabled]) 52 AC_ARG_ ENABLE([sdl_image],53 AC_HELP_STRING( [-- disable-sdl-image],52 AC_ARG_WITH([sdl_image], 53 AC_HELP_STRING( [--without-sdl-image], 54 54 [Prevents SDL_image from being loaded]), [def_sdl_image=no]) 55 55 if test "$def_sdl_image" = yes; then
Note: See TracChangeset
for help on using the changeset viewer.