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.4 / 7.4.095 < prev    next >
Encoding:
Internet Message Format  |  2013-11-20  |  3.1 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.4.095
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.4.095 (after 7.4.093)
  11. Problem:    Regexp for LuaJIT version doesn't work on BSD.
  12. Solution:   Use "*" instead of "\+" and "\?". (Ozaki)
  13. Files:        src/configure.in, src/auto/configure
  14.  
  15.  
  16. *** ../vim-7.4.094/src/configure.in    2013-11-17 20:32:49.000000000 +0100
  17. --- src/configure.in    2013-11-21 12:04:46.000000000 +0100
  18. ***************
  19. *** 496,502 ****
  20.         if test "X$vi_cv_path_luajit" != "X"; then
  21.       dnl -- find LuaJIT version
  22.       AC_CACHE_CHECK(LuaJIT version, vi_cv_version_luajit,
  23. !     [ vi_cv_version_luajit=`${vi_cv_path_luajit} -v 2>&1 | sed 's/LuaJIT \([[0-9.]]*\)\.[[0-9]]\(-[[a-z0-9]]\+\)\? .*/\1/'` ])
  24.       AC_CACHE_CHECK(Lua version of LuaJIT, vi_cv_version_lua_luajit,
  25.       [ vi_cv_version_lua_luajit=`${vi_cv_path_luajit} -e "print(_VERSION)" | sed 's/.* //'` ])
  26.       vi_cv_path_lua="$vi_cv_path_luajit"
  27. --- 496,502 ----
  28.         if test "X$vi_cv_path_luajit" != "X"; then
  29.       dnl -- find LuaJIT version
  30.       AC_CACHE_CHECK(LuaJIT version, vi_cv_version_luajit,
  31. !     [ vi_cv_version_luajit=`${vi_cv_path_luajit} -v 2>&1 | sed 's/LuaJIT \([[0-9.]]*\)\.[[0-9]]\(-[[a-z0-9]]*\)* .*/\1/'` ])
  32.       AC_CACHE_CHECK(Lua version of LuaJIT, vi_cv_version_lua_luajit,
  33.       [ vi_cv_version_lua_luajit=`${vi_cv_path_luajit} -e "print(_VERSION)" | sed 's/.* //'` ])
  34.       vi_cv_path_lua="$vi_cv_path_luajit"
  35. *** ../vim-7.4.094/src/auto/configure    2013-11-17 20:32:49.000000000 +0100
  36. --- src/auto/configure    2013-11-21 12:07:39.000000000 +0100
  37. ***************
  38. *** 4743,4749 ****
  39.   if test "${vi_cv_version_luajit+set}" = set; then :
  40.     $as_echo_n "(cached) " >&6
  41.   else
  42. !    vi_cv_version_luajit=`${vi_cv_path_luajit} -v 2>&1 | sed 's/LuaJIT \([0-9.]*\)\.[0-9]\(-[a-z0-9]\+\)\? .*/\1/'`
  43.   fi
  44.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $vi_cv_version_luajit" >&5
  45.   $as_echo "$vi_cv_version_luajit" >&6; }
  46. --- 4743,4749 ----
  47.   if test "${vi_cv_version_luajit+set}" = set; then :
  48.     $as_echo_n "(cached) " >&6
  49.   else
  50. !    vi_cv_version_luajit=`${vi_cv_path_luajit} -v 2>&1 | sed 's/LuaJIT \([0-9.]*\)\.[0-9]\(-[a-z0-9]*\)* .*/\1/'`
  51.   fi
  52.   { $as_echo "$as_me:${as_lineno-$LINENO}: result: $vi_cv_version_luajit" >&5
  53.   $as_echo "$vi_cv_version_luajit" >&6; }
  54. *** ../vim-7.4.094/src/version.c    2013-11-17 20:32:49.000000000 +0100
  55. --- src/version.c    2013-11-21 12:06:26.000000000 +0100
  56. ***************
  57. *** 740,741 ****
  58. --- 740,743 ----
  59.   {   /* Add new patch number below this line */
  60. + /**/
  61. +     95,
  62.   /**/
  63.  
  64. -- 
  65. Our job was to build a computer information system for the branch banks.  We
  66. were the perfect people for the job: Dean had seen a computer once, and I had
  67. heard Dean talk about it.
  68.                 (Scott Adams - The Dilbert principle)
  69.  
  70.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  71. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  72. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  73.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  74.