home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 6.1.260 < prev    next >
Encoding:
Internet Message Format  |  2002-11-18  |  2.9 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.260
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.1.260 (depends on 6.1.104)
  11. Problem:    GCC 3.2 still seems to have an optimizer problem. (Zvi Har'El)
  12. Solution:   Use the same configure check as used for GCC 3.1.
  13. Files:        src/auto/configure, src/configure.in
  14.  
  15.  
  16. *** ../vim61.259/src/auto/configure    Tue Oct 29 21:27:00 2002
  17. --- src/auto/configure    Sun Nov 10 13:26:50 2002
  18. ***************
  19. *** 1120,1127 ****
  20.       echo 'GCC 3.0.x has a bug in the optimizer, disabling "-O#"'
  21.       CFLAGS=`echo "$CFLAGS" | sed 's/-O[23456789]/-O/'`
  22.     else
  23. !     if test "$gccversion" = "3.1" && `echo "$CFLAGS" | grep -v fno-strength-reduce >/dev/null`; then
  24. !       echo 'GCC 3.1 has a bug in the optimizer, adding "-fno-strength-reduce"'
  25.         CFLAGS="$CFLAGS -fno-strength-reduce"
  26.       fi
  27.     fi
  28. --- 1120,1127 ----
  29.       echo 'GCC 3.0.x has a bug in the optimizer, disabling "-O#"'
  30.       CFLAGS=`echo "$CFLAGS" | sed 's/-O[23456789]/-O/'`
  31.     else
  32. !     if test "$gccversion" = "3.1" -o "$gccversion" = "3.2" && `echo "$CFLAGS" | grep -v fno-strength-reduce >/dev/null`; then
  33. !       echo 'GCC 3.1 and 3.2 have a bug in the optimizer, adding "-fno-strength-reduce"'
  34.         CFLAGS="$CFLAGS -fno-strength-reduce"
  35.       fi
  36.     fi
  37. *** ../vim61.259/src/configure.in    Tue Oct 29 21:27:00 2002
  38. --- src/configure.in    Wed Nov  6 23:24:14 2002
  39. ***************
  40. *** 33,40 ****
  41.       echo 'GCC 3.0.x has a bug in the optimizer, disabling "-O#"'
  42.       CFLAGS=`echo "$CFLAGS" | sed 's/-O[[23456789]]/-O/'`
  43.     else
  44. !     if test "$gccversion" = "3.1" && `echo "$CFLAGS" | grep -v fno-strength-reduce >/dev/null`; then
  45. !       echo 'GCC 3.1 has a bug in the optimizer, adding "-fno-strength-reduce"'
  46.         CFLAGS="$CFLAGS -fno-strength-reduce"
  47.       fi
  48.     fi
  49. --- 33,40 ----
  50.       echo 'GCC 3.0.x has a bug in the optimizer, disabling "-O#"'
  51.       CFLAGS=`echo "$CFLAGS" | sed 's/-O[[23456789]]/-O/'`
  52.     else
  53. !     if test "$gccversion" = "3.1" -o "$gccversion" = "3.2" && `echo "$CFLAGS" | grep -v fno-strength-reduce >/dev/null`; then
  54. !       echo 'GCC 3.1 and 3.2 have a bug in the optimizer, adding "-fno-strength-reduce"'
  55.         CFLAGS="$CFLAGS -fno-strength-reduce"
  56.       fi
  57.     fi
  58. *** ../vim61.259/src/version.c    Tue Nov 19 11:52:22 2002
  59. --- src/version.c    Tue Nov 19 11:54:24 2002
  60. ***************
  61. *** 608,609 ****
  62. --- 608,611 ----
  63.   {   /* Add new patch number below this line */
  64. + /**/
  65. +     260,
  66.   /**/
  67.  
  68. -- 
  69. hundred-and-one symptoms of being an internet addict:
  70. 88. Every single time you press the 'Get mail' button...it does get new mail.
  71.  
  72.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  73. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  74. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  75.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  76.