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.100 < prev    next >
Encoding:
Internet Message Format  |  2002-06-17  |  2.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.100 (extra)
  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.100 (extra, depends on 6.1.088)
  11. Problem:    Win32: VC5 and earlier don't support the /mapinfo option.
  12. Solution:   Add "/mapinfo" only when "MAP=lines" is specified. (Muraoka Taro)
  13. Files:        src/Make_mvc.mak
  14.  
  15.  
  16. *** ../vim61.099/src/Make_mvc.mak    Thu Jun  6 20:50:44 2002
  17. --- src/Make_mvc.mak    Tue Jun 18 19:46:43 2002
  18. ***************
  19. *** 39,44 ****
  20. --- 39,48 ----
  21.   #      TCL_VER_LONG=[Tcl version, eg 8.3] (default is 8.3)
  22.   #        You must set TCL_VER_LONG when you set TCL_VER.
  23.   #    Debug version: DEBUG=yes
  24. + #    Mapfile: MAP=[no, yes or lines] (default is yes)
  25. + #      no:    Don't write a mapfile.
  26. + #      yes:   Write a normal mapfile.
  27. + #      lines: Write a mapfile with line numbers (only for VC6 and later)
  28.   #    SNiFF+ interface: SNIFF=yes
  29.   #    Iconv library support (always dynamically loaded):
  30.   #      ICONV=[yes or no]  (default is yes)
  31. ***************
  32. *** 479,486 ****
  33.   #
  34.   !message
  35.   
  36. ! # "/map /mapinfo:lines" is for debugging
  37. ! conflags = /nologo /subsystem:$(SUBSYSTEM) /incremental:no /map /mapinfo:lines
  38.   
  39.   LINKARGS1 = $(linkdebug) $(conflags) /nodefaultlib:libc
  40.   LINKARGS2 = $(CON_LIB) $(GUI_LIB) $(LIBC) $(OLE_LIB)  user32.lib $(SNIFF_LIB) \
  41. --- 483,497 ----
  42.   #
  43.   !message
  44.   
  45. ! conflags = /nologo /subsystem:$(SUBSYSTEM) /incremental:no
  46. ! !IF "$(MAP)" == "yes"
  47. ! # "/map" is for debugging
  48. ! conflags = $(conflags) /map
  49. ! !ELSEIF "$(MAP)" == "lines"
  50. ! # "/mapinfo:lines" is for debugging, only works for VC6 and later
  51. ! conflags = $(conflags) /map /mapinfo:lines
  52. ! !ENDIF
  53.   
  54.   LINKARGS1 = $(linkdebug) $(conflags) /nodefaultlib:libc
  55.   LINKARGS2 = $(CON_LIB) $(GUI_LIB) $(LIBC) $(OLE_LIB)  user32.lib $(SNIFF_LIB) \
  56. *** ../vim61.099/src/version.c    Tue Jun 18 21:33:22 2002
  57. --- src/version.c    Tue Jun 18 21:35:30 2002
  58. ***************
  59. *** 608,609 ****
  60. --- 608,611 ----
  61.   {   /* Add new patch number below this line */
  62. + /**/
  63. +     100,
  64.   /**/
  65.  
  66. -- 
  67. hundred-and-one symptoms of being an internet addict:
  68. 259. When you enter your name in the AltaVista search engine, the top ten
  69.      matches do indeed refer to you.
  70.  
  71.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  72. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  73. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  74.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  75.