dbertoni    2003/01/05 10:29:54

  Modified:    c/src    runConfigure
  Log:
  Bump optimization level on Linux.
  
  Revision  Changes    Path
  1.16      +8 -1      xml-xalan/c/src/runConfigure
  
  Index: runConfigure
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/runConfigure,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- runConfigure      12 Dec 2002 20:58:06 -0000      1.15
  +++ runConfigure      5 Jan 2003 18:29:54 -0000       1.16
  @@ -58,6 +58,9 @@
   # 
   #
   # $Log$
  +# Revision 1.16  2003/01/05 18:29:54  dbertoni
  +# Bump optimization level on Linux.
  +#
   # Revision 1.15  2002/12/12 20:58:06  dbertoni
   # Changes to build outside of the source tree.  Fixes Bugzilla 4627.
   #
  @@ -251,7 +254,11 @@
   
   if test $debug = "off"; then
       echo "Debug is OFF"
  -    debugflag="-O -DNDEBUG";
  +    if test $platform = "linux"; then
  +        debugflag="-O2 -DNDEBUG";
  +    else
  +        debugflag="-O -DNDEBUG";
  +    fi
   else
       echo "Debug is ON"
       debugflag="-g";
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to