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.196 < prev    next >
Encoding:
Internet Message Format  |  2002-09-22  |  2.7 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.196
  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.196  (depends on 6.1.084)
  11. Problem:    On Mac OS X 10.2 generating osdef.h fails.
  12. Solution:   Add -no-cpp-precomp to avoid using precompiled header files, which
  13.         disables printing the search path. (Ben Fowler)
  14. Files:        src/auto/configure, src/configure.in
  15.  
  16.  
  17. *** ../vim61.195/src/auto/configure    Sun Jul 21 20:30:30 2002
  18. --- src/auto/configure    Sat Sep 21 12:49:11 2002
  19. ***************
  20. *** 1164,1170 ****
  21.   have_local_lib=''
  22.   if test "$GCC" = yes; then
  23.     echo 'void f(){}' > conftest.c
  24. !   have_local_include=`${CC-cc} -c -v conftest.c 2>&1 | grep '/usr/local/include'`
  25.     have_local_lib=`${CC-cc} -c -v conftest.c 2>&1 | grep '/usr/local/lib'`
  26.     rm -f conftest.c conftest.o
  27.   fi
  28. --- 1164,1170 ----
  29.   have_local_lib=''
  30.   if test "$GCC" = yes; then
  31.     echo 'void f(){}' > conftest.c
  32. !     have_local_include=`${CC-cc} -no-cpp-precomp -c -v conftest.c 2>&1 | grep '/usr/local/include'`
  33.     have_local_lib=`${CC-cc} -c -v conftest.c 2>&1 | grep '/usr/local/lib'`
  34.     rm -f conftest.c conftest.o
  35.   fi
  36. *** ../vim61.195/src/configure.in    Sun Jul 21 20:30:30 2002
  37. --- src/configure.in    Sat Sep 21 12:49:10 2002
  38. ***************
  39. *** 85,91 ****
  40.   have_local_lib=''
  41.   if test "$GCC" = yes; then
  42.     echo 'void f(){}' > conftest.c
  43. !   have_local_include=`${CC-cc} -c -v conftest.c 2>&1 | grep '/usr/local/include'`
  44.     have_local_lib=`${CC-cc} -c -v conftest.c 2>&1 | grep '/usr/local/lib'`
  45.     rm -f conftest.c conftest.o
  46.   fi
  47. --- 85,92 ----
  48.   have_local_lib=''
  49.   if test "$GCC" = yes; then
  50.     echo 'void f(){}' > conftest.c
  51. !   dnl -no-cpp-precomp is needed for OS X 10.2 (Ben Fowler)
  52. !   have_local_include=`${CC-cc} -no-cpp-precomp -c -v conftest.c 2>&1 | grep '/usr/local/include'`
  53.     have_local_lib=`${CC-cc} -c -v conftest.c 2>&1 | grep '/usr/local/lib'`
  54.     rm -f conftest.c conftest.o
  55.   fi
  56. *** ../vim61.195/src/version.c    Mon Sep 23 21:32:08 2002
  57. --- src/version.c    Mon Sep 23 21:34:07 2002
  58. ***************
  59. *** 608,609 ****
  60. --- 608,611 ----
  61.   {   /* Add new patch number below this line */
  62. + /**/
  63. +     196,
  64.   /**/
  65.  
  66. -- 
  67. 'Well, here's something to occupy you and keep your mind off things.'
  68. 'It won't work, I have an exceptionally large mind.'
  69.         -- Douglas Adams, "The Hitchhiker's Guide to the Galaxy"
  70.  
  71.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  72. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  73. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  74.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  75.