Changeset 3173 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Dec 15, 2004, 1:02:52 AM (20 years ago)
- Location:
- orxonox/trunk
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/Makefile.in
r3167 r3173 89 89 CXXFLAGS = @CXXFLAGS@ 90 90 CYGPATH_W = @CYGPATH_W@ 91 DEBUG = @DEBUG@ 91 92 DEFS = @DEFS@ 92 93 DEPDIR = @DEPDIR@ … … 609 610 \ 610 611 $(DX_CONF_DIR)/progress >> $(DX_CONFIG_FILE); \ 612 if test $(DEBUG) = yes ; then \ 613 echo "QUIET = \"NO\"" >> $(DX_CONFIG_FILE); \ 614 else \ 615 echo "QUIET = \"YES\"" >> $(DX_CONFIG_FILE); \ 616 fi ;\ 611 617 \ 612 618 $(DX_CONF_DIR)/input >> $(DX_CONFIG_FILE); \ … … 619 625 $(DX_CONF_DIR)/confopts >> $(DX_CONFIG_FILE) 620 626 621 .PHONY: doc doc-config 627 doc-delete: 628 @echo "Deleting doxygen Documentation" ; \ 629 rm -rf $(top_srcdir)/doc/html ; \ 630 rm -rf $(top_srcdir)/doc/latex 631 632 .PHONY: doc doc-config doc-delete 622 633 623 634 # Local Variables: -
orxonox/trunk/config.h.in
r3140 r3173 1 1 /* config.h.in. Generated from configure.ac by autoheader. */ 2 3 /* if we ar in Debug Mode */ 4 #undef DEBUG 2 5 3 6 /* Define to 1 if you have the `bzero' function. */ -
orxonox/trunk/configure
r3140 r3173 312 312 #endif" 313 313 314 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CC CFLAGS ac_ct_CC CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CPP EGREP MSBITFIELDS GTK2_LIBS GTK2_CFLAGS HAVE_GTK2_TRUE HAVE_GTK2_FALSE LIBOBJS LTLIBOBJS'314 ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot CXX CXXFLAGS LDFLAGS CPPFLAGS ac_ct_CXX EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CC CFLAGS ac_ct_CC CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CPP EGREP DEBUG MSBITFIELDS GTK2_LIBS GTK2_CFLAGS HAVE_GTK2_TRUE HAVE_GTK2_FALSE LIBOBJS LTLIBOBJS' 315 315 ac_subst_files='' 316 316 … … 866 866 --enable-dependency-tracking do not reject slow dependency extractors 867 867 --disable-gtk Prevents GTK from being loaded 868 --disabel-sdl-image Prevents SDL_image from being loaded 868 --disable-sdl-image Prevents SDL_image from being loaded 869 870 Optional Packages: 871 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] 872 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) 873 --with-debug compiles GTK in debug mode. Lots of Debug info about 874 the game 869 875 870 876 Some influential environment variables: … … 3833 3839 3834 3840 ### CHECKING OPTIONAT ARGUMENTS 3841 ## DEBUG-statement 3842 DEBUG=no 3843 echo "$as_me:$LINENO: checking if DEBUG-mode should be enabled" >&5 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" 3849 DEBUG=yes 3850 fi; 3851 echo "$DEBUG" 3852 if test "$DEBUG" = yes; then 3853 3854 cat >>confdefs.h <<_ACEOF 3855 #define DEBUG 1 3856 _ACEOF 3857 3858 fi 3859 3860 3861 3835 3862 ## GTK-disabled 3836 3863 def_gtk=yes … … 8228 8255 s,@CPP@,$CPP,;t t 8229 8256 s,@EGREP@,$EGREP,;t t 8257 s,@DEBUG@,$DEBUG,;t t 8230 8258 s,@MSBITFIELDS@,$MSBITFIELDS,;t t 8231 8259 s,@GTK2_LIBS@,$GTK2_LIBS,;t t -
orxonox/trunk/configure.ac
r3140 r3173 22 22 23 23 ### CHECKING OPTIONAT ARGUMENTS 24 ## DEBUG-statement 25 DEBUG=no 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]), 29 [DEBUG=yes]) 30 echo "$DEBUG" 31 if test "$DEBUG" = yes; then 32 AC_DEFINE_UNQUOTED(DEBUG, 1, [if we ar in Debug Mode]) 33 fi 34 AC_SUBST(DEBUG) 35 36 24 37 ## GTK-disabled 25 38 def_gtk=yes … … 38 51 AC_MSG_CHECKING([if SDL_image should be enabled]) 39 52 AC_ARG_ENABLE([sdl_image], 40 AC_HELP_STRING( [--disab el-sdl-image],53 AC_HELP_STRING( [--disable-sdl-image], 41 54 [Prevents SDL_image from being loaded]), [def_sdl_image=no]) 42 55 if test "$def_sdl_image" = yes; then -
orxonox/trunk/console/Makefile.in
r3099 r3173 91 91 CXXFLAGS = @CXXFLAGS@ 92 92 CYGPATH_W = @CYGPATH_W@ 93 DEBUG = @DEBUG@ 93 94 DEFS = @DEFS@ 94 95 DEPDIR = @DEPDIR@ … … 183 184 esac; \ 184 185 done; \ 185 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnuconsole/Makefile'; \186 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign console/Makefile'; \ 186 187 cd $(top_srcdir) && \ 187 $(AUTOMAKE) -- gnuconsole/Makefile188 $(AUTOMAKE) --foreign console/Makefile 188 189 .PRECIOUS: Makefile 189 190 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/doc/documentation.am
r3167 r3173 25 25 \ 26 26 $(DX_CONF_DIR)/progress >> $(DX_CONFIG_FILE); \ 27 if test $(DEBUG) = yes ; then \ 28 echo "QUIET = \"NO\"" >> $(DX_CONFIG_FILE); \ 29 else \ 30 echo "QUIET = \"YES\"" >> $(DX_CONFIG_FILE); \ 31 fi ;\ 27 32 \ 28 33 $(DX_CONF_DIR)/input >> $(DX_CONFIG_FILE); \ … … 35 40 $(DX_CONF_DIR)/confopts >> $(DX_CONFIG_FILE) 36 41 42 doc-delete: 43 @echo "Deleting doxygen Documentation" ; \ 44 rm -rf $(top_srcdir)/doc/html ; \ 45 rm -rf $(top_srcdir)/doc/latex 37 46 38 47 39 48 40 41 .PHONY: doc doc-config 49 .PHONY: doc doc-config doc-delete 42 50 43 51 # Local Variables: -
orxonox/trunk/doc/doxyconf/progress
r3167 r3173 3 3 # configuration options related to warning and progress messages 4 4 #--------------------------------------------------------------------------- 5 QUIET = NO6 5 WARNINGS = YES 7 6 WARN_IF_UNDOCUMENTED = YES -
orxonox/trunk/gui/Makefile.in
r3167 r3173 98 98 CXXFLAGS = @CXXFLAGS@ 99 99 CYGPATH_W = @CYGPATH_W@ 100 DEBUG = @DEBUG@ 100 101 DEFS = @DEFS@ 101 102 DEPDIR = @DEPDIR@ -
orxonox/trunk/importer/Makefile.in
r3099 r3173 92 92 CXXFLAGS = @CXXFLAGS@ 93 93 CYGPATH_W = @CYGPATH_W@ 94 DEBUG = @DEBUG@ 94 95 DEFS = @DEFS@ 95 96 DEPDIR = @DEPDIR@ … … 184 185 esac; \ 185 186 done; \ 186 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnuimporter/Makefile'; \187 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign importer/Makefile'; \ 187 188 cd $(top_srcdir) && \ 188 $(AUTOMAKE) -- gnuimporter/Makefile189 $(AUTOMAKE) --foreign importer/Makefile 189 190 .PRECIOUS: Makefile 190 191 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/Makefile.in
r3099 r3173 107 107 CXXFLAGS = @CXXFLAGS@ 108 108 CYGPATH_W = @CYGPATH_W@ 109 DEBUG = @DEBUG@ 109 110 DEFS = @DEFS@ 110 111 DEPDIR = @DEPDIR@ … … 199 200 esac; \ 200 201 done; \ 201 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/Makefile'; \202 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ 202 203 cd $(top_srcdir) && \ 203 $(AUTOMAKE) -- gnusrc/Makefile204 $(AUTOMAKE) --foreign src/Makefile 204 205 .PRECIOUS: Makefile 205 206 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
Note: See TracChangeset
for help on using the changeset viewer.