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 / old / 5.4.32 < prev    next >
Encoding:
Internet Message Format  |  1999-08-16  |  3.2 KB

  1. To: jon miner <miner@doit.wisc.edu>
  2. In-Reply-To: <4.2.0.58.19990817115936.00a6c4c0(null)>
  3. Cc: Vim Developers List <vim-dev@vim.org>
  4. Subject: patch 5.4.32 (was: Possible bug in src/Makefile (patch attached))
  5. Fcc: outbox
  6. From: Bram Moolenaar <Bram@moolenaar.net>
  7. ------------
  8.  
  9. Jon Miner wrote:
  10. > I discovered what may be a bug in src/Makefile..
  11. > When running ./configure in src, LDFLAGS should be passed in, like it is 
  12. > for cflags..  This breaks my machine (NetBSD) where ncurses is installed in 
  13. > /usr/pkg/lib.
  14.  
  15. You are right.  For running configure for ctags, LDFLAGS is passed already.
  16. I don't expect passing LDFLAGS to configure to cause a problems, so let's just
  17. add it.
  18.  
  19.  
  20. Patch 5.4.32
  21. Problem:    Unix: $LDFLAGS was not passed to configure.
  22. Solution:   Pass $LDFLAGS to configure just like $CFLAGS. (Jon Miner)
  23. Files:        src/Makefile
  24.  
  25.  
  26. *** ../vim-5.4.31/src/Makefile    Sun Jul 25 13:18:43 1999
  27. --- src/Makefile    Tue Aug 17 21:18:28 1999
  28. ***************
  29. *** 1166,1172 ****
  30.   #
  31.   config config.mk: configure
  32.       GUI_INC_LOC="$(GUI_INC_LOC)" GUI_LIB_LOC="$(GUI_LIB_LOC)" \
  33. !         CC="$(CC)" CFLAGS="$(CFLAGS)" \
  34.       $(CONF_SHELL) ./configure $(CONF_OPT_GUI) $(CONF_OPT_X) \
  35.       $(CONF_OPT_PERL) $(CONF_OPT_PYTHON) $(CONF_OPT_TCL) \
  36.       $(CONF_OPT_CSCOPE) $(CONF_OPT_MULTIBYTE) $(CONF_OPT_INPUT) \
  37. --- 1173,1179 ----
  38.   #
  39.   config config.mk: configure
  40.       GUI_INC_LOC="$(GUI_INC_LOC)" GUI_LIB_LOC="$(GUI_LIB_LOC)" \
  41. !         CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" \
  42.       $(CONF_SHELL) ./configure $(CONF_OPT_GUI) $(CONF_OPT_X) \
  43.       $(CONF_OPT_PERL) $(CONF_OPT_PYTHON) $(CONF_OPT_TCL) \
  44.       $(CONF_OPT_CSCOPE) $(CONF_OPT_MULTIBYTE) $(CONF_OPT_INPUT) \
  45. *** ../vim-5.4.31/src/version.h    Tue Aug 17 17:45:38 1999
  46. --- src/version.h    Tue Aug 17 21:18:41 1999
  47. ***************
  48. *** 19,26 ****
  49.   #define VIM_VERSION_MINOR_STR        "4"
  50.   #define VIM_VERSION_BUILD         57
  51.   #define VIM_VERSION_BUILD_STR        "57"
  52. ! #define VIM_VERSION_PATCHLEVEL         31
  53. ! #define VIM_VERSION_PATCHLEVEL_STR    "31"
  54.   
  55.   /*
  56.    * VIM_VERSION_NODOT is used for the runtime directory name.
  57. --- 19,26 ----
  58.   #define VIM_VERSION_MINOR_STR        "4"
  59.   #define VIM_VERSION_BUILD         57
  60.   #define VIM_VERSION_BUILD_STR        "57"
  61. ! #define VIM_VERSION_PATCHLEVEL         32
  62. ! #define VIM_VERSION_PATCHLEVEL_STR    "32"
  63.   
  64.   /*
  65.    * VIM_VERSION_NODOT is used for the runtime directory name.
  66. ***************
  67. *** 30,35 ****
  68.    */
  69.   #define VIM_VERSION_NODOT    "vim54"
  70.   #define VIM_VERSION_SHORT    "5.4"
  71. ! #define VIM_VERSION_MEDIUM    "5.4.31"
  72. ! #define VIM_VERSION_LONG    "VIM - Vi IMproved 5.4.31 (1999 Aug 17)"
  73. ! #define VIM_VERSION_LONG_DATE    "VIM - Vi IMproved 5.4.31 (1999 Aug 17, compiled "
  74. --- 30,35 ----
  75.    */
  76.   #define VIM_VERSION_NODOT    "vim54"
  77.   #define VIM_VERSION_SHORT    "5.4"
  78. ! #define VIM_VERSION_MEDIUM    "5.4.32"
  79. ! #define VIM_VERSION_LONG    "VIM - Vi IMproved 5.4.32 (1999 Aug 17)"
  80. ! #define VIM_VERSION_LONG_DATE    "VIM - Vi IMproved 5.4.32 (1999 Aug 17, compiled "
  81.  
  82. --
  83. hundred-and-one symptoms of being an internet addict:
  84. 116. You are living with your boyfriend who networks your respective
  85.      computers so you can sit in separate rooms and email each other
  86.  
  87. --/-/---- Bram Moolenaar ---- Bram@moolenaar.net ---- Bram@vim.org ---\-\--
  88.   \ \    www.vim.org/iccf      www.moolenaar.net       www.vim.org    / /
  89.