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.3 / 7.3.122 < prev    next >
Encoding:
Internet Message Format  |  2012-11-20  |  3.8 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.122
  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.3.122
  11. Problem:    Having auto/config.mk in the repository causes problems.
  12. Solution:   Remove auto/config.mk from the distribution.  In the toplevel
  13.         Makefile copy it from the "dist" file.
  14. Files:        Makefile, src/Makefile, src/auto/config.mk
  15.  
  16.  
  17. *** ../vim-7.3.121/Makefile    2010-08-15 21:57:20.000000000 +0200
  18. --- Makefile    2011-02-12 14:28:09.000000000 +0100
  19. ***************
  20. *** 23,28 ****
  21. --- 23,31 ----
  22.   # has run can result in compiling with $(CC) empty.
  23.   
  24.   first:
  25. +     @if test ! -f src/auto/config.mk; then \
  26. +         cp src/config.mk.dist src/auto/config.mk; \
  27. +     fi
  28.       @echo "Starting make in the src directory."
  29.       @echo "If there are problems, cd to the src directory and run make there"
  30.       cd src && $(MAKE) $@
  31. ***************
  32. *** 30,35 ****
  33. --- 33,41 ----
  34.   # Some make programs use the last target for the $@ default; put the other
  35.   # targets separately to always let $@ expand to "first" by default.
  36.   all install uninstall tools config configure reconfig proto depend lint tags types test testclean clean distclean:
  37. +     @if test ! -f src/auto/config.mk; then \
  38. +         cp src/config.mk.dist src/auto/config.mk; \
  39. +     fi
  40.       @echo "Starting make in the src directory."
  41.       @echo "If there are problems, cd to the src directory and run make there"
  42.       cd src && $(MAKE) $@
  43. *** ../vim-7.3.121/src/Makefile    2010-11-03 22:32:18.000000000 +0100
  44. --- src/Makefile    2011-02-15 15:21:37.000000000 +0100
  45. ***************
  46. *** 283,294 ****
  47.   
  48.   ######################## auto/config.mk ######################## {{{1
  49.   # At this position auto/config.mk is included. When starting from the
  50. ! # distribution it is almost empty. After running auto/configure it contains
  51. ! # settings that have been discovered for your system. Settings below this
  52. ! # include override settings in auto/config.mk!
  53. ! # Note: if auto/config.mk is lost somehow (e.g., because configure was
  54. ! # interrupted), create an empty auto/config.mk file and do "make config".
  55.   
  56.   # (X) How to include auto/config.mk depends on the version of "make" you have,
  57.   #     if the current choice doesn't work, try the other one.
  58. --- 283,295 ----
  59.   
  60.   ######################## auto/config.mk ######################## {{{1
  61.   # At this position auto/config.mk is included. When starting from the
  62. ! # toplevel Makefile it is almost empty. After running auto/configure it
  63. ! # contains settings that have been discovered for your system. Settings below
  64. ! # this include override settings in auto/config.mk!
  65. ! # Note: If make fails because auto/config.mk does not exist (it is not
  66. ! # included in the repository), do:
  67. ! #    cp config.mk.dist auto/config.mk
  68.   
  69.   # (X) How to include auto/config.mk depends on the version of "make" you have,
  70.   #     if the current choice doesn't work, try the other one.
  71. *** ../vim-7.3.121/src/auto/config.mk    2010-08-16 21:59:00.000000000 +0200
  72. --- src/auto/config.mk    1970-01-01 01:00:00.000000000 +0100
  73. ***************
  74. *** 1,5 ****
  75. - the first targets to make vim are: scratch config myself
  76. - srcdir = .
  77. - VIMNAME = vim
  78. - EXNAME = ex
  79. - VIEWNAME = view
  80. --- 0 ----
  81. *** ../vim-7.3.121/src/version.c    2011-02-15 14:24:42.000000000 +0100
  82. --- src/version.c    2011-02-15 15:25:07.000000000 +0100
  83. ***************
  84. *** 716,717 ****
  85. --- 716,719 ----
  86.   {   /* Add new patch number below this line */
  87. + /**/
  88. +     122,
  89.   /**/
  90.  
  91. -- 
  92. hundred-and-one symptoms of being an internet addict:
  93. 267. You get an extra phone line so you can get phone calls.
  94.  
  95.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  96. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  97. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  98.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  99.