- patchlevel 309
This commit is contained in:
parent
b9c88ce0dd
commit
cc4bf95a17
113
7.1.309
Normal file
113
7.1.309
Normal file
@ -0,0 +1,113 @@
|
||||
To: vim-dev@vim.org
|
||||
Subject: Patch 7.1.309
|
||||
Fcc: outbox
|
||||
From: Bram Moolenaar <Bram@moolenaar.net>
|
||||
Mime-Version: 1.0
|
||||
Content-Type: text/plain; charset=ISO-8859-1
|
||||
Content-Transfer-Encoding: 8bit
|
||||
------------
|
||||
|
||||
Patch 7.1.309
|
||||
Problem: Installing and testing with a shadow directory doesn't work.
|
||||
(James Vega)
|
||||
Solution: Add "po" to the list of directories to link. Also link the Vim
|
||||
scripts in testdir. And a few more small fixes.
|
||||
Files: src/Makefile
|
||||
|
||||
|
||||
*** ../vim-7.1.308/src/Makefile Wed Jun 4 14:28:33 2008
|
||||
--- src/Makefile Sat May 24 15:39:39 2008
|
||||
***************
|
||||
*** 780,785 ****
|
||||
--- 780,787 ----
|
||||
# 1) make config
|
||||
# 2) edit auto/config.mk, add -n32 to LDFLAGS
|
||||
# 3) make
|
||||
+ #
|
||||
+ #Alternatively: use -o32 instead of -n32.
|
||||
###
|
||||
|
||||
### (C) On SCO Unix v3.2.5 (and probably other versions) the termcap library,
|
||||
***************
|
||||
*** 1074,1080 ****
|
||||
# default vi editor, it will create a link from vi to Vim when doing
|
||||
# "make install". An existing file will be overwritten!
|
||||
# When not using it, some make programs can't handle an undefined $(LINKIT).
|
||||
! #LINKIT = -ln -f -s $(BINDIR)/$(VIMTARGET) /usr/bin/vi
|
||||
LINKIT = @echo >/dev/null
|
||||
|
||||
###
|
||||
--- 1076,1082 ----
|
||||
# default vi editor, it will create a link from vi to Vim when doing
|
||||
# "make install". An existing file will be overwritten!
|
||||
# When not using it, some make programs can't handle an undefined $(LINKIT).
|
||||
! #LINKIT = ln -f -s $(DEST_BIN)/$(VIMTARGET) $(DESTDIR)/usr/bin/vi
|
||||
LINKIT = @echo >/dev/null
|
||||
|
||||
###
|
||||
***************
|
||||
*** 1290,1295 ****
|
||||
--- 1292,1300 ----
|
||||
|
||||
DEPEND_CFLAGS = -DPROTO -DDEPEND -DFEAT_GUI $(LINT_CFLAGS)
|
||||
|
||||
+ # If you have problems with flags that cproto doesn't support, and you are
|
||||
+ # using GNU make, you can try using the other line to filter out arguments.
|
||||
+ #PFLAGS = $(PROTO_FLAGS) -DPROTO $(filter -D% -I%, $(LINT_CFLAGS))
|
||||
PFLAGS = $(PROTO_FLAGS) -DPROTO $(LINT_CFLAGS)
|
||||
|
||||
ALL_LIB_DIRS = $(GUI_LIBS_DIR) $(X_LIBS_DIR)
|
||||
***************
|
||||
*** 2174,2180 ****
|
||||
|
||||
shadow: runtime pixmaps
|
||||
mkdir $(SHADOWDIR)
|
||||
! cd $(SHADOWDIR); ln -s ../*.[ch] ../*.in ../*.sh ../*.xs ../*.xbm ../toolcheck ../proto ../vimtutor ../gvimtutor ../mkinstalldirs .
|
||||
mkdir $(SHADOWDIR)/auto
|
||||
cd $(SHADOWDIR)/auto; ln -s ../../auto/configure .
|
||||
cd $(SHADOWDIR); rm -f auto/link.sed
|
||||
--- 2179,2185 ----
|
||||
|
||||
shadow: runtime pixmaps
|
||||
mkdir $(SHADOWDIR)
|
||||
! cd $(SHADOWDIR); ln -s ../*.[ch] ../*.in ../*.sh ../*.xs ../*.xbm ../toolcheck ../proto ../po ../vimtutor ../gvimtutor ../mkinstalldirs .
|
||||
mkdir $(SHADOWDIR)/auto
|
||||
cd $(SHADOWDIR)/auto; ln -s ../../auto/configure .
|
||||
cd $(SHADOWDIR); rm -f auto/link.sed
|
||||
***************
|
||||
*** 2193,2199 ****
|
||||
cd $(SHADOWDIR)/testdir; ln -s ../../testdir/Makefile \
|
||||
../../testdir/vimrc.unix \
|
||||
../../testdir/*.in \
|
||||
! ../../testdir/unix.vim \
|
||||
../../testdir/*.ok .
|
||||
|
||||
# Link needed for doing "make install" in a shadow directory.
|
||||
--- 2198,2204 ----
|
||||
cd $(SHADOWDIR)/testdir; ln -s ../../testdir/Makefile \
|
||||
../../testdir/vimrc.unix \
|
||||
../../testdir/*.in \
|
||||
! ../../testdir/*.vim \
|
||||
../../testdir/*.ok .
|
||||
|
||||
# Link needed for doing "make install" in a shadow directory.
|
||||
*** ../vim-7.1.308/src/version.c Wed Jun 4 14:28:28 2008
|
||||
--- src/version.c Wed Jun 4 15:25:00 2008
|
||||
***************
|
||||
*** 668,669 ****
|
||||
--- 673,676 ----
|
||||
{ /* Add new patch number below this line */
|
||||
+ /**/
|
||||
+ 309,
|
||||
/**/
|
||||
|
||||
--
|
||||
An alien life briefly visits earth. Just before departing it leaves a
|
||||
message in the dust on the back of a white van. The world is shocked
|
||||
and wants to know what it means. After months of studies the worlds
|
||||
best linguistic scientists are able to decipher the message: "Wash me!".
|
||||
|
||||
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
||||
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
||||
\\\ download, build and distribute -- http://www.A-A-P.org ///
|
||||
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|
@ -339,3 +339,6 @@ Individual patches for Vim 7.1:
|
||||
12135 7.1.304 shortpath_for_invalid_fname() is too complex and wrong
|
||||
4735 7.1.305 can't edit compressed file with special characters in the name
|
||||
2153 7.1.306 some Unicode symbol chars are handled like word chars
|
||||
23714 7.1.307 many warnings when compiling with Python 2.5
|
||||
2673 7.1.308 when in readonly mode ":options" produces an error
|
||||
3989 7.1.309 installing and testing with a shadow directory doesn't work
|
||||
|
11
vim.spec
11
vim.spec
@ -18,7 +18,7 @@
|
||||
#used for pre-releases:
|
||||
%define beta %{nil}
|
||||
%define vimdir vim71%{?beta}
|
||||
%define patchlevel 306
|
||||
%define patchlevel 309
|
||||
|
||||
Summary: The VIM editor
|
||||
URL: http://www.vim.org/
|
||||
@ -362,6 +362,9 @@ Patch303: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.303
|
||||
Patch304: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.304
|
||||
Patch305: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.305
|
||||
Patch306: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.306
|
||||
Patch307: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.307
|
||||
Patch308: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.308
|
||||
Patch309: ftp://ftp.vim.org/pub/vim/patches/7.1/7.1.309
|
||||
|
||||
Patch3000: vim-7.0-syntax.patch
|
||||
Patch3002: vim-7.1-nowarnings.patch
|
||||
@ -805,6 +808,9 @@ perl -pi -e "s,bin/nawk,bin/awk,g" runtime/tools/mve.awk
|
||||
%patch304 -p0
|
||||
%patch305 -p0
|
||||
%patch306 -p0
|
||||
%patch307 -p0
|
||||
%patch308 -p0
|
||||
%patch309 -p0
|
||||
|
||||
|
||||
# install spell files
|
||||
@ -1223,6 +1229,9 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_datadir}/icons/hicolor/*/apps/*
|
||||
|
||||
%changelog
|
||||
* Wed Jun 04 2008 Karsten Hopp <karsten@redhat.com> 7.1.309-1
|
||||
- Patchlevel 309
|
||||
|
||||
* Wed Jun 04 2008 Karsten Hopp <karsten@redhat.com> 7.1.306-1
|
||||
- patchlevel 306, fixes some unicode characters
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user