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 / 7.1 / 7.1.257 < prev    next >
Encoding:
Internet Message Format  |  2008-02-19  |  3.2 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 7.1.257
  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 7.1.257
  11. Problem:    Configure can't always find the Tcl header files.
  12. Solution:   Also look in /usr/local/include/tcl$tclver and
  13.         /usr/include/tcl$tclver (James Vega)
  14. Files:        src/auto/configure, src/configure.in
  15.  
  16.  
  17. *** ../vim-7.1.256/src/auto/configure    Wed Feb 13 10:27:28 2008
  18. --- src/auto/configure    Wed Feb 13 11:20:00 2008
  19. ***************
  20. *** 4669,4678 ****
  21.         echo "$as_me:$LINENO: checking for location of Tcl include" >&5
  22.   echo $ECHO_N "checking for location of Tcl include... $ECHO_C" >&6
  23.         if test "x$MACOSX" != "xyes"; then
  24. !     tclinc="$tclloc/include $tclloc/include/tcl $tclloc/include/tcl$tclver /usr/local/include /usr/include"
  25.         else
  26.           tclinc="/System/Library/Frameworks/Tcl.framework/Headers"
  27.         fi
  28.         for try in $tclinc; do
  29.       if test -f "$try/tcl.h"; then
  30.         echo "$as_me:$LINENO: result: $try/tcl.h" >&5
  31. --- 4669,4679 ----
  32.         echo "$as_me:$LINENO: checking for location of Tcl include" >&5
  33.   echo $ECHO_N "checking for location of Tcl include... $ECHO_C" >&6
  34.         if test "x$MACOSX" != "xyes"; then
  35. !     tclinc="$tclloc/include $tclloc/include/tcl $tclloc/include/tcl$tclver /usr/local/include /usr/include /usr/include/tcl$tclver"
  36.         else
  37.           tclinc="/System/Library/Frameworks/Tcl.framework/Headers"
  38.         fi
  39. +       TCL_INC=
  40.         for try in $tclinc; do
  41.       if test -f "$try/tcl.h"; then
  42.         echo "$as_me:$LINENO: result: $try/tcl.h" >&5
  43. *** ../vim-7.1.256/src/configure.in    Wed Feb 13 10:27:28 2008
  44. --- src/configure.in    Wed Feb 13 11:23:55 2008
  45. ***************
  46. *** 794,804 ****
  47.   
  48.         AC_MSG_CHECKING(for location of Tcl include)
  49.         if test "x$MACOSX" != "xyes"; then
  50. !     tclinc="$tclloc/include $tclloc/include/tcl $tclloc/include/tcl$tclver /usr/local/include /usr/include"
  51.         else
  52.       dnl For Mac OS X 10.3, use the OS-provided framework location
  53.       tclinc="/System/Library/Frameworks/Tcl.framework/Headers"
  54.         fi
  55.         for try in $tclinc; do
  56.       if test -f "$try/tcl.h"; then
  57.         AC_MSG_RESULT($try/tcl.h)
  58. --- 794,805 ----
  59.   
  60.         AC_MSG_CHECKING(for location of Tcl include)
  61.         if test "x$MACOSX" != "xyes"; then
  62. !     tclinc="$tclloc/include $tclloc/include/tcl $tclloc/include/tcl$tclver /usr/local/include /usr/local/include/tcl$tclver /usr/include /usr/include/tcl$tclver"
  63.         else
  64.       dnl For Mac OS X 10.3, use the OS-provided framework location
  65.       tclinc="/System/Library/Frameworks/Tcl.framework/Headers"
  66.         fi
  67. +       TCL_INC=
  68.         for try in $tclinc; do
  69.       if test -f "$try/tcl.h"; then
  70.         AC_MSG_RESULT($try/tcl.h)
  71. *** ../vim-7.1.256/src/version.c    Wed Feb 20 12:22:59 2008
  72. --- src/version.c    Wed Feb 20 12:42:17 2008
  73. ***************
  74. *** 668,669 ****
  75. --- 668,671 ----
  76.   {   /* Add new patch number below this line */
  77. + /**/
  78. +     257,
  79.   /**/
  80.  
  81. -- 
  82. He who laughs last, thinks slowest.
  83.  
  84.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  85. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  86. \\\        download, build and distribute -- http://www.A-A-P.org        ///
  87.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  88.