Update of /cvsroot/playerstage/code/stage
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9073

Modified Files:
      Tag: release-2-1-patches
        configure.ac 
Log Message:
removed a couple of simulation debug printf's
Applied patches:
1912203           Grip location patch
1912201           add disable optmize configur option



Index: configure.ac
===================================================================
RCS file: /cvsroot/playerstage/code/stage/configure.ac,v
retrieving revision 1.18
retrieving revision 1.18.4.1
diff -C2 -d -r1.18 -r1.18.4.1
*** configure.ac        14 Jan 2008 20:23:01 -0000      1.18
--- configure.ac        16 Mar 2008 02:14:40 -0000      1.18.4.1
***************
*** 111,114 ****
--- 111,138 ----
  AC_DEFINE_UNQUOTED(COLOR_DATABASE,$CDB,[the X11-style color database])
  
+ AC_ARG_ENABLE(optimize, [  --disable-optimize      Compile without 
optimization (O2) ],
+     if test "x$enableval" = "xyes"; then
+         CXXFLAGS="$CXXFLAGS -O2"
+         CFLAGS="$CFLAGS -O2"
+     elif test "x$enableval" = "xno"; then
+         CXXFLAGS=`echo $CXXFLAGS | sed -e s/-O.//g`
+         CFLAGS=`echo $CFLAGS | sed -e s/-O.//g`
+     else
+         CXXFLAGS="$CXXFLAGS -$enableval"
+         CFLAGS="$CFLAGS -$enableval"
+     fi,
+ )
+ 
+ AC_ARG_ENABLE(debug,    [  --disable-debug         Compile without debugging 
information (-g)],
+     if test "x$enableval" = "xyes"; then
+         CXXFLAGS="$CXXFLAGS -g"
+         CFLAGS="$CFLAGS -g"
+     elif test "x$enableval" = "xno"; then
+         CXXFLAGS=`echo $CXXFLAGS | sed -e s/-g//g`
+         CFLAGS=`echo $CFLAGS | sed -e s/-g//g`
+     fi,
+ )
+ 
+ 
  AC_OUTPUT(Makefile 
            src/Makefile 


-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Playerstage-commit mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/playerstage-commit

Reply via email to