]> git.pld-linux.org Git - packages/vim.git/blame - 7.1.110
- typo
[packages/vim.git] / 7.1.110
CommitLineData
c0949972
ER
1To: vim-dev@vim.org
2Subject: patch 7.1.110
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=ISO-8859-1
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.1.110 (after 7.1.102)
11Problem: Win32: Still compilation problems with Perl.
12Solution: Change the #ifdefs. (Suresh Govindachar)
13Files: src/if_perl.xs
14
15
16*** ../vim-7.1.109/src/if_perl.xs Thu Sep 13 15:19:32 2007
17--- src/if_perl.xs Fri Sep 14 21:23:38 2007
18***************
19*** 48,60 ****
20 * The changes include addition of two symbols (Perl_sv_2iv_flags,
21 * Perl_newXS_flags) not present in earlier releases.
22 *
23! * Jan Dubois suggested the following guarding scheme:
24 */
25! #if (ACTIVEPERL_VERSION >= 822)
26! # define PERL589_OR_LATER
27! #endif
28! #if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 9)
29! # define PERL589_OR_LATER
30 #endif
31 #if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
32 # define PERL589_OR_LATER
33--- 48,62 ----
34 * The changes include addition of two symbols (Perl_sv_2iv_flags,
35 * Perl_newXS_flags) not present in earlier releases.
36 *
37! * Jan Dubois suggested the following guarding scheme.
38! *
39! * Active State defined ACTIVEPERL_VERSION as a string in versions before
40! * 5.8.8; and so the comparison to 822 below needs to be guarded.
41 */
42! #if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8)
43! # if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9)
44! # define PERL589_OR_LATER
45! # endif
46 #endif
47 #if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
48 # define PERL589_OR_LATER
49*** ../vim-7.1.109/src/version.c Sat Sep 15 14:06:41 2007
50--- src/version.c Sat Sep 15 14:48:05 2007
51***************
52*** 668,669 ****
53--- 668,671 ----
54 { /* Add new patch number below this line */
55+ /**/
56+ 110,
57 /**/
58
59--
60"It's so simple to be wise. Just think of something stupid to say
61and then don't say it." -- Sam Levenson
62
63 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
64/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
65\\\ download, build and distribute -- http://www.A-A-P.org ///
66 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.032026 seconds and 4 git commands to generate.